@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* =========================================
   CSS CUSTOM PROPERTIES — Design Tokens
   ========================================= */
:root {
    /* Core Palette */
    --forest:       #1B4332;
    --forest-mid:   #2D6A4F;
    --forest-light: #40916C;
    --gold:         #D4A853;
    --gold-light:   #E8C070;
    --gold-pale:    #FBF0D9;
    --cream:        #FDF8F0;
    --slate:        #2C3E50;
    --slate-mid:    #4A5568;
    --slate-light:  #718096;

    /* UI Colors */
    --white:        #FFFFFF;
    --off-white:    #F9F7F4;
    --border:       rgba(0, 0, 0, 0.08);
    --border-gold:  rgba(212, 168, 83, 0.3);

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md:    0 8px 24px rgba(27, 67, 50, 0.12);
    --shadow-lg:    0 20px 50px rgba(27, 67, 50, 0.18);
    --shadow-gold:  0 8px 24px rgba(212, 168, 83, 0.25);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --section-pad:  100px;
    --container:    1200px;

    /* Transitions */
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --transition:   all 0.35s var(--ease);
    --transition-slow: all 0.6s var(--ease);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--slate);
}

ul { list-style: none; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad) 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title .section-label {
    justify-content: center;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--slate);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--slate-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 4px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--slate);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 168, 83, 0.4);
    color: var(--slate);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-forest {
    background: var(--forest);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-forest:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 14px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

#header.scrolled .logo {
    color: var(--forest);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

.logo-text span {
    color: var(--gold);
}

/* Nav */
nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

#header.scrolled nav ul li a {
    color: var(--slate-mid);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
}

#header.scrolled nav ul li a:hover,
#header.scrolled nav ul li a.active {
    color: var(--forest);
    background: rgba(27, 67, 50, 0.08);
}

.btn-donate-nav {
    background: var(--gold) !important;
    color: var(--slate) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    box-shadow: var(--shadow-gold);
}

.btn-donate-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.45) !important;
}

/* Mobile Menu */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    padding: 6px;
    z-index: 1001;
}

#header.scrolled .menu-btn {
    color: var(--forest);
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: var(--forest);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 18, 0.45) 0%,
        rgba(10, 25, 18, 0.65) 60%,
        rgba(10, 25, 18, 0.85) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
    color: var(--white);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.4);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-label i {
    font-size: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
    font-family: var(--font-heading);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slider Progress Bar */
.slide-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    z-index: 10;
    transition: width 5s linear;
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.5);
}

.slide-progress-bar.animating {
    width: 100%;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
}

.dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 8px;
    border-color: var(--gold);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.control-btn {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    font-size: 0.9rem;
}

.control-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

/* Wave Bottom */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.wave-bottom svg {
    width: calc(100% + 1.3px);
    height: 80px;
    display: block;
}

.wave-bottom .shape-fill {
    fill: var(--white);
}

/* =========================================
   IMPACT STATS STRIP
   ========================================= */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after { display: none; }

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--gold);
}

.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-suffix {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 520px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--slate);
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-badge .badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .badge-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.8;
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 24px;
    color: var(--slate);
}

.about-content h2 em {
    font-style: italic;
    color: var(--forest);
}

.about-content p {
    color: var(--slate-light);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-quote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
}

.about-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--slate);
    margin: 0;
    line-height: 1.65;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--slate-mid);
}

.mission-point i {
    width: 36px;
    height: 36px;
    background: rgba(27, 67, 50, 0.1);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* =========================================
   PROGRAMS SECTION
   ========================================= */
.programs-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

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

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.program-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.program-card:hover .program-card-image img {
    transform: scale(1.06);
}

.program-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(27, 67, 50, 0.7) 100%);
}

.program-card-icon {
    position: absolute;
    bottom: 20px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.program-card-body {
    padding: 28px;
}

.program-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--slate);
}

.program-card-body p {
    color: var(--slate-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

.program-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.program-card-stat i {
    color: var(--gold);
}

/* =========================================
   FOUNDERS SECTION
   ========================================= */
.founders-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.founder-card-top {
    position: relative;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    padding: 40px 28px 28px;
    text-align: center;
}

.founder-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--slate);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.founder-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    z-index: 0;
}

.founder-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
}

.founder-card-top h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.founder-card-body {
    padding: 24px 28px 28px;
}

.founder-card-body p {
    color: var(--slate-light);
    font-size: 0.98rem;
    line-height: 1.75;
}

.founder-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-light);
}

.founder-location i {
    font-size: 0.9rem;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--forest);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 340px;
}

.gallery-item:nth-child(2) {
    height: 340px;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    height: 220px;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 25, 18, 0.85) 0%,
        rgba(10, 25, 18, 0.3) 50%,
        rgba(10, 25, 18, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

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

.gallery-overlay-content {
    color: var(--white);
    transform: translateY(10px);
    transition: transform 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay-content span {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 500;
}

.gallery-overlay-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-icon {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.open {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    animation: scaleIn 0.35s var(--ease);
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.lightbox-caption {
    text-align: center;
    margin-top: 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

/* =========================================
   DONATE SECTION
   ========================================= */
.donate-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.donate-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 72px;
}

.donate-intro-text .section-label { justify-content: flex-start; }

.donate-intro-text h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.donate-intro-text p {
    color: var(--slate-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.impact-equivalence {
    background: var(--cream);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-equivalence h4 {
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.impact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.impact-row:hover {
    border-color: var(--border-gold);
    background: var(--gold-pale);
}

.impact-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 64px;
}

.impact-desc {
    font-size: 0.9rem;
    color: var(--slate-mid);
    line-height: 1.4;
}

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

.donate-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.donate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--forest), var(--forest-light));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.donate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.donate-card:hover::before {
    transform: scaleX(1);
}

.donate-card-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.1), rgba(64, 145, 108, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--forest);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.donate-card:hover .donate-card-icon {
    background: var(--forest);
    color: var(--white);
}

.donate-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--slate);
}

.donate-card p {
    color: var(--slate-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* =========================================
   QUOTE BANNER
   ========================================= */
.quote-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-banner::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}

.quote-banner blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.quote-banner cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.contact-info .section-label { justify-content: flex-start; }

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--slate-light);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.method-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, var(--forest), var(--forest-mid));
    transition: width 0.4s var(--ease);
    z-index: 0;
}

