/* SSS Academies - Modern Page Styles
   Dark-themed, dramatic styling to match sport index pages */

/* ============================================
   FULL-VIEWPORT HERO
   ============================================ */
.modern-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    opacity: 0.2;
}

.modern-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(247,148,29,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(37,99,235,0.1) 0%, transparent 50%);
}

.modern-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.modern-hero .hero-badge {
    display: inline-block;
    background: rgba(247,148,29,0.2);
    color: #f7941d;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(247,148,29,0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modern-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.modern-hero .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-modern {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn-modern.primary {
    background: linear-gradient(135deg, #f7941d 0%, #e8850f 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(247,148,29,0.3);
}

.hero-btn-modern.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247,148,29,0.4);
}

.hero-btn-modern.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-modern.secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* ============================================
   DARK SECTIONS
   ============================================ */
.section-dark {
    background: #0f172a;
    color: white;
    padding: 100px 0;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

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

.section-dark-alt {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 0;
}

.section-dark-alt h2,
.section-dark-alt h3,
.section-dark-alt h4 {
    color: white;
}

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

.section-gradient {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #0f172a 100%);
    color: white;
    padding: 100px 0;
}

/* ============================================
   STATS BANNER (dark theme override)
   ============================================ */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}

.stats-banner .stat-item {
    text-align: center;
    padding: 20px;
}

.stats-banner .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f7941d;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-banner .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-color: rgba(247,148,29,0.3);
}

.glass-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(247,148,29,0.2) 0%, rgba(247,148,29,0.1) 100%);
    color: #f7941d;
}

.glass-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.glass-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.glass-card a {
    color: #f7941d;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.glass-card a:hover {
    gap: 12px;
}

/* Glass card grid */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 992px) {
    .glass-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .glass-grid-3,
    .glass-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   GRADIENT CARDS (lighter option)
   ============================================ */
.gradient-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(247,148,29,0.2);
}

/* ============================================
   MODERN SECTION HEADERS
   ============================================ */
.modern-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.modern-section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.modern-section-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.modern-section-header .section-tag {
    display: inline-block;
    color: #f7941d;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

/* ============================================
   TWO-COLUMN MODERN LAYOUT
   ============================================ */
.modern-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.modern-two-col.reverse {
    direction: rtl;
}

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

@media (max-width: 768px) {
    .modern-two-col,
    .modern-two-col.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
}

/* ============================================
   MODERN CTA SECTION
   ============================================ */
.modern-cta {
    background: linear-gradient(135deg, #f7941d 0%, #e8850f 50%, #d67d0f 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.modern-cta .container {
    position: relative;
    z-index: 1;
}

.modern-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.modern-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.modern-cta .cta-btn {
    display: inline-block;
    padding: 18px 44px;
    background: white;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin: 0 10px;
}

.modern-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.modern-cta .cta-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.modern-cta .cta-btn.outline:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================
   FEATURE LIST (dark theme)
   ============================================ */
.modern-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modern-feature-list li:last-child {
    border-bottom: none;
}

.modern-feature-list .check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(247,148,29,0.2);
    color: #f7941d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
}

/* ============================================
   TIMELINE (dark theme)
   ============================================ */
.modern-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f7941d 0%, #2563eb 50%, #f7941d 100%);
}

.modern-timeline .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.modern-timeline .timeline-dot {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7941d 0%, #e8850f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(247,148,29,0.3);
}

.modern-timeline .timeline-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    margin-left: 20px;
}

.modern-timeline .timeline-card h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.modern-timeline .timeline-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

