/* ============================================
   STEVE THAMI FOUNDATION - SHARED STYLES
   Premium, World-Class NGO Design System
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
}

body {
    overflow-x: clip;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
}

section, footer, header, main, .container {
    max-width: 100vw;
}

:root {
    /* 10/10 PREMIUM COLOR SYSTEM - MULTI-MISSION CLARITY */
    --primary-navy: #0F1419;
    --education-blue: #1D4ED8;
    --environment-green: #10B981;
    --youth-orange: #E67E22;
    --health-teal: #0F766E;
    --accent-gold: #D4A574;
    --rich-cream: #F5F3F0;
    --pure-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --success-green: #059669;
    --error-red: #DC2626;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--rich-cream);
    overflow-x: clip;
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

/* ============================================
   TOP BAR — STICKS WITH HEADER AS ONE BLOCK
   ============================================ */
.top-bar {
    background: #0D1B2A;
    font-size: 0.74rem;
    font-family: 'Inter', -apple-system, sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 2002;
}


.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 28px;
}

.top-bar-left { display: flex; align-items: center; }

.top-bar-item {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    padding: 0 12px;
    height: 28px;
    display: flex;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.1px;
}

.top-bar-item:first-child { padding-left: 0; }
.top-bar-item:hover { color: rgba(255,255,255,0.95); }

.top-bar-sep { width: 1px; height: 10px; background: rgba(255,255,255,0.12); }

.top-bar-right { display: flex; align-items: center; height: 28px; gap: 0; }

.top-bar-link {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-weight: 600;
    padding: 0 14px;
    height: 28px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    white-space: nowrap;
    font-size: 0.72rem;
    letter-spacing: 0.2px;
}

.top-bar-right .top-bar-link { border-left: 1px solid rgba(255,255,255,0.08); }
.top-bar-right .top-bar-link:first-child { border-left: none; }

.top-bar-link:hover { color: white; }

@media (max-width: 1024px) {
    .top-bar-inner { padding: 0 24px; }
    .top-bar-item { padding: 0 8px; font-size: 0.7rem; }
    .top-bar-link { padding: 0 8px; font-size: 0.7rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    header { top: 0 !important; }
}

/* ============================================
   PREMIUM HEADER & NAVIGATION — WHITE
   ============================================ */
header {
    position: sticky;
    top: 28px;
    z-index: 2001;
    background: white;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    height: 68px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 22px;
    box-shadow: none;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 11.5px;
    font-weight: 800;
    color: #0D1B2A;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    line-height: 1.45;
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid #e2e8f0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    height: 100%;
}

.nav-links a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-links a:hover {
    color: #059669;
}

.nav-links a.active {
    color: #059669;
    font-weight: 700;
}

.nav-links a.nav-donate {
    background: #0D1B2A;
    color: white !important;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(13,27,42,0.15);
}

.nav-links a.nav-donate:hover,
.nav-links a.nav-donate-btn:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(5,150,105,0.3);
}

.nav-links a.nav-donate-btn {
    background: linear-gradient(135deg, #059669, #0F766E);
    color: white !important;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(5,150,105,0.25);
    margin-left: 8px;
}

.nav-links a.nav-donate-btn::after {
    display: none !important;
    box-shadow: 0 4px 16px rgba(5,150,105,0.3);
}

.nav-links a.nav-donate::after { display: none; }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0D1B2A;
    padding: 8px;
}

.cta-nav {
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-left: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.mobile-nav-overlay.active {
    display: block;
}

.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 280px);
    height: 100vh;
    height: 100dvh;
    background: white;
    padding: 24px 28px 40px;
    gap: 0;
    z-index: 3000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-links.mobile-open::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url('images/Ai images/Logo.jpg') center/contain no-repeat;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.nav-links.mobile-open li {
    list-style: none;
}

.nav-links.mobile-open a {
    display: flex !important;
    align-items: center;
    padding: 14px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0F1419 !important;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: auto !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.82rem !important;
}

.nav-links.mobile-open a:hover,
.nav-links.mobile-open a.active {
    background: linear-gradient(135deg, rgba(29,78,216,0.06), rgba(15,118,110,0.04));
    color: #1D4ED8 !important;
}

.nav-links.mobile-open a::after {
    display: none !important;
}

.nav-links.mobile-open .nav-donate {
    margin-top: 12px;
    background: linear-gradient(135deg, #1D4ED8, #3b82f6) !important;
    color: white !important;
    text-align: center;
    justify-content: center;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 16px rgba(29,78,216,0.25);
}

.nav-links.mobile-open .nav-donate:hover {
    color: white !important;
    background: linear-gradient(135deg, #3b82f6, #1D4ED8) !important;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
/* ============================================
   HERO SLIDESHOW
   ============================================ */
.hero-slideshow {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

/* Background Slides */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 20, 25, 0.5) 0%,
        rgba(15, 20, 25, 0.35) 30%,
        rgba(15, 20, 25, 0.4) 60%,
        rgba(15, 20, 25, 0.7) 100%
    );
}

/* Slide Text Content */
.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-slide-text {
    display: none;
    animation: heroTextIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-slide-text.active {
    display: block;
}

@keyframes heroTextIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
}

.hero-slideshow h1,
.hero-slideshow .hero-heading {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: white;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-slideshow p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slideshow .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Slide Indicators */
.hero-indicators {
    display: none;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: white;
}

.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* Progress Bar */
.hero-progress {
    display: none;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--education-blue), var(--environment-green));
    transition: width 0.1s linear;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-slideshow h1 {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .hero-slideshow {
        min-height: 90vh;
    }

    .hero-slideshow h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

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

    .hero-tagline {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .hero-indicators {
        bottom: 30px;
    }

    .hero-slide-content {
        padding: 0 20px;
    }
}

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

    .hero-slideshow .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Legacy hero class kept for backwards compat */
.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PARTNERS TRUST TICKER
   ============================================ */
.partners-ticker {
    background: linear-gradient(135deg, #06100e 0%, #0a1e1a 25%, #0d1f2d 50%, #0a1e1a 75%, #06100e 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.partners-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(16, 185, 129, 0.5) 30%, rgba(29, 78, 216, 0.4) 50%, rgba(16, 185, 129, 0.5) 70%, transparent 90%);
}

.partners-ticker::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(16, 185, 129, 0.5) 30%, rgba(29, 78, 216, 0.4) 50%, rgba(16, 185, 129, 0.5) 70%, transparent 90%);
}

.ticker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 40px 0;
}

.ticker-label {
    color: #5eead4;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ticker-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), rgba(29, 78, 216, 0.3));
    border-radius: 2px;
}

.ticker-sub {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-track {
    position: relative;
    padding: 24px 0 30px;
    mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ticker-scroll {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
}

.ticker-scroll:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    cursor: default;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.ticker-item:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(29, 78, 216, 0.1));
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15), 0 0 40px rgba(16, 185, 129, 0.05);
}

.ticker-icon {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.ticker-item:hover .ticker-icon {
    transform: scale(1.15);
}

.ticker-name {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ticker-item:hover .ticker-name {
    color: white;
}

.ticker-separator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.25);
    flex-shrink: 0;
    margin: 0 10px;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
    .ticker-header {
        flex-direction: column;
        gap: 6px;
        padding: 18px 20px 0;
    }

    .ticker-divider {
        display: none;
    }

    .ticker-item {
        padding: 10px 22px;
        gap: 10px;
    }

    .ticker-icon {
        font-size: 20px;
    }

    .ticker-name {
        font-size: 0.8rem;
    }

    .ticker-scroll {
        animation-duration: 30s;
    }
}

/* Page Hero (smaller variant for inner pages) */
.page-hero {
    color: white;
    padding: 140px 60px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 20, 25, 0.82) 0%,
        rgba(15, 20, 25, 0.65) 40%,
        rgba(15, 20, 25, 0.78) 100%
    );
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.95) 0%, transparent 100%);
    z-index: 1;
}

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

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.page-hero .breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: white;
    color: var(--education-blue);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--education-blue);
}

.btn-blue {
    background: linear-gradient(135deg, var(--education-blue) 0%, var(--primary-navy) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.3);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 78, 216, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.fade-in {
    animation: fadeInUp 0.5s ease-out both;
}

.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.08s; }
.fade-in:nth-child(3) { animation-delay: 0.16s; }
.fade-in:nth-child(4) { animation-delay: 0.24s; }
.fade-in:nth-child(5) { animation-delay: 0.32s; }
.fade-in:nth-child(6) { animation-delay: 0.4s; }

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

section {
    padding: 120px 60px;
}

section h2 {
    font-size: 3.2rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--education-blue), var(--environment-green));
    border-radius: 2px;
}

section.donation-section h2::after,
section.contact-section h2::after {
    display: none;
}

section > .subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.mission-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
}

