﻿:root {
    --navy: #1a2f5e;
    --navy-dark: #0f1d3a;
    --saffron: #f5901e;
    --saffron-light: #fdb96e;
    --green: #2e8b57;
    --green-light: #4caf7d;
    --cream: #fdf8f2;
    --white: #ffffff;
    --gray: #f0ede8;
    --text: #2c2c2c;
    --text-muted: #666;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(26,47,94,0.12);
    --shadow-lg: 0 20px 60px rgba(26,47,94,0.18);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(245,144,30,0.15);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 20px rgba(26,47,94,0.08);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--saffron));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(245,144,30,0.3);
}

.nav-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.2;
}

    .nav-name span {
        color: var(--saffron);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        font-size: 0.88rem;
        padding: 6px 14px;
        border-radius: 8px;
        transition: all 0.2s;
    }

        .nav-links a:hover {
            color: var(--navy);
            background: rgba(26,47,94,0.07);
        }

.nav-donate {
    background: var(--saffron) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(245,144,30,0.35);
}

    .nav-donate:hover {
        background: #e07d10 !important;
        transform: translateY(-1px);
    }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: 0.3s;
    }

/* ── HERO ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4d8c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-orb1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,144,30,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-orb2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46,139,87,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,144,30,0.15);
    border: 1px solid rgba(245,144,30,0.4);
    color: var(--saffron-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

    .hero h1 em {
        font-style: normal;
        color: var(--saffron);
    }

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--saffron);
    color: white;
    box-shadow: 0 6px 20px rgba(245,144,30,0.4);
}

    .btn-primary:hover {
        background: #e07d10;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(245,144,30,0.5);
    }

.btn-outline {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.18);
        transform: translateY(-2px);
    }

.btn-green {
    background: var(--green);
    color: white;
    box-shadow: 0 6px 20px rgba(46,139,87,0.4);
}

    .btn-green:hover {
        background: #26734a;
        transform: translateY(-2px);
    }

.btn-navy {
    background: var(--navy);
    color: white;
    box-shadow: 0 6px 20px rgba(26,47,94,0.3);
}

    .btn-navy:hover {
        background: var(--navy-dark);
        transform: translateY(-2px);
    }

.hero-stats {
    position: absolute;
    right: 5%;
    bottom: 60px;
    display: flex;
    gap: 20px;
    animation: fadeUp 0.8s 0.4s ease both;
    z-index: 2;
}

.hero-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--saffron);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    font-weight: 500;
}

/* ── SECTION COMMONS ─────────────────────── */
section {
    padding: 90px 5%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

    .section-tag::before {
        content: '';
        width: 28px;
        height: 3px;
        background: var(--saffron);
        border-radius: 2px;
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.text-center {
    text-align: center;
}

    .text-center .section-tag {
        justify-content: center;
    }

        .text-center .section-tag::before {
            display: none;
        }

    .text-center .section-subtitle {
        margin: 0 auto;
    }

/* ── ABOUT STRIP ─────────────────────────── */
.about-strip {
    background: white;
    padding: 80px 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-img-block {
    background: linear-gradient(135deg, var(--navy) 0%, #2563b8 100%);
    border-radius: 24px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-img-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    padding: 40px;
}

.about-img-emoji {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.about-img-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-img-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--saffron);
    color: white;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(245,144,30,0.4);
    text-align: center;
    z-index: 2;
}

    .about-badge-float strong {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .about-badge-float span {
        font-size: 0.78rem;
        opacity: 0.9;
    }

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gray);
    padding: 16px;
    border-radius: 12px;
}

.pillar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pillar-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.pillar-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── PROGRAMS ────────────────────────────── */
.programs-section {
    background: var(--cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

    .program-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.program-card-header {
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
}

.program-card:nth-child(1) .program-card-header {
    background: linear-gradient(135deg, #1a2f5e, #2563b8);
}

.program-card:nth-child(2) .program-card-header {
    background: linear-gradient(135deg, #2e8b57, #3dab73);
}

.program-card:nth-child(3) .program-card-header {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.program-card:nth-child(4) .program-card-header {
    background: linear-gradient(135deg, #7b2d8b, #9b59b6);
}

.program-header-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 7rem;
    opacity: 0.12;
    pointer-events: none;
    line-height: 1;
}

.program-label {
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.program-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.program-card-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    line-height: 1.6;
}

.program-card-body {
    padding: 28px 32px;
}

.program-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .program-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--text);
    }

        .program-features li::before {
            content: '✓';
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, var(--saffron), #f5b942);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
        }

.program-card-footer {
    padding: 0 32px 28px;
    display: flex;
    gap: 10px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 10px 18px;
    background: var(--gray);
    border-radius: 10px;
    transition: all 0.2s;
}

    .program-link:hover {
        background: var(--navy);
        color: white;
    }

/* ── IMPACT ──────────────────────────────── */
.impact-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden;
}

    .impact-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.impact-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
}

    .impact-card:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-4px);
    }

.impact-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.impact-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--saffron);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ── EVENTS ──────────────────────────────── */
.events-section {
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.event-card {
    border: 1.5px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

    .event-card:hover {
        border-color: var(--saffron);
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.event-header {
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.event-date-box {
    background: var(--navy);
    color: white;
    border-radius: 12px;
    text-align: center;
    padding: 10px 14px;
    flex-shrink: 0;
    min-width: 56px;
}

    .event-date-box .month {
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.8;
    }

    .event-date-box .day {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 900;
        line-height: 1;
    }

.event-info h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.event-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.event-tag {
    display: inline-block;
    margin: 0 28px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-wellness {
    background: #e8f5f0;
    color: var(--green);
}

.tag-education {
    background: #e8eeff;
    color: var(--navy);
}

.tag-culture {
    background: #fff3e5;
    color: var(--saffron);
}

.tag-senior {
    background: #fce8ff;
    color: #7b2d8b;
}

.event-footer {
    padding: 16px 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
}

    .event-footer span {
        font-size: 0.82rem;
        color: var(--text-muted);
    }

.event-reg-btn {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .event-reg-btn:hover {
        background: #e07d10;
    }

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-section {
    background: var(--gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
    }

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--saffron);
    line-height: 0.6;
    margin-bottom: 16px;
    display: block;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, var(--navy), #2563b8);
}

.av2 {
    background: linear-gradient(135deg, var(--green), #3dab73);
}

.av3 {
    background: linear-gradient(135deg, var(--saffron), #f5b942);
}

.av4 {
    background: linear-gradient(135deg, #7b2d8b, #9b59b6);
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── VOLUNTEER ───────────────────────────── */
.volunteer-section {
    background: white;
}

.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto 0;
}

.volunteer-opportunities {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vol-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray);
    padding: 20px;
    border-radius: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

    .vol-item:hover {
        background: var(--navy);
    }

        .vol-item:hover .vol-label {
            color: white;
        }

        .vol-item:hover .vol-desc {
            color: rgba(255,255,255,0.7);
        }

.vol-icon {
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.vol-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.vol-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.volunteer-cta-box {
    background: linear-gradient(135deg, var(--navy), #2563b8);
    border-radius: 24px;
    padding: 48px 40px;
    color: white;
    text-align: center;
}

    .volunteer-cta-box .caveat {
        font-family: 'Caveat', cursive;
        font-size: 1.4rem;
        color: var(--saffron-light);
        margin-bottom: 12px;
        display: block;
    }

    .volunteer-cta-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .volunteer-cta-box p {
        opacity: 0.8;
        line-height: 1.7;
        margin-bottom: 32px;
        font-size: 0.95rem;
    }

/* ── DONATE ──────────────────────────────── */
.donate-section {
    background: linear-gradient(135deg, #f5f0e8, #fff3e5);
    border-top: 4px solid var(--saffron);
}

.donate-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.donate-header {
    text-align: center;
    margin-bottom: 50px;
}

.donate-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.donate-tier {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

    .donate-tier:hover, .donate-tier.active {
        border-color: var(--saffron);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(245,144,30,0.2);
    }

.donate-tier-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--saffron);
}

.donate-tier-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 6px 0;
}

.donate-tier-impact {
    font-size: 0.8rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.4;
}

.donate-cta {
    background: var(--navy);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

    .donate-cta p {
        opacity: 0.8;
        margin-bottom: 24px;
    }

.donate-methods {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.donate-btn-main {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(245,144,30,0.4);
}

    .donate-btn-main:hover {
        background: #e07d10;
        transform: translateY(-2px);
    }

.donate-btn-alt {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .donate-btn-alt:hover {
        background: rgba(255,255,255,0.18);
    }

.nonprofit-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

    .nonprofit-note strong {
        color: var(--green);
    }

/* ── NEWSLETTER ──────────────────────────── */
.newsletter-section {
    background: linear-gradient(135deg, var(--green), #26734a);
    padding: 70px 5%;
    text-align: center;
    color: white;
}

    .newsletter-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        margin-bottom: 14px;
    }

    .newsletter-section p {
        opacity: 0.85;
        margin-bottom: 32px;
        font-size: 1.05rem;
    }

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

    .newsletter-form input {
        flex: 1;
        padding: 14px 20px;
        border-radius: 12px;
        border: none;
        font-size: 0.95rem;
        outline: none;
    }

    .newsletter-form button {
        background: var(--saffron);
        color: white;
        border: none;
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
    }

        .newsletter-form button:hover {
            background: #e07d10;
        }

/* ── BLOG ────────────────────────────────── */
.blog-section {
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.blog-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.blog-img-1 {
    background: linear-gradient(135deg, #1a2f5e22, #2563b844);
}

.blog-img-2 {
    background: linear-gradient(135deg, #2e8b5722, #3dab7344);
}

.blog-img-3 {
    background: linear-gradient(135deg, #f5901e22, #f5b94244);
}

.blog-img-4 {
    background: linear-gradient(135deg, #7b2d8b22, #9b59b644);
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.blog-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-read {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

/* ── CONTACT ─────────────────────────────── */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    max-width: 1100px;
    margin: 50px auto 0;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
}

    .social-link:hover {
        background: var(--navy);
    }

.contact-form {
    background: var(--gray);
    border-radius: 24px;
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid #ddd;
        border-radius: 10px;
        font-size: 0.9rem;
        font-family: 'DM Sans', sans-serif;
        background: white;
        outline: none;
        transition: border-color 0.2s;
        color: var(--text);
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--saffron);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

.form-submit {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(245,144,30,0.35);
}

    .form-submit:hover {
        background: #e07d10;
        transform: translateY(-2px);
    }

/* ── FOOTER ──────────────────────────────── */
footer {
    background: var(--navy-dark);
    color: white;
    padding: 70px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--saffron), #f5b942);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-501 {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    display: inline-block;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: var(--saffron-light);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul li a {
        text-decoration: none;
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
        transition: color 0.2s;
    }

        .footer-col ul li a:hover {
            color: var(--saffron-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bottom p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.45);
    }

/* ── PAGE SECTIONS (non-home) ────────────── */
.page-section {
    display: none;
}

    .page-section.active {
        display: block;
    }

#home {
    display: block;
}

/* ── ABOUT PAGE ──────────────────────────── */
.about-page-hero {
    background: linear-gradient(135deg, var(--navy), #2563b8);
    padding: 120px 5% 80px;
    color: white;
    text-align: center;
}

    .about-page-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        margin-bottom: 20px;
    }

    .about-page-hero p {
        opacity: 0.8;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
        font-size: 1.05rem;
    }

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
}

.mv-card {
    border-radius: 24px;
    padding: 40px;
}

.mv-card-mission {
    background: linear-gradient(135deg, var(--navy), #2563b8);
    color: white;
}

.mv-card-vision {
    background: linear-gradient(135deg, var(--saffron), #f5b942);
    color: white;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card p {
    opacity: 0.9;
    line-height: 1.75;
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s;
}

    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.value-card h4 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── PROGRAMS PAGE ───────────────────────── */
.program-detail {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.program-detail-header {
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.pd-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.pd-header-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.pd-header-text .pd-badge {
    display: inline-block;
    background: var(--saffron);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.pd-header-text p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.program-detail-body {
    padding: 0 50px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pd-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .pd-feature-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-size: 0.92rem;
        line-height: 1.5;
    }

        .pd-feature-list li::before {
            content: '🌟';
            flex-shrink: 0;
        }

.pd-sub-programs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-sub {
    background: var(--gray);
    border-radius: 14px;
    padding: 18px 20px;
}

    .pd-sub h5 {
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .pd-sub p {
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.5;
    }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── MOBILE ──────────────────────────────── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        gap: 4px;
        box-shadow: var(--shadow);
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 100px 5% 60px;
    }

    .hero-stats {
        position: static;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .hero-stat {
        flex: 1;
        min-width: 120px;
    }

    .about-grid, .volunteer-grid, .contact-grid, .mission-vision {
        grid-template-columns: 1fr;
    }

    .about-badge-float {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .program-detail-header {
        flex-direction: column;
        gap: 20px;
        padding: 32px;
    }

    .program-detail-body {
        grid-template-columns: 1fr;
        padding: 0 32px 32px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-tiers {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ── ACTIVE NAV ──────────────────────────── */
.nav-links a.active {
    color: var(--saffron);
    background: rgba(245,144,30,0.08);
}

.update-banner {
    background: #eff6ff;
    border-left: 5px solid #2563eb;
    color: #1e3a5f;
    padding: 14px 20px;
    text-align: center;
}

    .update-banner span {
        font-weight: 700;
        display: block;
        margin-bottom: 4px;
    }