.modern-timeline .timeline-time {
    color: #f7941d;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   INFO PANEL (dark theme)
   ============================================ */
.modern-info-panel {
    background: linear-gradient(135deg, rgba(247,148,29,0.1) 0%, rgba(247,148,29,0.05) 100%);
    border: 1px solid rgba(247,148,29,0.2);
    border-radius: 20px;
    padding: 40px;
}

.modern-info-panel h3 {
    color: #f7941d;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.modern-info-panel p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .modern-hero h1 {
        font-size: 2.5rem;
    }

    .modern-hero p {
        font-size: 1.1rem;
    }

    .modern-hero-content {
        padding: 100px 16px 60px;
    }

    .section-dark,
    .section-dark-alt {
        padding: 60px 0;
    }

    .modern-section-header h2 {
        font-size: 2rem;
    }

    .modern-cta h2 {
        font-size: 2rem;
    }

    .modern-cta {
        padding: 60px 0;
    }

    .glass-card {
        padding: 24px;
    }

    .feature-boxes {
        grid-template-columns: 1fr !important;
    }

    .glass-grid,
    .glass-grid-3,
    .glass-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .modern-timeline {
        padding-left: 45px;
    }

    .modern-timeline .timeline-dot {
        left: -38px;
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .modern-hero h1 {
        font-size: 1.8rem;
    }

    .modern-hero p {
        font-size: 1rem;
    }

    .hero-btn-modern {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-dark,
    .section-dark-alt {
        padding: 40px 0;
    }

    .stats-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .stat-card .stat-label {
        font-size: 0.8rem;
    }

    .modern-cta {
        padding: 40px 0;
    }

    .modern-cta h2 {
        font-size: 1.6rem;
    }

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

/* ============================================
   DARK SECTION OVERRIDES FOR ENHANCED.CSS COMPONENTS
   Ensures all light-background components from enhanced.css
   render correctly inside dark-themed sections.
   ============================================ */

/* CSS variable overrides for dark contexts */
.section-dark,
.section-dark-alt {
    --text-primary: rgba(255,255,255,0.9);
    --text-secondary: rgba(255,255,255,0.7);
}

/* --- Feature Boxes --- */
.section-dark .feature-box,
.section-dark-alt .feature-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.section-dark .feature-box:hover,
.section-dark-alt .feature-box:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.section-dark .feature-box h3,
.section-dark-alt .feature-box h3 {
    color: #93c5fd;
}

.section-dark .feature-box p,
.section-dark-alt .feature-box p {
    color: rgba(255,255,255,0.8);
}

.section-dark .feature-box ul li,
.section-dark-alt .feature-box ul li {
    color: rgba(255,255,255,0.8);
}

/* --- Info Panels --- */
.section-dark .info-panel,
.section-dark-alt .info-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 5px solid var(--primary-orange);
}

.section-dark .info-panel.warning,
.section-dark-alt .info-panel.warning,
.section-dark .info-panel.success,
.section-dark-alt .info-panel.success {
    background: rgba(255,255,255,0.05);
}

.section-dark .info-panel h3,
.section-dark-alt .info-panel h3 {
    color: #93c5fd;
}

.section-dark .info-panel p,
.section-dark-alt .info-panel p {
    color: rgba(255,255,255,0.8);
}

/* --- Section Titles --- */
.section-dark .section-title h2,
.section-dark-alt .section-title h2 {
    color: white;
}

.section-dark .section-title p,
.section-dark-alt .section-title p {
    color: rgba(255,255,255,0.7);
}

/* --- Two Column Layout --- */
.section-dark .two-column h3,
.section-dark-alt .two-column h3 {
    color: #93c5fd;
}

.section-dark .two-column p,
.section-dark-alt .two-column p {
    color: rgba(255,255,255,0.8);
}

/* --- Highlight Boxes --- */
.section-dark .highlight-box,
.section-dark-alt .highlight-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.section-dark .highlight-box h3,
.section-dark .highlight-box h4,
.section-dark-alt .highlight-box h3,
.section-dark-alt .highlight-box h4 {
    color: #93c5fd;
}

.section-dark .highlight-box p,
.section-dark .highlight-box li,
.section-dark-alt .highlight-box p,
.section-dark-alt .highlight-box li {
    color: rgba(255,255,255,0.8);
}

/* --- Step Cards --- */
.section-dark .step-card,
.section-dark-alt .step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .step-card h3,
.section-dark .step-card h4,
.section-dark-alt .step-card h3,
.section-dark-alt .step-card h4 {
    color: #93c5fd;
}

.section-dark .step-card p,
.section-dark-alt .step-card p {
    color: rgba(255,255,255,0.8);
}

/* --- Cards --- */
.section-dark .card,
.section-dark-alt .card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.section-dark .card:hover,
.section-dark-alt .card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.section-dark .card-content h3,
.section-dark-alt .card-content h3 {
    color: #93c5fd;
}

.section-dark .card-content p,
.section-dark-alt .card-content p {
    color: rgba(255,255,255,0.8);
}

/* --- Timeline --- */
.section-dark .timeline-content,
.section-dark-alt .timeline-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.section-dark .timeline-content h4,
.section-dark-alt .timeline-content h4 {
    color: #93c5fd;
}

.section-dark .timeline-content p,
.section-dark-alt .timeline-content p {
    color: rgba(255,255,255,0.8);
}

/* --- Testimonial Cards --- */
.section-dark .testimonial-card,
.section-dark-alt .testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.section-dark .testimonial-text,
.section-dark-alt .testimonial-text {
    color: rgba(255,255,255,0.8);
}

.section-dark .testimonial-info h5,
.section-dark-alt .testimonial-info h5 {
    color: #93c5fd;
}

.section-dark .testimonial-role,
.section-dark-alt .testimonial-role {
    color: rgba(255,255,255,0.5);
}

/* --- Comparison Tables --- */
.section-dark .comparison-table table,
.section-dark-alt .comparison-table table {
    background: rgba(15,23,42,0.8);
}

.section-dark .comparison-table td,
.section-dark-alt .comparison-table td {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.1);
}

.section-dark .comparison-table tr:hover,
.section-dark-alt .comparison-table tr:hover {
    background: rgba(255,255,255,0.05);
}

.section-dark .comparison-table .feature-name,
.section-dark-alt .comparison-table .feature-name {
    color: #93c5fd;
}

/* --- Accordion / FAQ --- */
.section-dark .accordion-item,
.section-dark-alt .accordion-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .accordion-header,
.section-dark-alt .accordion-header {
    background: rgba(255,255,255,0.05);
}

.section-dark .accordion-header:hover,
.section-dark-alt .accordion-header:hover {
    background: rgba(255,255,255,0.08);
}

.section-dark .accordion-header h4,
.section-dark-alt .accordion-header h4 {
    color: #93c5fd;
}

.section-dark .accordion-body,
.section-dark-alt .accordion-body {
    color: rgba(255,255,255,0.8);
}

/* --- Tabs --- */
.section-dark .tab-nav,
.section-dark-alt .tab-nav {
    border-bottom-color: rgba(255,255,255,0.1);
}

.section-dark .tab-button,
.section-dark-alt .tab-button {
    color: rgba(255,255,255,0.6);
}

.section-dark .tab-button.active,
.section-dark-alt .tab-button.active {
    color: white;
}

/* --- Pricing Cards --- */
.section-dark .pricing-card,
.section-dark-alt .pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .pricing-body,
.section-dark-alt .pricing-body {
    color: rgba(255,255,255,0.8);
}

.section-dark .pricing-features li,
.section-dark-alt .pricing-features li {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.1);
}