.mission-text h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-stat {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--education-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-stat::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.mission-stat:nth-child(2) { border-left-color: var(--environment-green); }
.mission-stat:nth-child(3) { border-left-color: var(--youth-orange); }
.mission-stat:nth-child(4) { border-left-color: var(--health-teal); }

.mission-stat strong {
    display: block;
    font-size: 2.8rem;
    color: var(--education-blue);
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.mission-stat:nth-child(2) strong { color: var(--environment-green); }
.mission-stat:nth-child(3) strong { color: var(--youth-orange); }
.mission-stat:nth-child(4) strong { color: var(--health-teal); }

.mission-stat span {
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   PROGRAMS GRID
   ============================================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: rgba(0,0,0,0.05);
    transition: height 0.3s ease;
    z-index: 0;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.program-card:nth-child(1) { border-top-color: var(--education-blue); }
.program-card:nth-child(2) { border-top-color: var(--environment-green); }
.program-card:nth-child(3) { border-top-color: var(--youth-orange); }
.program-card:nth-child(4) { border-top-color: var(--health-teal); }

.program-header {
    padding: 60px 40px;
    text-align: center;
    color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.program-card:nth-child(1) .program-header {
    background: linear-gradient(135deg, var(--education-blue) 0%, #0E3A8C 100%);
}
.program-card:nth-child(2) .program-header {
    background: linear-gradient(135deg, var(--environment-green) 0%, #047857 100%);
}
.program-card:nth-child(3) .program-header {
    background: linear-gradient(135deg, var(--youth-orange) 0%, #D97706 100%);
}
.program-card:nth-child(4) .program-header {
    background: linear-gradient(135deg, var(--health-teal) 0%, #0D9488 100%);
}

.program-icon {
    font-size: 56px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.program-card h3 {
    color: white;
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.program-body {
    padding: 40px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.program-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.program-link {
    display: inline-flex;
    align-items: center;
    color: var(--education-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 8px;
}

.program-link:hover {
    gap: 12px;
    color: var(--environment-green);
}

/* Program Image Header (for programs page) */
.program-image-header {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.program-image-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.program-card:nth-child(1) .program-image-header::after {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.85) 0%, rgba(14, 58, 140, 0.9) 100%);
}
.program-card:nth-child(2) .program-image-header::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(4, 120, 87, 0.9) 100%);
}
.program-card:nth-child(3) .program-image-header::after {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.85) 0%, rgba(217, 119, 6, 0.9) 100%);
}
.program-card:nth-child(4) .program-image-header::after {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.85) 0%, rgba(13, 148, 136, 0.9) 100%);
}

.program-image-header .program-icon,
.program-image-header h3 {
    position: relative;
    z-index: 2;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0fdf4 100%);
    color: var(--text-dark);
    padding: 120px 60px;
}

.impact-section h2 {
    color: var(--primary-navy);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 80px;
}

.impact-card {
    text-align: center;
    padding: 44px 28px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--education-blue), var(--environment-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    background: white;
    border-color: rgba(29, 78, 216, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(29, 78, 216, 0.1);
}

.impact-number {
    font-size: 3.4rem;
    font-weight: 800;
    margin: 12px 0;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--primary-navy), var(--education-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.value-card {
    padding: 50px;
    background: linear-gradient(135deg, var(--rich-cream) 0%, white 100%);
    border-radius: 16px;
    border-left: 4px solid var(--education-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover::before {
    top: -20%;
    right: -20%;
}

.value-card:nth-child(2) { border-left-color: var(--environment-green); }
.value-card:nth-child(3) { border-left-color: var(--youth-orange); }
.value-card:nth-child(4) { border-left-color: var(--health-teal); }

.value-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   AI/CAMPAIGNS SECTION
   ============================================ */
.ai-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 80px;
}

.ai-card {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ai-card:hover::before {
    top: -20%;
    left: -20%;
}

.ai-icon {
    font-size: 52px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.ai-card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ai-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--education-blue) 0%, var(--primary-navy) 100%);
    color: white;
    padding: 100px 60px;
    text-align: center;
    border-radius: 16px;
    margin: 80px 60px;
    box-shadow: 0 20px 50px rgba(29, 78, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.cta-section h2::after {
    display: none;
}

.cta-section p {
    font-size: 1.35rem;
    margin: 25px 0 45px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--education-blue);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.15);
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--education-blue), var(--environment-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-info strong {
    display: block;
    color: var(--primary-navy);
    font-weight: 700;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    background: var(--primary-navy);
    color: white;
    padding: 60px 60px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.badge {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.badge strong {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.badge span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Trust Section Light Variant */
.trust-section-light {
    background: white;
    color: var(--text-dark);
}

.trust-section-light h2 {
    color: var(--primary-navy);
}

.trust-section-light .subtitle {
    color: var(--text-light);
}

.trust-section-light .badge {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(29, 78, 216, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.trust-section-light .badge:hover {
    background: white;
    border-color: rgba(29, 78, 216, 0.15);
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.08);
    transform: translateY(-4px);
}

.trust-section-light .badge strong {
    color: var(--primary-navy);
}

.trust-section-light .badge span {
    color: var(--text-light);
    opacity: 1;
}

/* ============================================
   DONATION FORMS & LANDING
   ============================================ */
.donation-section {
    background: linear-gradient(135deg, var(--rich-cream) 0%, white 100%);
}

.donation-form {
    background: linear-gradient(135deg, white 0%, var(--rich-cream) 100%);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--education-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--education-blue) 0%, var(--primary-navy) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.4);
}

/* Donations Landing */
.donations-landing {
    background: linear-gradient(135deg, white 0%, var(--rich-cream) 100%);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.donations-landing::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.donations-landing::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.donations-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.donations-header h2 {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.donations-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.donations-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.donation-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.donation-card-1 { border-top-color: var(--education-blue); }
.donation-card-2 { border-top-color: var(--environment-green); }
.donation-card-3 { border-top-color: var(--youth-orange); }
.donation-card-4 { border-top-color: var(--health-teal); }

.donation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.donation-card-icon {
    font-size: 60px;
    text-align: center;
}

.donation-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 700;
    text-align: center;
}

.donation-card p {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
    flex-grow: 1;
}

.donation-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.feature {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature::before {
    content: '\2713';
    color: var(--environment-green);
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-card {
    padding: 14px 32px;
    background: var(--education-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: center;
}

.btn-card:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
}

.donations-alternative {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Specific Form Sections */
.specific-form {
    animation: fadeInUp 0.5s ease-out;
}

.specific-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.specific-form-container.single-card-form {
    max-width: 860px;
}

.form-row-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.form-row-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.currency-select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-select:focus {
    outline: none;
    border-color: var(--education-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* Campaign Cards */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.campaign-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.campaign-card.selected {
    border-color: var(--health-teal);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.25);
}

.campaign-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
}

.campaign-category {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-details {
    padding: 20px;
}

.campaign-details h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.campaign-details > p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Progress Bar */
.campaign-progress {
    margin-bottom: 12px;
}

.progress-bar {
    height: 10px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-out;
    background: linear-gradient(90deg, var(--education-blue), var(--environment-green));
}

.progress-fill.surpassed {
    background: linear-gradient(90deg, var(--environment-green), #059669);
}

.progress-fill.deficit {
    background: linear-gradient(90deg, var(--youth-orange), #dc2626);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.progress-stats strong {
    color: var(--primary-navy);
}

.progress-percent {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.progress-percent.funded {
    background: rgba(29, 78, 216, 0.1);
    color: var(--education-blue);
}

.progress-percent.surpassed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--environment-green);
}

.progress-percent.deficit {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.campaign-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Selected Campaign Banner */
.selected-campaign-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0.04));
    border-radius: 10px;
    border-left: 4px solid var(--health-teal);
    margin-bottom: 25px;
}

.selected-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.selected-campaign-banner strong {
    color: var(--primary-navy);
    font-size: 1rem;
    flex-grow: 1;
}

.change-campaign {
    color: var(--health-teal);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.change-campaign:hover {
    text-decoration: underline;
}

/* Completed Campaign Styles */
.campaign-card.completed {
    cursor: default;
    opacity: 0.85;
}

.campaign-card.completed:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.campaign-badge-completed {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--success-green);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.progress-fill.completed-fill {
    background: linear-gradient(90deg, #9CA3AF, #D1D5DB);
}

/* Corporate Partnership Banner */
.corporate-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, #0F1419 0%, #1a2a3a 50%, #0F1419 100%);
    border-radius: 20px;
    padding: 45px 50px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.corporate-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.15) 0%, transparent 50%, rgba(29, 78, 216, 0.1) 100%);
    z-index: -1;
}

.corporate-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(15, 118, 110, 0.3);
}

.corporate-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.corporate-banner-left {
    flex: 1;
}

.corporate-badge {
    display: inline-block;
    background: rgba(15, 118, 110, 0.2);
    border: 1px solid rgba(15, 118, 110, 0.4);
    color: #5eead4;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.corporate-banner-left h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.corporate-banner-left p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

.corporate-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.corporate-highlights {
    display: flex;
    gap: 20px;
}

.corp-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 100px;
}

.corp-icon {
    font-size: 24px;
}

.corp-highlight span:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.corporate-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--health-teal), #0d6356);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.corporate-cta:hover {
    background: linear-gradient(135deg, #0d6356, #0a4f45);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4);
}

/* Corporate Form Section */
.corporate-section {
    background: linear-gradient(135deg, #f8fafb 0%, white 50%, #f0f9f8 100%);
}

.corporate-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.corp-value-card {
    background: white;
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-top: 4px solid var(--health-teal);
    transition: all 0.3s ease;
}

.corp-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.corp-value-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.corp-value-card h4 {
    color: var(--primary-navy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.corp-value-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

.corporate-form-card {
    border-top: 4px solid var(--health-teal);
}

.corporate-form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #E5E7EB;
}

.corporate-form-header h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.corporate-form-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.corporate-submit-btn {
    background: linear-gradient(135deg, #0F1419, #1a2a3a) !important;
}

.corporate-submit-btn:hover {
    background: linear-gradient(135deg, var(--health-teal), #0d6356) !important;
}

/* File Upload */
.file-upload-area {
    display: block;
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.file-upload-area:hover {
    border-color: var(--health-teal);
    background: rgba(15, 118, 110, 0.03);
}

.file-upload-area.has-file {
    border-color: var(--environment-green);
    border-style: solid;
    background: rgba(16, 185, 129, 0.05);
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.file-upload-icon { font-size: 28px; }
.file-upload-text { color: var(--text-light); font-size: 0.9rem; }
.file-upload-name { color: var(--primary-navy); font-weight: 700; font-size: 0.9rem; }
.file-upload-size { color: var(--text-light); font-size: 0.8rem; }
.file-upload-remove { color: #dc2626; font-size: 0.8rem; font-weight: 600; cursor: pointer; text-decoration: underline; }

.form-section-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.form-back-link {
    margin-bottom: 25px;
}

.form-back-link a {
    color: var(--education-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-back-link a:hover {
    color: var(--primary-navy);
}

.form-back-link a::before {
    content: '\2190 ';
}

.quick-amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.quick-amt-btn {
    padding: 12px 8px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.quick-amt-btn:hover {
    border-color: var(--education-blue);
    background: rgba(29, 78, 216, 0.05);
}

.quick-amt-btn.active {
    background: var(--education-blue);
    color: white;
    border-color: var(--education-blue);
}

.link-primary {
    color: var(--education-blue);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: var(--primary-navy);
    text-decoration: underline;
}

/* Donation Form Wrapper */
.donation-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    height: fit-content;
}

.donation-form-premium {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-section h4 {
    color: var(--primary-navy);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-section label {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-section input,
.form-section select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
    outline: none;
    border-color: var(--education-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"] { cursor: pointer; }

.radio-option input[type="radio"]:checked + span {
    color: var(--education-blue);
    font-weight: 700;
}

.radio-option:has(input[type="radio"]:checked) {
    background: rgba(29, 78, 216, 0.05);
    border-color: var(--education-blue);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row > div {
    display: flex;
    flex-direction: column;
}

.form-row input { width: 100%; }

/* Payment Gateway Selection */
.payment-gateways {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-option {
    position: relative;
    cursor: pointer;
}

.payment-option input[type="radio"] { display: none; }

.gateway-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.payment-option input[type="radio"]:checked ~ .gateway-card {
    background: rgba(29, 78, 216, 0.08);
    border-color: var(--education-blue);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

.gateway-card:hover {
    border-color: var(--education-blue);
    transform: translateY(-2px);
}

.gateway-icon { font-size: 32px; }

.gateway-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gateway-info strong { color: var(--primary-navy); font-weight: 700; font-size: 0.95rem; }
.gateway-info span { color: var(--text-light); font-size: 0.8rem; }

/* Amount Input with Currency */
.amount-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
}

.amount-input-group input[type="number"],
.amount-input-group input[type="text"] {
    padding-left: 55px !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    width: 100%;
}

/* Checkbox */
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"] { cursor: pointer; width: 20px; height: 20px; }

.checkbox-option:hover { background: rgba(29, 78, 216, 0.05); }

/* Security Info */
.security-info {
    padding: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--environment-green);
}

.security-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.security-message span:first-child { font-size: 20px; flex-shrink: 0; }

/* Form Validation */
.error-message {
    display: block;
    color: #DC2626;
    font-size: 0.8rem;
    margin-top: 6px;
    animation: slideInUp 0.3s ease-out;
}

.form-section input:invalid:not(:placeholder-shown),
.form-section select:invalid:not(:placeholder-shown) {
    border-color: #DC2626;
    background: rgba(220, 38, 38, 0.02);
}

.form-section input:valid:not(:placeholder-shown),
.form-section select:valid:not(:placeholder-shown) {
    border-color: #10B981;
}

.success-checkmark { color: #10B981; margin-right: 8px; font-weight: bold; }

/* Loading Button */
.btn-donate-premium {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--education-blue) 0%, var(--primary-navy) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-donate-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 78, 216, 0.4);
}

.btn-arrow { transition: transform 0.3s ease; }

.btn-donate-premium:hover .btn-arrow { transform: translateX(5px); }

.btn-donate-premium.loading { opacity: 0.8; pointer-events: none; position: relative; }
.btn-donate-premium.loading .btn-text { opacity: 0; }
.btn-donate-premium.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Success Modal */
.form-success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 48px 44px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 440px;
    width: 90%;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

@keyframes successPop {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.form-success-modal .success-check {
    margin-bottom: 20px;
    animation: checkBounce 0.6s ease 0.2s both;
}

@keyframes checkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success-modal h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-success-modal .success-details {
    background: #f8fafc;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.form-success-modal .success-details p {
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 6px;
}

.form-success-modal .success-details p:last-child { margin-bottom: 0; }

.form-success-modal .success-details strong {
    color: var(--education-blue);
}

.form-success-modal .success-tagline {
    color: var(--text-light);
    font-size: 0.88rem;
    font-style: italic;
    margin: 0 0 24px;
    line-height: 1.5;
}

.form-success-modal .success-close-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--education-blue), var(--primary-navy));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.form-success-modal .success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    animation: fadeInUp 0.3s ease-out;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 80px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--education-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.faq-item summary {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.05rem;
    list-style: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '\25B6';
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-item[open] summary::after { transform: rotate(90deg); }

.faq-item p {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item a { color: var(--education-blue); font-weight: 600; }

/* ============================================
   WAYS TO SUPPORT SECTION
   ============================================ */
.ways-to-support {
    background: linear-gradient(135deg, white 0%, var(--rich-cream) 100%);
    position: relative;
    overflow: hidden;
}

.ways-to-support::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.ways-to-support::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.support-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.support-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid;
    display: flex;
    flex-direction: column;
    position: relative;
}

.support-card-1 { border-top-color: var(--education-blue); }
.support-card-2 { border-top-color: var(--environment-green); }
.support-card-3 { border-top-color: var(--youth-orange); }
.support-card-4 { border-top-color: var(--health-teal); }

.support-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.card-header {
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2332 100%);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.method-icon { font-size: 60px; }

.card-header h3 { font-size: 1.8rem; color: white; margin: 0; }

.card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card-body > p { color: var(--text-light); line-height: 1.8; font-size: 1.05rem; }

.support-options { display: flex; flex-direction: column; gap: 12px; }

.option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 8px;
}

.option-icon { font-size: 24px; }

.option-text { display: flex; flex-direction: column; gap: 2px; }
.option-text strong { color: var(--primary-navy); font-weight: 700; }
.option-text span { color: var(--text-light); font-size: 0.85rem; }

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.role-tag {
    background: linear-gradient(135deg, var(--environment-green), rgba(16, 185, 129, 0.6));
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.commitment-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.commitment {
    background: linear-gradient(135deg, var(--education-blue), rgba(29, 78, 216, 0.6));
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.commitment strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.commitment span { font-size: 0.75rem; opacity: 0.9; }

.partnership-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

.benefit { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.benefit-icon { font-size: 28px; }
.benefit strong { color: var(--primary-navy); font-weight: 700; font-size: 0.95rem; }
.benefit span { color: var(--text-light); font-size: 0.85rem; }

.active-campaigns { display: flex; flex-direction: column; gap: 12px; }

.campaign-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 8px;
}

.campaign-icon { font-size: 24px; }

.campaign-info { display: flex; flex-direction: column; gap: 2px; flex-grow: 1; }
.campaign-info strong { color: var(--primary-navy); font-weight: 700; }
.campaign-info span { color: var(--text-light); font-size: 0.85rem; }

.card-cta {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--education-blue), var(--primary-navy));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3);
    text-decoration: none;
}

.card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.4);
}

.arrow { transition: transform 0.3s ease; }
.card-cta:hover .arrow { transform: translateX(5px); }

/* Impact Comparison */
.impact-comparison {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2332 100%);
    padding: 60px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: white;
}

.impact-comparison h3 { text-align: center; font-size: 2rem; margin-bottom: 50px; color: white; }

.comparison-table { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.comparison-column {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-column.highlight {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(29, 78, 216, 0.1) 100%);
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
}

.comparison-header {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-item { padding: 10px 0; opacity: 0.9; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--rich-cream) 0%, white 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.contact-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--education-blue);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-card:nth-child(2) { border-top-color: var(--environment-green); }
.contact-card:nth-child(3) { border-top-color: var(--health-teal); }

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.contact-card:hover::before { bottom: -20%; left: -20%; }

.contact-icon { font-size: 44px; margin-bottom: 15px; position: relative; z-index: 1; }

.contact-card h3 { color: var(--primary-navy); margin-bottom: 15px; font-size: 1.4rem; font-weight: 700; position: relative; z-index: 1; }

.contact-card p { color: var(--text-light); line-height: 1.8; margin-bottom: 15px; position: relative; z-index: 1; }

.contact-card a { color: var(--education-blue); text-decoration: none; font-weight: 600; transition: color 0.3s ease; position: relative; z-index: 1; }

.contact-card a:hover { color: var(--environment-green); }

.social-links { display: flex; gap: 12px; justify-content: center; margin-top: 20px; position: relative; z-index: 1; }

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--education-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.social-icon:hover {
    background: var(--environment-green);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, #06100e 0%, #0a1e1a 25%, #0d1f2d 50%, #0a1e1a 75%, #06100e 100%);
    color: white;
    padding: 80px 60px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(100px, -100px);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul { list-style: none; }

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin: 12px 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-gold);
    margin-left: 8px;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Newsletter */
.footer-newsletter {
    margin-top: 0;
    margin-bottom: 50px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-newsletter-text h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.footer-newsletter-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
    max-width: 420px;
    width: 100%;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: white;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter-form input:focus {
    border-color: rgba(29, 78, 216, 0.4);
    background: rgba(255,255,255,0.08);
}

.footer-newsletter-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--education-blue), #3b82f6);
    border: none;
    border-radius: 0 10px 10px 0;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(135deg, #3b82f6, var(--education-blue));
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
}

@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }
}

.footer-bottom {
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), rgba(29, 78, 216, 0.2), rgba(16, 185, 129, 0.3), transparent) 1;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link.facebook {
    background: #1877F2;
}
.footer-social-link.facebook:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.footer-social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-social-link.instagram:hover {
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.footer-social-link.linkedin {
    background: #0A66C2;
}
.footer-social-link.linkedin:hover {
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: fill 0.3s ease;
}

.footer-social-link:hover svg {
    fill: white;
}

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; text-align: center; padding-top: 20px; gap: 12px; }
    .footer-bottom p { font-size: 0.78rem; }
    .footer-right { justify-content: center; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--education-blue);
    color: var(--education-blue);
}

.filter-btn.active {
    background: var(--education-blue);
    color: white;
    border-color: var(--education-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 48px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ============================================
   NEWS / BLOG PAGE
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.news-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--education-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-body {
    padding: 30px;
}

.news-category {
    display: inline-block;
    background: rgba(29, 78, 216, 0.1);
    color: var(--education-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-body h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    color: var(--education-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.news-link:hover { gap: 10px; color: var(--environment-green); }

/* ============================================
   ABOUT PAGE - TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--education-blue), var(--environment-green), var(--youth-orange), var(--health-teal));
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.timeline-year {
    display: inline-block;
    background: var(--education-blue);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timeline-content h3 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--education-blue);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.2);
    z-index: 1;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, var(--education-blue), var(--environment-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    font-weight: 800;
}

.team-card h3 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--education-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 25px 30px;
}

/* ============================================
   IMPACT PAGE SPECIFIC
   ============================================ */
.impact-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.impact-story {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.impact-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.impact-story-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.impact-story-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.impact-story-body {
    padding: 30px;
}

.impact-story-body h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.impact-story-body p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact Form (contact page) */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--education-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--environment-green);
}

/* Map Container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-top: 60px;
    height: 400px;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .donations-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    nav { padding: 0 40px; }
    .nav-links { gap: 24px; }
    .nav-links a { font-size: 13px; }
    .programs-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }

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

    .donation-container { grid-template-columns: 1fr; gap: 30px; }
    .impact-preview-card { position: static; }
    .payment-gateways { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .corporate-banner-content { flex-direction: column; align-items: flex-start; gap: 30px; }
    .corporate-banner-right { align-items: flex-start; width: 100%; }
    .corporate-value-grid { grid-template-columns: repeat(2, 1fr); }

    .support-methods-grid { grid-template-columns: 1fr; }
    .comparison-table { grid-template-columns: repeat(2, 1fr); }
    .comparison-column.highlight { transform: scale(1); }
    .partnership-benefits { grid-template-columns: 1fr; }
    .commitment-levels { grid-template-columns: 1fr; }

    .donations-header h2 { font-size: 2.5rem; }

    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-story-grid { grid-template-columns: 1fr; }
    .contact-form-section { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .timeline::before { left: 30px; }
    .timeline-item { flex-direction: row !important; }
    .timeline-item:nth-child(even) { flex-direction: row !important; }
    .timeline-content { width: calc(100% - 80px); margin-left: 60px; }
    .timeline-dot { left: 30px; }
}

@media (max-width: 768px) {
    nav { padding: 15px 36px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    .logo-text { padding-right: 0; margin-right: 0; border-right: none; }
    section { padding: 60px 20px; }
    .container { padding: 0 20px; }
    .hero { padding: 100px 30px; min-height: auto; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .page-hero { padding: 80px 30px 60px; }
    .page-hero h1 { font-size: 2.2rem; }
    .mission-intro { grid-template-columns: 1fr; gap: 50px; }
    .ai-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-badges { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    section h2 { font-size: 2.2rem; }
    .cta-section { margin: 40px 30px; }

    .form-row-equal { grid-template-columns: 1fr; gap: 15px; }
    .form-row-three { grid-template-columns: 1fr; gap: 12px; }
    .quick-amount-buttons { grid-template-columns: repeat(2, 1fr); }
    .campaign-grid { grid-template-columns: 1fr; }

    .donations-landing { padding: 50px 20px; }
    .donations-options { grid-template-columns: 1fr !important; gap: 20px; }
    .donation-card { padding: 30px 24px; }
    .donations-header h2 { font-size: 2rem; }
    .donations-header p { font-size: 1rem; }

    .corporate-banner { padding: 30px 25px; }
    .corporate-banner-left h3 { font-size: 1.4rem; }
    .corporate-highlights { flex-wrap: wrap; gap: 10px; }
    .corp-highlight { min-width: 80px; padding: 10px 12px; }
    .corporate-value-grid { grid-template-columns: 1fr; }

    .donation-form-wrapper { padding: 30px; }
    .impact-preview-card { padding: 30px; }
    .quick-amounts { grid-template-columns: repeat(2, 1fr); }

    .form-section input,
    .form-section select { font-size: 16px; }

    .support-methods-grid { gap: 20px; }
    .card-header { padding: 40px 30px; }
    .card-body { padding: 30px; }
    .impact-comparison { padding: 30px; }
    .comparison-table { grid-template-columns: 1fr; }
    .volunteer-roles { grid-template-columns: 1fr; }

    footer { padding: 50px 24px 20px; overflow: hidden; }
    .footer-content { gap: 30px; }

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

    /* Gallery filters: keep all 5 on one line on mobile */
    .gallery-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 30px;
        padding: 4px 20px;
        margin-left: -20px;
        margin-right: -20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gallery-filters::-webkit-scrollbar { display: none; }
    .filter-btn {
        flex: 0 0 auto;
        padding: 8px 16px;
        font-size: 0.78rem;
        letter-spacing: 0.3px;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    /* Fix missing responsive rules */
    .whoweare-layout { gap: 30px !important; }
    .origin-layout { grid-template-columns: 1fr !important; gap: 30px !important; }
    .create-impact-split { grid-template-columns: 1fr !important; gap: 30px !important; }
    .vision-scale-section { padding: 60px 30px !important; }
    .about-origin { padding: 60px 30px !important; }
    .hero-slideshow { min-height: 70vh; }
    .hero-slideshow h1 { font-size: 1.8rem; }
    .logo-text { font-size: 10px; letter-spacing: 1px; padding-right: 16px; margin-right: 16px; }
    .logo-icon { width: 40px; height: 40px; }
    nav { height: 56px; }
    header { top: 28px; }

    /* Visit page */
    .visit-grid { grid-template-columns: 1fr !important; }
    .visit-page { padding: 30px 20px !important; }
    .vf-row-3 { grid-template-columns: 1fr !important; }
    .vf-row { grid-template-columns: 1fr !important; }
    .vf-body { padding: 20px !important; }

    /* Payment cards */
    .payment-gateways-v2 { grid-template-columns: 1fr !important; }
    .wire-transfer-section { grid-template-columns: 1fr !important; }
    .card-row-main { grid-template-columns: 1fr !important; }
    .card-row-main .card-number-col { grid-column: auto !important; }

    /* Mobile money providers */
    .mobile-money-providers { flex-direction: column; }
    .mpesa-methods { grid-template-columns: 1fr !important; }
}

/* ============================================
   600px — Large phones / small tablets
   ============================================ */
@media (max-width: 600px) {
    /* Typography — scale down all headings */
    section h2, .section-title h2 { font-size: 1.5rem !important; }
    section h3 { font-size: 1.1rem; }
    .donations-header h2 { font-size: 1.5rem !important; }

    /* Forms — prevent iOS zoom + better touch */
    .form-section input, .form-section select, .form-section textarea,
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="number"], input[type="date"], select, textarea {
        font-size: 16px !important;
        min-height: 44px;
    }

    /* ALL grids must be single column */
    .form-row-equal { grid-template-columns: 1fr !important; }
    .create-impact-split { grid-template-columns: 1fr !important; gap: 24px; }
    .donations-options { grid-template-columns: 1fr !important; gap: 20px !important; }
    .campaign-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .pillars-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .program-cards, .program-grid { grid-template-columns: 1fr !important; }
    .impact-cards { grid-template-columns: 1fr !important; }

    /* Card adjustments */
    .donation-card { padding: 28px 20px; }
    .donation-card h3 { font-size: 1.1rem; }

    /* Corporate */
    .corporate-banner-content { gap: 20px; }
    .corporate-value-grid { grid-template-columns: 1fr; }
    .corporate-form-card { padding: 24px 20px; }

    /* Spacing */
    .create-impact-section { padding: 50px 16px; }
    section { padding: 50px 16px; }

    /* Footer — MUST be single column */
    footer { padding: 40px 20px 20px !important; overflow: hidden; }
    .footer-content { grid-template-columns: 1fr !important; gap: 28px !important; }
    .footer-section { text-align: center; }
    .footer-section ul { padding: 0; list-style: none; }
    .footer-newsletter { flex-direction: column; gap: 16px; text-align: center; }
    .footer-newsletter-form { width: 100%; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-right { justify-content: center; }
    .footer-socials { justify-content: center; }

    /* Kill ALL decorative pseudo-elements that cause overflow */
    .cta-section::before,
    .donations-landing::before, .donations-landing::after,
    .ways-to-support::before, .ways-to-support::after,
    footer::before,
    .create-impact-section::before, .create-impact-section::after,
    .home-impact-bar::before, .home-impact-bar::after,
    .vision-scale-section::before, .vision-scale-section::after,
    .contact-section::before, .contact-section::after,
    .page-hero::before, .page-hero::after {
        display: none !important;
    }
}

/* ============================================
   480px — Small phones
   ============================================ */
@media (max-width: 480px) {
    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr !important; }

    /* Hero sections */
    .hero h1 { font-size: 1.6rem !important; }
    .page-hero h1 { font-size: 1.4rem !important; }
    .page-hero p { font-size: 0.85rem; }
    .hero-slideshow { min-height: 55vh; }
    .hero-slideshow h1 { font-size: 1.3rem !important; }
    .hero-slideshow p { font-size: 0.82rem; }

    /* Navigation */
    nav { padding: 8px 12px; height: 48px; }
    .logo-text { font-size: 10px; padding-right: 6px; margin-right: 6px; border-right-width: 1px; }
    .logo-icon { width: 34px; height: 34px; }
    .logo-img { border-radius: 6px; }
    .nav-links.mobile-open { padding: 60px 20px 30px; gap: 20px; }

    /* Top bar */
    .top-bar-inner { padding: 0 10px; }
    .top-bar-item { font-size: 0.75rem; padding: 0 4px; }

    /* ALL sections tighter */
    section { padding: 40px 14px !important; }
    .container { padding: 0 14px; }

    /* Typography smaller */
    section h2 { font-size: 1.3rem !important; }
    section h2::after { width: 40px !important; }
    section p { font-size: 0.88rem; line-height: 1.7; }

    /* Donation page */
    .donations-landing { padding: 30px 14px !important; }
    .donations-header h2 { font-size: 1.3rem !important; }
    .donations-header p { font-size: 0.85rem; }
    .donation-card { padding: 24px 16px; margin: 0; }
    .donation-card h3 { font-size: 1rem; }
    .donation-card-icon { font-size: 2.5rem; }
    .donation-card p { font-size: 0.85rem; }
    .donation-form-wrapper { padding: 14px; }
    .quick-amount-buttons { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .quick-amt-btn { padding: 10px 6px; font-size: 0.8rem; }

    /* Wizard steps */
    .step-progress { gap: 2px; }
    .step-label { display: none; }
    .step-connector { width: 20px; }
    .step-dot { width: 26px; height: 26px; font-size: 0.7rem; }

    /* Ground level */
    .ground-level-inner { padding: 24px 14px; }
    .ground-level-inner h3 { font-size: 1.1rem; }
    .ground-level-stats { gap: 12px; }
    .gl-stat strong { font-size: 1.1rem; }

    /* Footer */
    footer { padding: 30px 14px 14px !important; overflow: hidden; }
    .footer-content { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-section { text-align: center; }
    .footer-section h4 { font-size: 0.85rem; }
    .footer-section p, .footer-section a { font-size: 0.82rem; }
    .footer-newsletter { padding: 0; }
    .footer-newsletter h4 { font-size: 1rem; }
    .footer-bottom p { font-size: 0.75rem; }

    /* Campaign cards */
    .campaign-grid { grid-template-columns: 1fr !important; }
    .campaign-card { margin: 0; }

    /* Impact & program cards */
    .impact-cards { grid-template-columns: 1fr !important; }
    .program-cards, .program-grid { grid-template-columns: 1fr !important; }
    .pillars-grid { grid-template-columns: 1fr !important; }

    /* Corporate */
    .corporate-banner { padding: 20px 14px; }
    .corporate-highlights { grid-template-columns: 1fr; gap: 8px; }
    .corporate-section { padding: 30px 14px !important; }

    /* General form polish */
    .form-section { gap: 8px; }
    .form-section h4 { font-size: 0.85rem; }
    .form-section label { font-size: 0.82rem; }
    .btn-donate-premium { padding: 14px 20px; font-size: 0.85rem; }
    .btn-card { padding: 10px 20px; font-size: 0.78rem; }

    /* Security info */
    .security-info { padding: 12px 14px; }
    .security-info p { font-size: 0.75rem; }

    /* Value / AI / mission cards */
    .value-card, .ai-card, .mission-stat { padding: 20px 16px; }

    /* CTA section */
    .cta-section { padding: 40px 16px !important; }
    .cta-section h2 { font-size: 1.3rem !important; }
}

/* ============================================
   CREATE IMPACT (Donate Page)
   ============================================ */
.create-impact-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, white 0%, var(--rich-cream) 50%, white 100%);
    position: relative;
    overflow: hidden;
}

.create-impact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.create-impact-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Split Layout */
.create-impact-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.create-impact-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.create-impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.create-impact-image:hover img {
    transform: scale(1.03);
}

.create-impact-right h2 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin: 14px 0 36px;
    line-height: 1.35;
    font-weight: 700;
}

/* Stacked Row Cards */
.ci-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ci-row-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid transparent;
}

.ci-row-card:nth-child(1) { border-left-color: var(--education-blue); }
.ci-row-card:nth-child(2) { border-left-color: var(--youth-orange); }
.ci-row-card:nth-child(3) { border-left-color: var(--health-teal); }

.ci-row-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ci-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.ci-row-card:nth-child(1) .ci-icon { background: rgba(29, 78, 216, 0.08); }
.ci-row-card:nth-child(2) .ci-icon { background: rgba(230, 126, 34, 0.08); }
.ci-row-card:nth-child(3) .ci-icon { background: rgba(15, 118, 110, 0.08); }

.ci-row-content {
    flex-grow: 1;
}

.ci-row-content h3 {
    color: var(--primary-navy);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.ci-row-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.ci-link {
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: gap 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.ci-row-card:nth-child(1) .ci-link { color: var(--education-blue); }
.ci-row-card:nth-child(2) .ci-link { color: var(--youth-orange); }
.ci-row-card:nth-child(3) .ci-link { color: var(--health-teal); }

.ci-row-card:hover .ci-link {
    gap: 8px;
}

@media (max-width: 1024px) {
    .create-impact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .create-impact-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .create-impact-right h2 {
        font-size: 1.6rem;
    }

    .create-impact-section {
        padding: 70px 20px;
    }

    .ci-row-card {
        flex-wrap: wrap;
        gap: 12px;
        padding: 18px 20px;
    }

    .ci-link {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ============================================
   HOME: WHO WE ARE
   ============================================ */
.home-whoweare {
    padding: 120px 60px;
    background: white;
}

.whoweare-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.whoweare-text h2 {
    font-size: 2.6rem;
    color: var(--primary-navy);
    margin: 12px 0 24px;
    line-height: 1.15;
}

.whoweare-text > p {
    color: var(--text-dark);
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.whoweare-text > p strong {
    color: var(--primary-navy);
}

.whoweare-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 36px 0;
}

.whoweare-stat {
    padding: 20px;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.04), rgba(16, 185, 129, 0.03));
    border-radius: 14px;
    border-left: 4px solid var(--education-blue);
    transition: all 0.3s ease;
}

.whoweare-stat:nth-child(2) { border-left-color: var(--environment-green); }
.whoweare-stat:nth-child(3) { border-left-color: var(--youth-orange); }
.whoweare-stat:nth-child(4) { border-left-color: var(--health-teal); }

.whoweare-stat:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.whoweare-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 2px;
}

.whoweare-stat span {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
}

.whoweare-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--education-blue);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.whoweare-link:hover {
    gap: 12px;
}

.whoweare-image {
    position: relative;
}

.whoweare-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.whoweare-image:hover img {
    transform: scale(1.02);
}

.whoweare-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--education-blue), var(--primary-navy));
    color: white;
    padding: 18px 26px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(29, 78, 216, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whoweare-image-badge span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.whoweare-image-badge strong {
    font-size: 1.8rem;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .whoweare-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-whoweare {
        padding: 80px 30px;
    }

    .whoweare-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .whoweare-text h2 {
        font-size: 2rem;
    }

    .whoweare-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .whoweare-image-badge {
        bottom: -15px;
        left: -10px;
    }
}

/* ============================================
   HOME: IMPACT COUNTER BAR
   ============================================ */
.home-impact-bar {
    padding: 60px;
    background: linear-gradient(135deg, #06100e 0%, #0a1e1a 25%, #0d1f2d 50%, #0a1e1a 75%, #06100e 100%);
    position: relative;
}

.home-impact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), rgba(29, 78, 216, 0.3), rgba(16, 185, 129, 0.4), transparent);
}

.home-impact-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), rgba(29, 78, 216, 0.3), rgba(16, 185, 129, 0.4), transparent);
}

.impact-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.impact-bar-item {
    text-align: center;
    flex: 1;
    padding: 10px 20px;
}

.impact-bar-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    display: inline;
}

.impact-bar-plus {
    font-size: 2rem;
    font-weight: 800;
    color: #5eead4;
    display: inline;
    margin-left: 2px;
}

.impact-bar-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.impact-bar-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .impact-bar-grid {
        flex-wrap: wrap;
        gap: 10px;
    }

    .impact-bar-item {
        flex: 0 0 calc(33.33% - 10px);
    }

    .impact-bar-divider {
        display: none;
    }

    .impact-bar-number {
        font-size: 2.2rem;
    }

    .home-impact-bar {
        padding: 50px 30px;
    }
}

@media (max-width: 600px) {
    .impact-bar-item {
        flex: 0 0 calc(50% - 10px);
    }

    .impact-bar-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   HOME: WHAT WE DO
   ============================================ */
.home-whatwedo {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--rich-cream) 0%, white 50%, var(--rich-cream) 100%);
}

.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.whatwedo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.whatwedo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.whatwedo-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.whatwedo-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, white, transparent);
}

.whatwedo-content {
    padding: 24px 28px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.whatwedo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.whatwedo-card h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.whatwedo-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.whatwedo-link {
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.whatwedo-card:hover .whatwedo-link {
    gap: 8px;
}

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

    .home-whatwedo {
        padding: 80px 30px;
    }
}

@media (max-width: 600px) {
    .whatwedo-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VISION FOR SCALE ROADMAP
   ============================================ */
.vision-scale-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.vision-scale-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-scale-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-scale-section .section-header-premium {
    position: relative;
    z-index: 1;
}

.vision-scale-section .section-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--environment-green);
}

.vision-scale-section h2 {
    color: var(--primary-navy);
}

.vision-scale-section .section-header-premium p {
    color: var(--text-light);
}

.scale-roadmap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
    z-index: 1;
}

.scale-phase {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.scale-phase:last-child {
    margin-bottom: 0;
}

.scale-marker {
    position: absolute;
    left: -50px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scale-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(29, 78, 216, 0.1);
    border: 3px solid rgba(29, 78, 216, 0.2);
    z-index: 2;
    transition: all 0.4s ease;
}

.scale-dot.active-dot {
    background: var(--environment-green);
    border-color: var(--environment-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    animation: scalePulse 2s ease-in-out infinite;
}

.scale-dot.final-dot {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--education-blue), var(--environment-green));
    border-color: transparent;
    box-shadow: 0 0 25px rgba(29, 78, 216, 0.4);
}

@keyframes scalePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.8); }
}

.scale-line {
    width: 2px;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(to bottom, rgba(29, 78, 216, 0.15), rgba(29, 78, 216, 0.05));
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scale-phase:last-child .scale-line {
    display: none;
}

.scale-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.scale-card:hover {
    background: white;
    border-color: rgba(29, 78, 216, 0.12);
    transform: translateX(8px);
    box-shadow: 0 12px 36px rgba(29, 78, 216, 0.08);
}

.scale-card-final {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.04), rgba(16, 185, 129, 0.04));
    border-color: rgba(29, 78, 216, 0.12);
}

