/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    padding: 160px 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative top line */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-orange-light);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.page-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--accent-orange-light);
    position: relative;
    display: inline-block;
}

/* Decorative lines around subtitle */
.page-hero-subtitle::before,
.page-hero-subtitle::after {
    content: '—';
    margin: 0 15px;
    opacity: 0.5;
}

/* Process Intro */
.process-intro {
    background: var(--bg-cream);
    padding: 80px 60px;
}

.process-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.process-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.process-intro p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
}

.process-intro p strong {
    color: var(--text-dark);
}

/* Process Detailed Steps */
.process-detailed {
    background: var(--bg-paper);
    padding: 100px 60px;
}

.process-detailed-container {
    max-width: 900px;
    margin: 0 auto;
}

.process-detailed-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-wood);
}

.process-detailed-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--wood-dark);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-content p:last-child {
    margin-bottom: 0;
}

.step-content p strong {
    color: var(--text-dark);
}

.step-highlight {
    background: var(--bg-warm-white);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-orange);
    margin-top: 25px;
}

.step-highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-highlight p {
    margin-bottom: 10px;
}

.step-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-highlight li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.step-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Process CTA */
.process-cta {
    background: var(--wood-dark);
    padding: 80px 60px;
    text-align: center;
}

.process-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.process-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.process-cta>p,
.process-cta-container>p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

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

.process-cta .btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    margin-right: 8px;
}

/* Secondary button styling for CTA */
.process-cta .btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.process-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    color: var(--text-light);
}

/* Page FAQ styles */
.page-faq {
    background: var(--bg-cream);
}

.page-faq h2 {
    text-align: center;
    color: var(--text-dark);
}

.page-faq .faq-question span {
    color: var(--text-dark);
}

.page-faq .faq-answer p {
    color: var(--text-dark);
}

/* FAQ Cards styling */
.page-faq .faq-item {
    background: var(--bg-warm-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-faq .faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-faq .faq-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.page-faq .faq-question {
    padding: 22px 25px;
    border-radius: 8px;
}

.page-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
}

.page-faq .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 22px;
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1024px) {
    .page-hero {
        padding: 140px 40px 60px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .process-intro,
    .process-detailed,
    .process-cta {
        padding: 70px 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 25px 50px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 18px;
    }

    .process-intro,
    .process-detailed,
    .process-cta {
        padding: 60px 25px;
    }

    .process-intro h2,
    .process-cta h2 {
        font-size: 28px;
    }

    .process-detailed-step {
        flex-direction: column;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 24px;
    }

    .process-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-highlight {
        padding: 20px;
    }
}