/* --- Progress Bars --- */
.section-dark .progress-bar-container,
.section-dark-alt .progress-bar-container {
    background: rgba(255,255,255,0.1);
}

.section-dark .progress-label,
.section-dark-alt .progress-label {
    color: rgba(255,255,255,0.9);
}

/* --- Generic text overrides for dark sections --- */
.section-dark a:not(.btn):not(.hero-btn-modern):not(.cta-btn),
.section-dark-alt a:not(.btn):not(.hero-btn-modern):not(.cta-btn) {
    color: #93c5fd;
}

.section-dark a:not(.btn):not(.hero-btn-modern):not(.cta-btn):hover,
.section-dark-alt a:not(.btn):not(.hero-btn-modern):not(.cta-btn):hover {
    color: #f7941d;
}

/* --- Buttons in dark sections --- */
.section-dark .btn-secondary,
.section-dark-alt .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.section-dark .btn-secondary:hover,
.section-dark-alt .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* --- Icon Lists --- */
.section-dark .icon-list li,
.section-dark-alt .icon-list li {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}

.section-dark .icon-list li:hover,
.section-dark-alt .icon-list li:hover {
    background: rgba(255,255,255,0.08);
}

.section-dark .icon-list-content h5,
.section-dark-alt .icon-list-content h5 {
    color: #93c5fd;
}