.scale-status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.scale-status.current {
    background: rgba(16, 185, 129, 0.12);
    color: var(--environment-green);
}

.scale-status.upcoming {
    background: rgba(29, 78, 216, 0.1);
    color: var(--education-blue);
}

.scale-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.scale-card h3 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.scale-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.scale-region {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(29, 78, 216, 0.05);
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Scale CTA */
.scale-cta {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.scale-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 50px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.06);
}

.scale-cta-text h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.scale-cta-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

.scale-cta .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .vision-scale-section {
        padding: 80px 20px;
    }

    .scale-roadmap {
        padding-left: 30px;
    }

    .scale-phase {
        padding-left: 25px;
    }

    .scale-marker {
        left: -30px;
    }

    .scale-dot {
        width: 16px;
        height: 16px;
    }

    .scale-dot.final-dot {
        width: 22px;
        height: 22px;
    }

    .scale-card {
        padding: 22px;
    }

    .scale-card h3 {
        font-size: 1.05rem;
    }

    .scale-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .scale-cta-text p {
        max-width: 100%;
    }
}

/* ============================================
   PROGRAMS OVERVIEW - FOUR PILLARS
   ============================================ */
.programs-overview {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--rich-cream) 0%, white 50%, var(--rich-cream) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-top: 5px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-education { border-top-color: var(--education-blue); }
.pillar-environment { border-top-color: var(--environment-green); }
.pillar-youth { border-top-color: var(--youth-orange); }
.pillar-health { border-top-color: var(--health-teal); }

