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

/* Hero Section */
.service-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(43, 158, 217, 0.95), rgba(27, 122, 176, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    font-size: 5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-hero .tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Overview Section */
.service-overview {
    padding: 6rem 2rem;
    background: white;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.overview-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.overview-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Features Grid */
.features-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(43, 158, 217, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-question i {
    color: var(--primary-blue);
    margin-top: 0.2rem;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: white;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    min-width: 50px;
}

.benefit-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.service-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    text-align: center;
}

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

.service-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.service-cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .service-overview,
    .features-section,
    .process-section,
    .faq-section,
    .why-choose-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero .tagline {
        font-size: 1.1rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .section-header-center h2 {
        font-size: 2.2rem;
    }

    .service-cta-section h2 {
        font-size: 2.2rem;
    }

    .service-overview,
    .features-section,
    .process-section,
    .faq-section,
    .why-choose-section,
    .service-cta-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        min-height: 40vh;
        padding: 4rem 1.5rem 3rem;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-icon-large {
        font-size: 3.5rem;
    }

    .overview-content h2,
    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .overview-content p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .benefit-content h3 {
        font-size: 1.15rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }

    .service-cta-section h2 {
        font-size: 1.8rem;
    }

    .service-cta-section p {
        font-size: 1.05rem;
    }

    .service-cta-section {
        padding: 3.5rem 1.5rem;
    }
}