/* ==================== SERVICE PAGE STYLES ==================== */

/* Service Hero */
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--white);
    gap: 12px;
}

.service-hero-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
    margin: 0 auto 30px;
}

.service-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.service-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Overview */
.service-overview {
    padding: 100px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.overview-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.overview-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.overview-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.overview-feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 4px;
}

.overview-feature h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.overview-feature p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Sidebar */
.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--border-color);
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
}

.sidebar-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

.sidebar-cta {
    background: var(--gradient-dark);
    color: var(--white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}

.sidebar-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Service Details */
.service-details {
    padding: 100px 0;
    background: var(--light-gray);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.detail-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

/* Process Section */
.service-process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) .step-number {
    order: 2;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-color);
    margin-left: auto;
    box-shadow: 0 8px 24px rgba(249, 165, 5, 0.3);
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) .step-number {
    margin-right: auto;
    margin-left: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* FAQ Section */
.service-faq {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        left: 50px;
    }

    .process-step {
        grid-template-columns: 100px 1fr;
        gap: 30px;
    }

    .process-step:nth-child(even) .step-number {
        order: 1;
    }

    .process-step:nth-child(even) .step-content {
        order: 2;
        text-align: left;
    }

    .step-number {
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        min-height: 50vh;
        padding-top: 100px;
    }

    .service-hero-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-description {
        font-size: 16px;
    }

    .overview-title {
        font-size: 28px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 24px;
        margin: 0 auto;
    }

    .step-content {
        text-align: center;
    }
}