.pillar-education::before { background: linear-gradient(to bottom, rgba(29, 78, 216, 0.03), transparent); }
.pillar-environment::before { background: linear-gradient(to bottom, rgba(16, 185, 129, 0.03), transparent); }
.pillar-youth::before { background: linear-gradient(to bottom, rgba(230, 126, 34, 0.03), transparent); }
.pillar-health::before { background: linear-gradient(to bottom, rgba(15, 118, 110, 0.03), transparent); }

.pillar-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.pillar-card h3 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 14px;
}

.pillar-stat {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pillar-education .pillar-stat { color: var(--education-blue); }
.pillar-environment .pillar-stat { color: var(--environment-green); }
.pillar-youth .pillar-stat { color: var(--youth-orange); }
.pillar-health .pillar-stat { color: var(--health-teal); }

.pillar-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pillar-card > p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar-link {
    font-size: 0.85rem;
    font-weight: 700;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pillar-education .pillar-link { color: var(--education-blue); }
.pillar-environment .pillar-link { color: var(--environment-green); }
.pillar-youth .pillar-link { color: var(--youth-orange); }
.pillar-health .pillar-link { color: var(--health-teal); }

.pillar-card:hover .pillar-link {
    gap: 8px;
}

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

    .programs-overview {
        padding: 80px 30px;
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar-stat {
        font-size: 2rem;
    }
}

/* ============================================
   LEADERSHIP MESSAGES (About Page)
   ============================================ */
.leadership-section {
    background: linear-gradient(135deg, var(--rich-cream) 0%, white 50%, var(--rich-cream) 100%);
    padding: 120px 60px;
}

/* About Origin Section */
.about-origin {
    padding: 120px 60px;
    background: white;
}

.origin-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Image Side */
.origin-image-side {
    position: sticky;
    top: 100px;
}

.origin-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    position: relative;
}

.origin-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.4), transparent);
    pointer-events: none;
}

