/* ================================================================
   PROCESS PAGE - Moringa Essentials
   ================================================================ */
/* ========== PAGE HEADER ========== */
.page-header {
    padding: calc(90px + var(--space-12)) 0 var(--space-12);
    background: linear-gradient(180deg, #27ae60 0%, #2ecc71 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: #e8f5e9;
}

.breadcrumb a {
    color: #f1c40f;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: var(--text-lg);
    color: #e8f5e9;
    margin: 0;
}
/* ========== INTRO SECTION ========== */
.intro-section {
    padding: var(--space-16) 0;
}

.intro-content {
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.intro-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.intro-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

/* ========== PROCESS TIMELINE SECTION ========== */
.process-section {
    padding: var(--space-16) 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Timeline line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--white);
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.step-number.highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.step-content {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-content:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.step-icon.highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.step-content p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-secondary);
}

.final-step .step-content {
    border-color: var(--accent-gold);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--space-16) 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-green);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    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;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(201, 162, 39, 0.05) 100%);
}

.cta-card {
    background: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.cta-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
    color: var(--text-dark);
}

.cta-content p {
    font-size: var(--text-lg);
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .intro-content h2 {
        font-size: var(--text-2xl);
    }
    
    .intro-buttons {
        flex-direction: column;
    }
    
    .intro-buttons .btn {
        width: 100%;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: var(--text-base);
    }
    
    .step-content {
        padding: var(--space-6);
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .cta-card {
        padding: var(--space-8);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
