/* Service Page Specific Styles */

.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 50%, var(--bg-beige) 100%);
}

.service-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-hero-content {
    max-width: 550px;
}

.service-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.service-hero p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.service-hero-visual {
    display: flex;
    justify-content: center;
}

.service-hero-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.content-block p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* Process Vertical */
.process-vertical {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--bg-beige);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.process-step-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.deliverable-card {
    background: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.deliverable-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-md);
    background: rgba(199, 91, 18, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.deliverable-icon svg {
    width: 24px;
    height: 24px;
}

.deliverable-card h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xs);
}

.deliverable-card p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* FAQ Accordion */
.faq-list,
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--bg-cream);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin: 0;
}

/* Related Services */
.related-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.related-service-card {
    background: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-base);
    text-decoration: none;
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.related-service-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.related-service-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(199, 91, 18, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xs);
}

.benefit-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.checklist li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.stat-box {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
}

.stat-box .stat-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-box .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-content {
        max-width: 100%;
    }

    .service-hero-visual {
        order: -1;
    }

    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .two-column.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-cta {
        justify-content: center;
    }

    .benefits-grid,
    .related-services,
    .stats-row {
        grid-template-columns: 1fr;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step-number {
        margin: 0 auto;
    }

    .faq-question {
        font-size: var(--font-size-base);
        padding: var(--space-md);
    }

    .faq-answer p {
        padding: 0 var(--space-md) var(--space-md);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Variants */
.section-light {
    background: var(--bg-cream);
}

.section-cream {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
    color: var(--text-white);
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}