.origin-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 420px;
    max-height: 580px;
    transition: transform 0.6s ease;
}

.origin-image-wrapper:hover img {
    transform: scale(1.03);
}

.origin-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.origin-image-badge span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.origin-image-badge strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
}

.origin-image-stat {
    margin-top: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-navy), #1a2a3a);
    border-radius: 14px;
    text-align: center;
}

.origin-image-stat strong {
    display: block;
    font-size: 1.6rem;
    color: white;
    font-weight: 800;
    margin-bottom: 4px;
}

.origin-image-stat span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Story Side */
.origin-story-side h2 {
    font-size: 2.6rem;
    color: var(--primary-navy);
    margin: 12px 0 40px;
    line-height: 1.15;
}

/* Timeline Steps */
.origin-timeline {
    position: relative;
    padding-left: 32px;
}

.origin-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--education-blue), var(--environment-green), var(--youth-orange), var(--health-teal));
    border-radius: 2px;
}

.origin-step {
    position: relative;
    margin-bottom: 36px;
}

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

.origin-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--education-blue);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--education-blue), 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1;
}

.origin-year {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--education-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.origin-step p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.85;
}

.origin-step p strong {
    color: var(--primary-navy);
    font-weight: 700;
}

/* Motto Banner */
.origin-motto {
    margin-top: 40px;
}

