/* === Process Page Specific Styles === */

/* Hero Section */
.process-hero {
    padding: 150px 0 100px;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.process-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 230, 118, 0.15) 0%, transparent 30%),
                    radial-gradient(circle at 80% 70%, rgba(158, 0, 255, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.process-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-hero-content {
    max-width: 650px;
}

.process-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), #64ffda);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.process-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
}

.hero-cta i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.hero-graphic {
    width: 300px;
    height: 300px;
    position: relative;
}

.process-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 230, 118, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.7);
}

.dot-1 {
    top: 10%;
    left: 30%;
}

.dot-2 {
    top: 30%;
    left: 20%;
}

.dot-3 {
    top: 50%;
    left: 35%;
}

.dot-4 {
    top: 70%;
    left: 25%;
}

.dot-5 {
    top: 80%;
    left: 45%;
}

.dot-6 {
    top: 90%;
    left: 70%;
}

.process-line {
    position: absolute;
    width: 2px;
    height: 80%;
    top: 10%;
    left: 40%;
    background: linear-gradient(to bottom, 
        rgba(0, 230, 118, 0.1),
        rgba(0, 230, 118, 0.7),
        rgba(0, 230, 118, 0.1));
    border-radius: 1px;
}

/* Process Navigator */
.process-navigator {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navigator-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-tabs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.process-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex: 1;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    position: relative;
}

.process-tab .tab-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-card);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    border: 2px solid transparent;
}

.process-tab .tab-label {
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.process-tab:hover .tab-number {
    background-color: rgba(0, 230, 118, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.process-tab.active .tab-number {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.process-tab.active .tab-label {
    color: var(--primary-color);
    font-weight: 600;
}

.process-progress {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-line {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Process Detail Sections */
.process-details {
    background-color: var(--dark-bg);
    position: relative;
}

.process-stage {
    display: none;
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.process-stage.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.stage-info {
    flex: 1;
}

.stage-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 230, 118, 0.1);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stage-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stage-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.stage-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.detail-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.detail-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.stage-deliverables {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.stage-deliverables h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stage-deliverables ul {
    padding-left: 20px;
    margin: 0;
}

.stage-deliverables li {
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
}

.stage-deliverables li:last-child {
    margin-bottom: 0;
}

.stage-visual {
    width: 40%;
    min-width: 400px;
}

.visual-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    
}

.visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.timeframe {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-bg);
    font-size: 1.1rem;
}

.time-text {
    color: var(--text-light);
}

.time-text span {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 3px;
}

.time-text strong {
    font-size: 1.1rem;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Case Study Section */
.case-study-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.case-study-content {
    display: flex;
    gap: 60px;
}

.case-info {
    flex: 1;
    padding-right: 20px;
}

.case-logo {
    margin-bottom: 25px;
}

.case-logo img {
    max-width: 200px;
    height: auto;
}

.case-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.case-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.case-gallery {
    flex: 1;
}

.before-after {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.after-image {
    width: 50%;
    border-right: 3px solid var(--primary-color);
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.before-image .label, .after-image .label {
    position: absolute;
    top: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.before-image .label {
    right: 20px;
}

.after-image .label {
    left: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.slider-handle i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.case-testimonial {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.case-testimonial p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.case-testimonial p::before,
.case-testimonial p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
    margin: 0;
}

.testimonial-author p::before,
.testimonial-author p::after {
    content: none;
}

/* FAQ Tabs Section */
.process-faq {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.faq-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.faq-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-tab-button {
    padding: 12px 25px;
    background-color: var(--dark-card);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab-button:hover {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--primary-color);
}

.faq-tab-button.active {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    font-weight: 600;
}

.faq-tab-content {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-tab {
    display: none;
    padding: 30px;
}

.faq-tab.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 230, 118, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.active .faq-question {
    background-color: rgba(0, 230, 118, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.process-cta {
    padding: 100px 0;
    background-color: var(--darker-bg);
    text-align: center;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 230, 118, 0.1) 0%, transparent 30%),
                    radial-gradient(circle at 80% 70%, rgba(158, 0, 255, 0.05) 0%, transparent 30%);
}

.process-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
}

.secondary-button {
    padding: 15px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .process-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .process-hero-content {
        margin-bottom: 50px;
        max-width: 800px;
    }
    
    .process-hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-graphic {
        width: 250px;
        height: 250px;
    }
    
    .stage-content {
        flex-direction: column;
    }
    
    .stage-visual {
        width: 100%;
        min-width: 0;
    }
    
    .case-study-content {
        flex-direction: column;
    }
    
    .case-info {
        padding-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .process-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-hero-content p {
        font-size: 1.1rem;
    }
    
    .process-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .process-tab {
        min-width: 100px;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
    }
    
    .faq-tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab-button {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .process-hero {
        padding: 120px 0 80px;
    }
    
    .process-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .process-hero-content p {
        font-size: 1rem;
    }
    
    .process-stage {
        padding: 60px 0;
    }
    
    .stage-number {
        font-size: 3.5rem;
    }
    
    .stage-info h2 {
        font-size: 2rem;
    }
    
    .stage-description {
        font-size: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .process-cta h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .process-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .tab-label {
        display: none;
    }
    
    .process-tab .tab-number {
        margin-bottom: 0;
    }
    
    .stage-number {
        font-size: 3rem;
    }
    
    .stage-info h2 {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-tab {
        padding: 20px 15px;
    }
    
    .case-info h3 {
        font-size: 1.8rem;
    }
}