.section-dark .icon-list-content p,
.section-dark-alt .icon-list-content p {
    color: rgba(255,255,255,0.8);
}

/* --- Feature Content (from main.css) --- */
.section-dark .feature-content h4,
.section-dark-alt .feature-content h4 {
    color: #93c5fd;
}

.section-dark .feature-content p,
.section-dark-alt .feature-content p {
    color: rgba(255,255,255,0.8);
}

/* --- FAQ Components --- */
.section-dark .faq-item,
.section-dark-alt .faq-item {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.section-dark .faq-item:hover,
.section-dark-alt .faq-item:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.section-dark .faq-question,
.section-dark-alt .faq-question {
    background: transparent !important;
    color: white;
}

.section-dark .faq-question span,
.section-dark-alt .faq-question span {
    color: white;
}

.section-dark .faq-question:hover,
.section-dark-alt .faq-question:hover {
    background: rgba(255,255,255,0.05) !important;
}

.section-dark .faq-question .icon,
.section-dark-alt .faq-question .icon {
    color: #f7941d;
}

.section-dark .faq-answer,
.section-dark-alt .faq-answer {
    color: rgba(255,255,255,0.8);
}

.section-dark .faq-answer ul li,
.section-dark-alt .faq-answer ul li {
    color: rgba(255,255,255,0.8);
}

.section-dark .faq-category-title,
.section-dark-alt .faq-category-title {
    color: #93c5fd;
}

/* --- Btn Outline in dark sections --- */
.section-dark .btn-outline,
.section-dark-alt .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
}

.section-dark .btn-outline:hover,
.section-dark-alt .btn-outline:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

/* --- Tab Content in dark sections --- */
.section-dark .tabs,
.section-dark-alt .tabs {
    color: rgba(255,255,255,0.9);
}

.section-dark .tab-content,
.section-dark-alt .tab-content {
    color: rgba(255,255,255,0.9);
}

/* --- Stat Labels (main.css sets dark-gray, invisible on dark cards) --- */
.section-dark .stat-label,
.section-dark-alt .stat-label {
    color: white;
}

.section-dark .stat-number,
.section-dark-alt .stat-number {
    color: var(--primary-orange);
}

/* --- Feature Items (main.css card with white bg) --- */
.section-dark .feature-item,
.section-dark-alt .feature-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.section-dark .feature-item p,
.section-dark-alt .feature-item p {
    color: rgba(255,255,255,0.8);
}

/* --- Pathway Steps --- */
.section-dark .pathway-content h4,
.section-dark-alt .pathway-content h4 {
    color: #93c5fd;
}

.section-dark .pathway-content p,
.section-dark-alt .pathway-content p {
    color: rgba(255,255,255,0.8);
}

/* --- Generic dark section list items --- */
.section-dark ul li,
.section-dark-alt ul li {
    color: rgba(255,255,255,0.8);
}

/* --- Ensure all paragraphs in dark sections are visible --- */
.section-dark p,
.section-dark-alt p {
    color: rgba(255,255,255,0.8);
}

.section-dark h2,
.section-dark-alt h2 {
    color: white;
}

.section-dark h3,
.section-dark-alt h3 {
    color: white;
}

.section-dark h4,
.section-dark-alt h4 {
    color: white;
}