.origin-motto-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--education-blue);
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.06);
}

.origin-motto-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.origin-motto-inner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.origin-motto-mark {
    font-size: 40px;
    color: var(--education-blue);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.origin-motto-text {
    position: relative;
    z-index: 1;
}

.origin-motto-text h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    font-weight: 800;
    font-style: italic;
    margin-bottom: 4px;
}

.origin-motto-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 550px;
}

@media (max-width: 1024px) {
    .origin-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .origin-image-side {
        position: static;
        max-width: 520px;
        margin: 0 auto;
    }

    .origin-image-wrapper img {
        min-height: 320px;
        max-height: 420px;
    }

    .about-origin {
        padding: 80px 30px;
    }

    .origin-motto-inner {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .origin-story-side h2 {
        font-size: 2rem;
    }

    .origin-motto-inner {
        flex-direction: column;
        text-align: left;
        padding: 22px 20px;
        gap: 10px;
    }

    .origin-motto-mark {
        font-size: 32px;
    }

    .origin-motto-text h3 {
        font-size: 1.2rem;
    }

    .origin-image-stat strong {
        font-size: 1.3rem;
    }
}

/* Premium Section Header */
.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--education-blue);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-premium h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--education-blue), var(--environment-green));
    border-radius: 4px;
    margin: 0 auto 20px;
}

