  /* ============================================================
           ROOT DESIGN SYSTEM – Premium (Matches Homepage)
        ============================================================ */
        :root {
            --color-primary-dark: #064e3b;
            --color-primary-base: #0b6623;
            --color-accent-gold: #f59e0b;
            --color-white: #ffffff;
            --color-off-white: #faf8f4;
            --color-slate-light: #e2e8f0;
            --text-primary-dark: #0f172a;
            --text-secondary-muted: #475569;
            --text-disabled: #94a3b8;
            --border-radius-card: 10px;
            --transition-premium: cubic-bezier(0.4, 0, 0.2, 1);
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

            /* Typography scale */
            --fs-h1: 34px;
            --fs-h2: 28px;
            --fs-h3: 24px;
            --fs-h4: 22px;
            --fs-body: 14px;
            --fs-small: 12px;

            --fw-heading: 500;
            --fw-body: 300;
        }

        /* ============================================================
           RESET & BASE
        ============================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-family: var(--font-sans);
            font-size: 16px;
            color: var(--text-primary-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background: var(--color-white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* ============================================================
           TYPOGRAPHY
        ============================================================ */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-serif);
            font-weight: var(--fw-heading);
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        h1 {
            font-size: var(--fs-h1);
        }
        h2 {
            font-size: var(--fs-h2);
        }
        h3 {
            font-size: var(--fs-h3);
        }
        h4,
        h5,
        h6 {
            font-size: var(--fs-h4);
        }

        p,
        .text-body,
        .hero-content p,
        .grassroots-text p,
        .tournament-row p,
        .pipeline-card p,
        .story-card p,
        .faq-answer p,
        .footer-brand p,
        .footer-col .contact-line,
        .footer-col ul li a {
            font-family: var(--font-sans);
            font-size: var(--fs-body);
            font-weight: var(--fw-body);
            color: var(--text-secondary-muted);
            line-height: 1.8;
        }

        .tag {
            font-family: var(--font-sans);
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--color-primary-base);
            background: rgba(6, 78, 59, 0.08);
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 0.8rem;
        }

        .tag-gold {
            color: var(--color-accent-gold);
            background: rgba(245, 158, 11, 0.12);
        }

        .section-padding {
            padding: 100px 0;
        }
        .section-padding-sm {
            padding: 60px 0;
        }

        .section-label {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 3rem;
        }
        .section-label h2 {
            margin-bottom: 0.4rem;
        }
        .section-label p {
            font-size: 14px;
            font-weight: 300;
        }

        /* ============================================================
           BUTTONS
        ============================================================ */
        .btn-primary {
            display: inline-block;
            background: var(--color-accent-gold);
            color: var(--color-white);
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 13px;
            padding: 0.8rem 2.4rem;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--transition-premium);
            text-align: center;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
            letter-spacing: 0.02em;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(245, 158, 11, 0.35);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--color-white);
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 13px;
            padding: 0.8rem 2.4rem;
            border-radius: 6px;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s var(--transition-premium);
            text-align: center;
            letter-spacing: 0.02em;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--color-white);
        }

        .btn-outline-dark {
            display: inline-block;
            background: transparent;
            color: var(--text-primary-dark);
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 13px;
            padding: 0.6rem 1.8rem;
            border-radius: 6px;
            border: 1.5px solid var(--color-slate-light);
            cursor: pointer;
            transition: all 0.4s var(--transition-premium);
            text-align: center;
            letter-spacing: 0.02em;
        }
        .btn-outline-dark:hover {
            border-color: var(--color-primary-dark);
            background: rgba(6, 78, 59, 0.04);
        }

        .btn-primary-pill {
            display: inline-block;
            background: var(--color-accent-gold);
            color: var(--color-white);
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 13px;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--transition-premium);
            text-align: center;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
            letter-spacing: 0.02em;
        }
        .btn-primary-pill:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(245, 158, 11, 0.3);
        }

        /* ============================================================
           NAVBAR
        ============================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s var(--transition-premium);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            padding: 0.7rem 5%;
        }

        .navbar .logo img {
            height: 46px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 400;
            color: var(--color-white);
            transition: color 0.3s var(--transition-premium);
            position: relative;
            letter-spacing: 0.02em;
        }
        .navbar.scrolled .nav-links a {
            color: var(--text-primary-dark);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--color-accent-gold);
            transition: width 0.3s var(--transition-premium);
        }
        .nav-links a:hover::after,
        .nav-links a[aria-current="page"]::after {
            width: 100%;
        }

        .nav-links .nav-cta {
            background: var(--color-accent-gold);
            color: var(--color-white) !important;
            padding: 0.4rem 1.4rem;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s var(--transition-premium);
        }
        .nav-links .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
        }
        .nav-links .nav-cta::after {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--color-white);
            transition: all 0.3s var(--transition-premium);
            border-radius: 4px;
        }
        .navbar.scrolled .hamburger span {
            background: var(--text-primary-dark);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(6, 78, 59, 0.98);
            backdrop-filter: blur(8px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--transition-premium);
        }
        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu a {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 500;
            color: var(--color-white);
            letter-spacing: -0.01em;
        }
        .mobile-menu .mobile-cta {
            background: var(--color-accent-gold);
            padding: 0.7rem 2rem;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
        }

        /* ============================================================
           PROGRAMS HERO
        ============================================================ */
        .programs-hero-bg {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background:
                linear-gradient(180deg, rgba(5, 35, 25, 0.40) 0%, rgba(5, 35, 25, 0.75) 100%),
                url('nzoka5.jpg') center/cover no-repeat;
            background-blend-mode: overlay;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
            animation: heroZoom 25s ease-in-out infinite alternate;
        }
        @keyframes heroZoom {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.04);
            }
        }
        .programs-hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .programs-hero-content {
            max-width: 720px;
            position: relative;
            z-index: 2;
            animation: fadeUp 1.2s var(--transition-premium) forwards;
            opacity: 0;
            transform: translateY(24px);
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .programs-hero-content .tag {
            color: var(--color-accent-gold);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.15);
        }
        .programs-hero-content h1 {
            color: var(--color-white);
            margin-bottom: 0.8rem;
            font-size: clamp(28px, 4.5vw, 44px);
        }
        .programs-hero-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(14px, 1.1vw, 16px);
            max-width: 520px;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }
        .hero-meta {
            display: flex;
            gap: 2rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            font-weight: 300;
        }
        .hero-meta i {
            margin-right: 0.4rem;
            color: var(--color-accent-gold);
        }

        /* ============================================================
           IMPACT STATISTICS
        ============================================================ */
        .impact-stats {
            background: var(--color-off-white);
            padding: 60px 0;
            border-bottom: 1px solid var(--color-slate-light);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        .stat-item .number {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 500;
            font-family: var(--font-serif);
            color: var(--color-primary-dark);
            letter-spacing: -0.01em;
            line-height: 1;
            display: block;
        }
        .stat-item .label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-secondary-muted);
            font-weight: 500;
            margin-top: 0.3rem;
        }
        .stat-item .sub-label {
            font-size: 11px;
            color: var(--text-disabled);
            font-weight: 300;
        }

        /* ============================================================
           GRASSROOTS SPORTS
        ============================================================ */
        .grassroots {
            background: var(--color-white);
        }
        .grassroots-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .grassroots-image {
            position: relative;
            border-radius: var(--border-radius-card);
            overflow: hidden;
            min-height: 380px;
            margin: 0;
        }
        .grassroots-image img {
            width: 100%;
            height: 100%;
            min-height: 380px;
            object-fit: cover;
            transition: transform 0.6s var(--transition-premium);
        }
        .grassroots:hover .grassroots-image img {
            transform: scale(1.02);
        }
        .grassroots-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 2rem;
            background: linear-gradient(0deg, rgba(6, 78, 59, 0.8) 0%, transparent 100%);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .grassroots-label {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 500;
            color: var(--color-white);
        }
        .grassroots-location {
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
        }

        .grassroots-text .tag-green {
            background: rgba(6, 78, 59, 0.06);
        }
        .grassroots-text h2 {
            font-size: clamp(24px, 3vw, 32px);
            margin-bottom: 0.6rem;
        }
        .grassroots-text p {
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }
        .metric-callout {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            padding: 1.2rem 1.5rem;
            background: var(--color-off-white);
            border-radius: var(--border-radius-card);
            border-left: 3px solid var(--color-accent-gold);
        }
        .metric-callout i {
            color: var(--color-accent-gold);
            font-size: 18px;
            margin-top: 2px;
        }
        .metric-callout span {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-secondary-muted);
        }

        /* ============================================================
           HOW OUR PROGRAMS WORK (Process)
        ============================================================ */
        .process {
            background: var(--color-off-white);
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 2rem;
        }
        .process-step {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--color-white);
            border-radius: var(--border-radius-card);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: all 0.4s var(--transition-premium);
            position: relative;
        }
        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 44px rgba(0, 0, 0, 0.04);
            border-color: rgba(6, 78, 59, 0.06);
        }
        .process-step .step-number {
            font-family: var(--font-serif);
            font-size: 48px;
            font-weight: 500;
            color: var(--color-primary-dark);
            opacity: 0.06;
            line-height: 1;
            display: block;
            margin-bottom: -1rem;
        }
        .process-step .step-icon {
            font-size: 2rem;
            color: var(--color-accent-gold);
            margin-bottom: 0.6rem;
            display: block;
        }
        .process-step h3 {
            font-size: 20px;
            margin-bottom: 0.3rem;
        }
        .process-step p {
            font-size: 13px;
            font-weight: 300;
        }

        /* ============================================================
           TOURNAMENT HUB
        ============================================================ */
        .tournament-hub {
            background: var(--color-white);
        }

        .tab-switcher {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .tab-btn {
            padding: 0.6rem 1.8rem;
            border: 1px solid var(--color-slate-light);
            background: transparent;
            border-radius: 50px;
            font-family: var(--font-sans);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary-muted);
            cursor: pointer;
            transition: all 0.3s var(--transition-premium);
        }
        .tab-btn:hover {
            border-color: var(--color-primary-dark);
            color: var(--text-primary-dark);
        }
        .tab-btn.active {
            background: var(--color-primary-dark);
            color: var(--color-white);
            border-color: var(--color-primary-dark);
        }

        .tab-panel {
            display: none;
            animation: panelFade 0.5s var(--transition-premium);
        }
        .tab-panel.active {
            display: block;
        }
        @keyframes panelFade {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tournament-row {
            display: grid;
            grid-template-columns: 140px 1fr 160px;
            gap: 2rem;
            padding: 1.5rem 2rem;
            background: var(--color-off-white);
            border-radius: var(--border-radius-card);
            margin-bottom: 1rem;
            align-items: center;
            transition: all 0.3s var(--transition-premium);
            border: 1px solid transparent;
        }
        .tournament-row:hover {
            background: var(--color-white);
            border-color: rgba(6, 78, 59, 0.06);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
            transform: translateX(4px);
        }
        .date-col .day {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary-dark);
        }
        .date-col .location {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-disabled);
        }
        .info-col h4 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 0.2rem;
        }
        .info-col p {
            font-size: 13px;
            font-weight: 300;
            margin: 0;
        }
        .badge-col {
            text-align: right;
        }
        .badge {
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--color-white);
        }
        .badge.sports {
            background: var(--color-primary-dark);
        }
        .badge.education {
            background: #2563eb;
        }
        .badge.community {
            background: var(--color-accent-gold);
        }

        /* ============================================================
           EDUCATION & SCHOLARSHIPS
        ============================================================ */
        .education-pipelines {
            background: var(--color-off-white);
        }
        .pipeline-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .pipeline-card {
            background: var(--color-white);
            padding: 2.5rem 2rem 2rem;
            border-radius: var(--border-radius-card);
            text-align: center;
            transition: all 0.4s var(--transition-premium);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .pipeline-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 44px rgba(0, 0, 0, 0.04);
            border-color: rgba(6, 78, 59, 0.06);
        }
        .pipeline-card .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(6, 78, 59, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.8rem;
            font-size: 22px;
            color: var(--color-primary-dark);
        }
        .pipeline-card .pillar-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-disabled);
            display: block;
            margin-bottom: 0.3rem;
        }
        .pipeline-card h3 {
            font-size: 20px;
            margin-bottom: 0.4rem;
        }
        .pipeline-card p {
            font-size: 13px;
            font-weight: 300;
        }

        /* ============================================================
           GALLERY PREVIEW (Programs in Action)
        ============================================================ */
        .gallery-preview {
            background: var(--color-white);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin-top: 2rem;
        }
        .gallery-grid .gallery-item {
            border-radius: var(--border-radius-card);
            overflow: hidden;
            background: var(--color-slate-light);
            min-height: 200px;
            background-size: cover;
            background-position: center;
            transition: all 0.6s var(--transition-premium);
            position: relative;
        }
        .gallery-grid .gallery-item:nth-child(1) {
            grid-row: span 2;
            min-height: 420px;
            background-image: url('WhatsApp Image 2026-07-14 at 1.29.43 PM.jpeg');
        }
        .gallery-grid .gallery-item:nth-child(2) {
            background-image: url('WhatsApp Image 2026-07-14 at 1.31.18 PM (1).jpeg');
        }
        .gallery-grid .gallery-item:nth-child(3) {
            background-image: url('WhatsApp Image 2026-07-14 at 1.31.24 PM (2).jpeg');
        }
        .gallery-grid .gallery-item:nth-child(4) {
            background-image: url('nzoka2.webp');
        }
        .gallery-grid .gallery-item:nth-child(5) {
            background-image: url('nzoka5.jpg');
        }
        .gallery-grid .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
        }
        .gallery-grid .gallery-item .gallery-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem 1.2rem;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
            color: var(--color-white);
            font-size: 13px;
            font-weight: 400;
            font-family: var(--font-serif);
        }
        .gallery-footer {
            text-align: center;
            margin-top: 2rem;
        }

        /* ============================================================
           SUCCESS STORIES
        ============================================================ */
        .stories {
            background: var(--color-off-white);
        }
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .story-card {
            background: var(--color-white);
            padding: 2rem 1.8rem 1.8rem;
            border-radius: var(--border-radius-card);
            text-align: center;
            transition: all 0.4s var(--transition-premium);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .story-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 44px rgba(0, 0, 0, 0.04);
            border-color: rgba(6, 78, 59, 0.06);
        }
        .story-card .story-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 0.8rem;
            border: 2px solid rgba(6, 78, 59, 0.06);
        }
        .story-card .story-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .story-card blockquote {
            font-family: var(--font-serif);
            font-size: 17px;
            font-weight: 500;
            line-height: 1.4;
            color: var(--text-primary-dark);
            margin-bottom: 0.6rem;
            font-style: italic;
        }
        .story-card .story-author {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary-dark);
        }
        .story-card .story-role {
            font-size: 12px;
            font-weight: 300;
            color: var(--text-disabled);
        }
        .story-card .story-program {
            display: inline-block;
            margin-top: 0.6rem;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--color-accent-gold);
            background: rgba(245, 158, 11, 0.08);
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
        }

        /* ============================================================
           SAFEGUARDING
        ============================================================ */
        .safeguarding {
            background: var(--color-primary-dark);
            color: var(--color-white);
            padding: 80px 0;
            text-align: center;
        }
        .safeguarding .tag {
            color: var(--color-accent-gold);
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.15);
        }
        .safeguarding h2 {
            color: var(--color-white);
            margin-bottom: 0.8rem;
            font-size: clamp(24px, 3vw, 34px);
        }
        .safeguarding p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-weight: 300;
            max-width: 680px;
            margin: 0 auto 1.5rem;
        }
        .civic-hub {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 2rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
        }
        .civic-hub i {
            color: var(--color-accent-gold);
        }

        /* ============================================================
           FAQ
        ============================================================ */
        .faq {
            background: var(--color-white);
        }
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--color-slate-light);
            padding: 1.2rem 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 0.2rem 0;
            transition: color 0.3s var(--transition-premium);
        }
        .faq-question:hover {
            color: var(--color-primary-dark);
        }
        .faq-question h4 {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 500;
            margin: 0;
        }
        .faq-question .faq-toggle {
            font-size: 18px;
            color: var(--text-disabled);
            transition: transform 0.3s var(--transition-premium);
            flex-shrink: 0;
            margin-left: 1rem;
        }
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s var(--transition-premium), padding 0.3s var(--transition-premium);
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 0.8rem;
        }
        .faq-answer p {
            font-size: 14px;
            font-weight: 300;
            margin: 0;
        }

        /* ============================================================
           ACTION CALL
        ============================================================ */
        .action-call {
            background: var(--color-off-white);
            text-align: center;
            padding: 80px 0;
        }
        .action-call h2 {
            font-size: clamp(24px, 3vw, 34px);
            margin-bottom: 0.6rem;
        }
        .action-call p {
            font-size: 14px;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        .action-row {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ============================================================
           FOOTER
        ============================================================ */
        .footer {
            background: #0a1a14;
            color: rgba(255, 255, 255, 0.6);
            padding: 50px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand .logo-footer {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
        }
        .footer-brand .logo-footer img {
            height: 44px;
            width: auto;
        }
        .footer-brand .logo-footer span {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 500;
            color: var(--color-white);
            letter-spacing: -0.01em;
        }
        .footer-brand p {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
            max-width: 280px;
            line-height: 1.7;
        }
        .footer-legal-badge {
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 0.8rem;
        }
        .footer-legal-badge i {
            color: var(--color-accent-gold);
            margin-right: 0.3rem;
        }
        .footer-legal-badge strong {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        .footer-col h4 {
            color: var(--color-white);
            font-family: var(--font-sans);
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 0.5rem;
        }
        .footer-col ul li a {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s var(--transition-premium);
        }
        .footer-col ul li a:hover {
            color: var(--color-accent-gold);
        }
        .footer-col .contact-line {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 0.6rem;
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-col .contact-line i {
            margin-top: 3px;
            color: var(--color-accent-gold);
            width: 16px;
            font-size: 13px;
        }
        .footer-col .contact-line a {
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-col .contact-line a:hover {
            color: var(--color-white);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .newsletter-text {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.6rem;
        }
        .newsletter-input-group {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
            transition: border 0.3s var(--transition-premium);
        }
        .newsletter-input-group:focus-within {
            border-color: var(--color-accent-gold);
        }
        .newsletter-input-group input {
            flex: 1;
            padding: 0.6rem 1rem;
            background: transparent;
            border: none;
            color: var(--color-white);
            font-family: var(--font-sans);
            font-size: 13px;
            font-weight: 300;
            outline: none;
        }
        .newsletter-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }
        .newsletter-input-group button {
            padding: 0 1rem;
            background: var(--color-accent-gold);
            border: none;
            color: var(--color-white);
            cursor: pointer;
            transition: opacity 0.3s var(--transition-premium);
        }
        .newsletter-input-group button:hover {
            opacity: 0.8;
        }

        .social-icons {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.2rem;
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s var(--transition-premium);
        }
        .social-icons a:hover {
            background: var(--color-accent-gold);
            color: var(--color-white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.3);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom a:hover {
            color: var(--color-white);
        }

        /* ============================================================
           WHATSAPP FLOAT
        ============================================================ */
        .whatsapp-float-wrapper {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 900;
        }
        .whatsapp-float {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: #25d366;
            color: var(--color-white);
            padding: 0.7rem 1.2rem 0.7rem 1rem;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
            transition: all 0.3s var(--transition-premium);
            font-weight: 500;
            font-size: 13px;
        }
        .whatsapp-float:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
        }
        .whatsapp-float i {
            font-size: 24px;
        }
        .whatsapp-float .whatsapp-label {
            font-size: 13px;
            font-weight: 500;
        }

        /* ============================================================
           RESPONSIVE
        ============================================================ */
        @media (max-width: 1024px) {
            .grassroots-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .grassroots-image {
                min-height: 280px;
            }
            .grassroots-image img {
                min-height: 280px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .pipeline-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-grid .gallery-item:nth-child(1) {
                grid-row: span 1;
                min-height: 200px;
            }
            .tournament-row {
                grid-template-columns: 1fr;
                gap: 0.8rem;
                text-align: center;
                padding: 1.2rem 1.5rem;
            }
            .badge-col {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }

            .programs-hero-bg {
                min-height: 70vh;
                align-items: flex-end;
                padding-bottom: 3rem;
            }
            .programs-hero-content h1 {
                font-size: 28px;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .stat-item .number {
                font-size: 28px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pipeline-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .stories-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 0.4rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            .gallery-grid .gallery-item {
                min-height: 180px;
            }
            .gallery-grid .gallery-item:nth-child(1) {
                min-height: 250px;
            }

            .tab-switcher {
                flex-direction: column;
                align-items: center;
                gap: 0.6rem;
            }
            .tab-btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .action-row {
                flex-direction: column;
                align-items: center;
            }

            .section-padding {
                padding: 60px 0;
            }

            .whatsapp-float .whatsapp-label {
                display: none;
            }
            .whatsapp-float {
                padding: 0.7rem;
                border-radius: 50%;
            }
            .whatsapp-float i {
                font-size: 28px;
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            .programs-hero-content h1 {
                font-size: 24px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-item .number {
                font-size: 24px;
            }
            .stat-item .label {
                font-size: 10px;
            }
            .tournament-row {
                padding: 1rem;
            }
            .info-col h4 {
                font-size: 16px;
            }
            .story-card blockquote {
                font-size: 15px;
            }
            .process-step {
                padding: 1.5rem 1rem;
            }
            .pipeline-card {
                padding: 1.8rem 1.2rem;
            }
            .grassroots-image {
                min-height: 200px;
            }
            .grassroots-image img {
                min-height: 200px;
            }
            .grassroots-overlay {
                padding: 1rem 1.2rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
            }
            .grassroots-label {
                font-size: 16px;
            }
            .civic-hub {
                font-size: 12px;
                padding: 0.6rem 1.2rem;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* ============================================================
           REVEAL ANIMATIONS
        ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.9s var(--transition-premium), transform 0.9s var(--transition-premium);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-d1 {
            transition-delay: 0.05s;
        }
        .reveal-d2 {
            transition-delay: 0.12s;
        }
        .reveal-d3 {
            transition-delay: 0.20s;
        }
        .reveal-d4 {
            transition-delay: 0.28s;
        }

        /* Grain texture */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
            opacity: 0.3;
            mix-blend-mode: multiply;
        }