.method-card:hover {
    border-color: var(--forest);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.method-card:hover::before {
    width: 5px;
}

.method-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(27, 67, 50, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--forest);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.method-card:hover .method-card-icon {
    background: rgba(27, 67, 50, 0.15);
}

.method-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.method-text span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-light);
    margin-bottom: 2px;
}

.method-text strong {
    display: block;
    font-size: 1rem;
    color: var(--slate);
    font-weight: 600;
}

.method-card .arrow {
    color: var(--border);
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.method-card:hover .arrow {
    color: var(--forest);
    transform: translateX(4px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-heading {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--slate);
}

.form-subheading {
    color: var(--slate-light);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--slate-mid);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group .input-wrapper {
    position: relative;
}

.form-group .input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    font-size: 0.9rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-group.textarea-group .input-wrapper i {
    top: 18px;
    transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.08);
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--forest);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--forest), var(--forest-mid));
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--forest-mid), var(--forest-light));
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#form-response {
    margin-top: 16px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 24px;
    border-radius: 8px;
    padding: 0 12px;
}

#form-response.success {
    color: var(--forest);
    background: rgba(27, 67, 50, 0.08);
    padding: 10px 16px;
}

#form-response.error {
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
    padding: 10px 16px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #0C1F14;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 60px;
    margin-bottom: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
}

.footer-logo .logo-icon {
    background: var(--gold);
}

.footer-col > p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--slate);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-col ul li a::before {
    content: '→';
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter {
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 14px;
    padding: 20px;
}

.footer-newsletter p {
    font-size: 0.88rem;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-input-group input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

.newsletter-input-group button {
    padding: 10px 16px;
    background: var(--gold);
    color: var(--slate);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.newsletter-input-group button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: var(--gold-light);
}

/* =========================================
   MODALS
   ========================================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 15, 10, 0.85);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 24px;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    overflow: hidden;
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin: auto;
}

@keyframes modalScale {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, var(--forest), var(--forest-mid));
    padding: 36px 32px 28px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.modal-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 168, 83, 0.2);
    border: 2px solid rgba(212, 168, 83, 0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0 auto 16px;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    background: rgba(255,255,255,0.25);
}

.modal-body {
    padding: 32px;
}

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

.details-box {
    background: var(--cream);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 20px 22px;
    margin: 20px 0;
}

.details-box p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--slate-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-box p:last-child { margin-bottom: 0; }

.details-box p strong {
    color: var(--forest);
    min-width: 130px;
    display: inline-block;
}

.details-box p i {
    color: var(--gold);
    width: 16px;
}

.note {
    font-size: 0.85rem;
    color: var(--slate-light);
    font-style: italic;
    background: rgba(212, 168, 83, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    border-left: 3px solid var(--gold);
    margin-top: 8px;
}

/* Tier Grid */
.tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.tier-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.tier-card:hover, .tier-card.selected {
    border-color: var(--forest);
    background: rgba(27, 67, 50, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.tier-card h5 {
    font-size: 0.88rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--slate-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tier-card .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 12px;
}

.tier-card .price span {
    font-size: 0.9rem;
    color: var(--slate-light);
    font-weight: 400;
    font-family: var(--font-body);
}

.btn-sponsor {
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 9px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-sponsor:hover {
    background: var(--forest-mid);
}

.secure-info {
    background: var(--off-white);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.secure-info p {
    font-size: 0.88rem;
    color: var(--slate-light);
    margin-bottom: 8px;
}

.secure-info .secure-title {
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 1.8rem;
    color: var(--slate-light);
    margin-top: 10px;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
    .about-grid { gap: 48px; }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .founders-grid { grid-template-columns: repeat(2, 1fr); }
    .donate-intro { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    /* Mobile Nav */
    .menu-btn { display: block; }

    header nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 90vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: 0.45s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 1000;
        gap: 4px;
        border-radius: 0;
    }

    header nav ul.active { right: 0; }

    header nav ul li { width: 100%; }

    header nav ul li a {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--slate) !important;
        padding: 12px 16px;
        border-radius: 10px;
        display: block;
    }

    header nav ul li a:hover,
    header nav ul li a.active {
        color: var(--forest) !important;
        background: rgba(27, 67, 50, 0.08) !important;
    }

    .btn-donate-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero h1 { font-size: 2.3rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .btn { width: 100%; max-width: 280px; }

    /* Sections */
    .about-grid,
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 0; bottom: -20px; }
    .about-image-wrapper img { height: 340px; }

    .programs-grid { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; height: 250px; }
    .gallery-item:nth-child(2) { height: 200px; }
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) { height: 180px; }

    .donate-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding-bottom: 40px; }
    .tier-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .section-title h2 { font-size: 1.75rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item { height: 220px !important; grid-column: span 1 !important; }
    .modal-body { padding: 20px 16px; }
}