.section-header-premium p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.leader-card:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

.leader-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.leader-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-message:hover .leader-image-frame img {
    transform: scale(1.05);
}

.leader-image-frame {
    position: relative;
}

.leader-field-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-portrait-inline {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(29, 78, 216, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.leader-portrait-inline .portrait-photo {
    object-position: top;
}

.leader-card:hover .leader-portrait-inline {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--education-blue);
}

.portrait-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--education-blue), var(--environment-green));
}

.leader-card h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 6px;
}

.leader-title {
    font-size: 0.9rem;
    color: var(--education-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.leader-bio {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.leader-quote p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.leader-quote p:first-child {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-navy);
    font-style: italic;
}

.leader-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
}

.signature-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--education-blue), transparent);
    border-radius: 3px;
}

.signature-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-style: italic;
}

@media (max-width: 1024px) {
    .leader-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-section {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .leader-cards-grid {
        grid-template-columns: 1fr;
    }

    .leader-card h3 {
        font-size: 1.4rem;
    }

    .leader-quote p {
        font-size: 0.95rem;
    }

    .leader-card {
        padding: 30px 24px;
    }
}

/* ============================================
   FOUNDER QUOTE (Home Page)
   ============================================ */
.founder-quote-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0F1419 0%, #1a2a3a 50%, #0F1419 100%);
    position: relative;
    overflow: hidden;
}

.founder-quote-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.founder-quote-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founder-quote-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    position: relative;
}

.founder-quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.founder-quote-content {
    flex: 1;
}

.founder-quote-mark {
    font-size: 60px;
    color: var(--education-blue);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 10px;
}

.founder-quote-card blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 28px;
    border: none;
    padding: 0;
}

.founder-quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.founder-quote-author strong {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
}

.founder-quote-author span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-quote-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--environment-green);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-quote-link:hover {
    color: white;
    gap: 10px;
}

@media (max-width: 768px) {
    .founder-quote-section {
        padding: 70px 30px;
    }

    .founder-quote-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .founder-quote-img {
        width: 160px;
        height: 160px;
    }

    .founder-quote-card blockquote {
        font-size: 1.2rem;
    }

    .founder-quote-mark {
        font-size: 42px;
    }

    .founder-quote-author {
        align-items: center;
    }

    .founder-quote-link {
        justify-content: center;
    }
}

/* ============================================
   CAMPAIGN NEWSLETTER SECTION
   ============================================ */
.campaign-newsletter-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8fafb 0%, white 50%, #f0f9f8 100%);
}

.campaign-newsletter {
    position: relative;
    background: linear-gradient(135deg, #0F1419 0%, #1a2a3a 60%, #0F1419 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, rgba(16, 185, 129, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 1;
}

.newsletter-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.newsletter-icon-wrap {
    position: relative;
    flex-shrink: 0;
}

.newsletter-icon {
    font-size: 42px;
    display: block;
}

.newsletter-ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: var(--environment-green);
    border-radius: 50%;
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0; }
}

.newsletter-left h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-left p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
}

.newsletter-right {
    flex: 1;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--education-blue);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.15);
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--education-blue), var(--environment-green));
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--environment-green), var(--education-blue));
    transform: translateX(2px);
}

.newsletter-btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.newsletter-btn:hover .newsletter-btn-arrow {
    transform: translateX(4px);
}

.newsletter-note {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 900px) {
    .newsletter-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .newsletter-left {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-left p {
        max-width: 100%;
    }

    .newsletter-right {
        max-width: 100%;
        width: 100%;
    }

    .campaign-newsletter {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .campaign-newsletter-section {
        padding: 50px 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-btn {
        justify-content: center;
        padding: 14px 20px;
        border-radius: 0 0 10px 10px;
    }

    .newsletter-left h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   STEP WIZARD FORM
   ============================================ */
.step-wizard {
    position: relative;
}

.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 0 20px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E5E7EB;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.step-indicator.active .step-dot {
    background: linear-gradient(135deg, var(--education-blue), #3b82f6);
    color: white;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
    transform: scale(1.1);
}

.step-indicator.completed .step-dot {
    background: var(--environment-green);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.step-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.step-indicator.active .step-label {
    color: var(--education-blue);
}

.step-indicator.completed .step-label {
    color: var(--environment-green);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: #E5E7EB;
    margin: 0 8px;
    border-radius: 3px;
    transition: background 0.4s ease;
    flex-shrink: 0;
}

.step-connector.active {
    background: linear-gradient(90deg, var(--environment-green), var(--education-blue));
}

.wizard-step {
    display: none;
    animation: stepFadeIn 0.35s ease-out;
}

.wizard-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Payment Fields */
.card-fields {
    padding: 24px 28px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.card-row-main {
    display: grid;
    grid-template-columns: 1fr 120px 90px;
    gap: 12px;
    margin-bottom: 8px;
}

.card-input-group {
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .card-row-main {
        grid-template-columns: 1fr;
    }
    .card-row-main .card-expiry-col,
    .card-row-main .card-cvv-col {
        display: inline-block;
    }
    .card-row-main {
        grid-template-columns: 1fr 1fr;
    }
    .card-row-main .card-number-col {
        grid-column: 1 / -1;
    }
}

.card-input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.card-number-wrap {
    position: relative;
}

.card-number-wrap input {
    padding-right: 60px;
}

.card-brand-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    opacity: 0.5;
}

.card-brand-icon.visa::after { content: 'VISA'; font-size: 0.75rem; font-weight: 800; color: #1a1f71; letter-spacing: 1px; }
.card-brand-icon.mastercard::after { content: 'MC'; font-size: 0.75rem; font-weight: 800; color: #eb001b; }
.card-brand-icon.amex::after { content: 'AMEX'; font-size: 0.65rem; font-weight: 800; color: #006fcf; }

/* PayPal Notice */
.paypal-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 14px;
}

.paypal-notice-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
}

.paypal-notice-text strong {
    display: block;
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.paypal-notice-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .paypal-notice {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
}

@keyframes shakeField {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 16px;
}

.step-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.step-nav-back:hover {
    border-color: var(--education-blue);
    color: var(--education-blue);
    background: rgba(29, 78, 216, 0.04);
}

.step-nav-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--education-blue), #3b82f6);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.2);
    margin-left: auto;
}

.step-nav-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
}

.step-nav-spacer {
    width: 1px;
}

@media (max-width: 768px) {
    .step-progress {
        gap: 0;
        padding: 0;
    }

    .step-label {
        display: none;
    }

    .step-connector {
        width: 36px;
    }

    .step-dot {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .step-nav {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .step-nav-next, .step-nav-back {
        width: 100%;
        justify-content: center;
    }

    .step-nav-next {
        margin-left: 0;
    }
}

/* ============================================
   MASTER MOBILE OVERRIDE — MUST BE LAST
   Placed at the end of the file so it wins
   over ALL previous rules via CSS cascade.
   ============================================ */
@media (max-width: 768px) {
    /* Prevent ALL horizontal overflow */
    html, body { overflow-x: hidden !important; max-width: 100vw !important; }
    *, *::before, *::after { max-width: 100vw; }

    /* Single-column ALL grids — no exceptions */
    .donations-options,
    .campaign-grid,
    .pillars-grid,
    .program-cards,
    .program-grid,
    .impact-cards,
    .footer-content,
    .mission-intro,
    .ai-grid,
    .testimonials-grid,
    .trust-badges,
    .contact-grid,
    .news-grid,
    .team-grid,
    .corporate-value-grid,
    .volunteer-roles,
    .gallery-grid,
    .create-impact-split,
    .origin-layout,
    .whatwedo-grid,
    .whoweare-layout,
    .whoweare-stats,
    .comparison-table,
    .ground-level-stats {
        grid-template-columns: 1fr !important;
    }

    /* Impact bar — single column */
    .impact-bar-grid { flex-wrap: wrap !important; }
    .impact-bar-item { flex: 0 0 100% !important; }

    /* Footer — premium single column */
    footer { padding: 40px 20px 20px !important; overflow: hidden !important; }
    .footer-content { grid-template-columns: 1fr !important; gap: 28px !important; }
    .footer-section { padding: 0 !important; text-align: center !important; }
    .footer-section ul { list-style: none !important; padding: 0 !important; }
    .footer-section ul li { padding: 4px 0; }
    .footer-section img { margin: 0 auto !important; display: block; }
    .footer-bottom { flex-direction: column !important; gap: 12px; text-align: center; }
    .footer-right { justify-content: center !important; flex-direction: column; align-items: center; gap: 10px; }
    .footer-socials { justify-content: center !important; }

    /* Footer newsletter — stack input and button vertically */
    .footer-newsletter {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center;
        padding: 24px 20px !important;
    }
    .footer-newsletter-form {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0 !important;
    }
    .footer-newsletter-form input {
        border-radius: 10px 10px 0 0 !important;
        border-right: 1px solid rgba(255,255,255,0.12) !important;
        border-bottom: none !important;
        padding: 14px 16px !important;
        width: 100% !important;
    }
    .footer-newsletter-form button {
        border-radius: 0 0 10px 10px !important;
        padding: 14px 20px !important;
        width: 100% !important;
    }
    .footer-newsletter-text h4 { font-size: 1.05rem !important; }
    .footer-newsletter-text p { font-size: 0.82rem !important; }

    /* Section padding */
    section { padding: 50px 18px !important; }
    .container { padding: 0 18px !important; }
    .donations-landing { padding: 40px 18px !important; }

    /* Typography */
    section h2 { font-size: 1.5rem !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }
    section p { font-size: 0.92rem !important; line-height: 1.7 !important; }
    .donations-header h2 { font-size: 1.5rem !important; }
    .page-hero h1 { font-size: 1.6rem !important; }
    .page-hero p { font-size: 0.9rem !important; }
    .hero-slideshow h1 { font-size: 1.5rem !important; }
    .hero-slideshow p { font-size: 0.88rem !important; }

    /* Cards — generous padding, full readable text */
    .donation-card { padding: 28px 20px !important; }
    .donation-card h3 { font-size: 1.1rem !important; }
    .donation-card p { font-size: 0.88rem !important; line-height: 1.7 !important; }
    .donation-form-wrapper { padding: 20px !important; }
    .corporate-banner { padding: 24px 18px !important; }

    /* Campaign cards */
    .campaign-card { margin: 0 !important; }
    .campaign-card h3 { font-size: 1.1rem !important; }
    .campaign-card p { font-size: 0.85rem !important; }

    /* Pillar cards */
    .pillar-card { padding: 24px 20px !important; }
    .pillar-card h3 { font-size: 1rem !important; }
    .pillar-stat { font-size: 1.8rem !important; }

    /* CTA section */
    .cta-section { margin: 30px 14px !important; padding: 40px 20px !important; border-radius: 14px !important; }
    .cta-section h2 { font-size: 1.4rem !important; }
    .cta-section p { font-size: 0.88rem !important; }

    /* Kill decorative pseudo-elements that cause overflow */
    .cta-section::before,
    .donations-landing::before, .donations-landing::after,
    .ways-to-support::before, .ways-to-support::after,
    footer::before,
    .create-impact-section::before, .create-impact-section::after,
    .home-impact-bar::before, .home-impact-bar::after,
    .vision-scale-section::before, .vision-scale-section::after,
    .page-hero::before, .page-hero::after,
    .about-origin::before, .about-origin::after,
    .mission-stat::before {
        display: none !important;
    }

    /* Forms — touch-friendly */
    input, select, textarea { font-size: 16px !important; min-height: 44px; }

    /* Image sections */
    .create-impact-image { border-radius: 16px !important; }
    img { max-width: 100% !important; height: auto !important; }
}

@media (max-width: 480px) {
    /* Tighter spacing */
    section { padding: 36px 14px !important; }
    .container { padding: 0 14px !important; }
    footer { padding: 30px 14px 14px !important; }
    .donations-landing { padding: 30px 14px !important; }

    /* Smaller headings */
    section h2 { font-size: 1.2rem !important; }
    .donations-header h2 { font-size: 1.2rem !important; }
    .page-hero h1 { font-size: 1.25rem !important; }
    .hero-slideshow h1 { font-size: 1.15rem !important; }
    .hero-slideshow p { font-size: 0.82rem !important; }

    /* Navigation compact */
    nav { padding: 8px 12px !important; height: 48px !important; }
    .logo-text { font-size: 10px !important; padding-right: 6px !important; margin-right: 6px !important; }
    .logo-icon { width: 34px !important; height: 34px !important; }

    /* Cards compact */
    .donation-card { padding: 22px 16px !important; }
    .donation-card h3 { font-size: 0.95rem !important; }
    .donation-card p { font-size: 0.82rem !important; }
    .quick-amount-buttons { grid-template-columns: repeat(2, 1fr) !important; }

    /* Footer compact */
    .footer-content { gap: 20px !important; }
    .footer-section h4 { font-size: 0.85rem !important; }
    .footer-section a, .footer-section p, .footer-section li { font-size: 0.8rem !important; }
    .footer-newsletter { padding: 20px 16px !important; }
    .footer-newsletter-text h4 { font-size: 0.95rem !important; }

    /* Corporate */
    .corporate-banner { padding: 20px 14px !important; }
    .corporate-highlights { grid-template-columns: 1fr !important; }

    /* CTA */
    .cta-section { margin: 20px 10px !important; padding: 30px 16px !important; }
    .cta-section h2 { font-size: 1.15rem !important; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr !important; }

    /* Campaign */
    .campaign-card h3 { font-size: 0.95rem !important; word-wrap: break-word !important; }

    /* Force ALL remaining grids to single column on small phones */
    .ai-grid,
    .contact-grid,
    .testimonials-grid,
    .trust-badges,
    .values-grid,
    .team-grid,
    .news-grid,
    .stories-grid,
    .volunteer-roles,
    .support-methods-grid,
    .comparison-table,
    .partnership-benefits,
    .ground-level-stats,
    .wire-transfer-section,
    .mission-stats,
    .origin-layout,
    .whoweare-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Stats rows single column */
    .home-impact-bar .impact-stats,
    .impact-stats,
    .stat-row,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Two-column form rows to single */
    .form-row-equal,
    .form-row-two,
    .form-row-three,
    .vf-row,
    .vf-row-3 {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    /* Buttons stack on mobile */
    .btn-group,
    .cta-buttons,
    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100%;
    }
    .btn-group > *,
    .cta-buttons > *,
    .hero-buttons > * {
        width: 100% !important;
        text-align: center !important;
    }

    /* Select elements — constrain to container width */
    select { box-sizing: border-box !important; max-width: 100% !important; width: 100% !important; }

    /* Step progress — compact for 5-step wizards */
    .step-dot { width: 22px !important; height: 22px !important; font-size: 0.6rem !important; }
    .step-connector { width: 12px !important; margin: 0 3px !important; }
    .step-progress { padding: 0 !important; gap: 0 !important; margin-bottom: 28px !important; }

    /* Step nav buttons — readable at narrow widths */
    .step-nav-next, .step-nav-back { font-size: 0.82rem !important; padding: 12px 16px !important; }

    /* Floating chat / WhatsApp buttons — smaller so they don't cover content */
    .tc-toggle { width: 50px !important; height: 50px !important; bottom: 14px !important; right: 12px !important; }
    .tc-wa { width: 40px !important; height: 40px !important; bottom: 74px !important; right: 12px !important; }
    .tc-win { right: 8px !important; max-width: calc(100vw - 16px) !important; }
}
