﻿/* ===== CSS VARIABLES ===== */
      :root {
      /* Logo palette */
      --green:      #2E7D32;
      --green-l:    #43A047;
      --green-d:    #1B5E20;
      --red:        #C62828;
      --red-l:      #EF5350;
      --blue:       #1565C0;
      --blue-l:     #1E88E5;
      --yellow:     #F9A825;
      --yellow-l:   #FFD54F;
      --purple:     #8E24AA;
      /* aliases used throughout original code */
      --teal:       #2E7D32;
      --teal-light: #43A047;
      --teal-dark:  #1B5E20;
      --gold:       #F9A825;
      --gold-light: #FFD54F;
      --cream:      #FDF8F0;
      --charcoal:   #1A2B1A;
      --slate:      #4A6045;
      --muted:      #7A9275;
      --white:      #ffffff;
      --shadow:     rgba(46,125,50,0.18);
      --radius:     14px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--charcoal);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

    a { text-decoration: none; color: inherit; }

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

    section { scroll-margin-top: 80px; }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    /* ===== SCROLL PROGRESS ===== */
    #progress-bar {
      position: fixed; top: 0; left: 0; height: 3px;
      width: 0%; background: linear-gradient(90deg,var(--red),var(--yellow),var(--green),var(--blue));
      z-index: 9999; transition: width 0.1s linear;
    }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 3px solid transparent; border-image: linear-gradient(90deg,var(--green),var(--yellow),var(--red),var(--blue)) 1;
      transition: box-shadow var(--transition);
    }
    #navbar.scrolled { box-shadow: 0 4px 28px var(--shadow); }

    .nav-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }

    /* Logo */
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Playfair Display', serif;
    }
    .logo-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 18px; font-weight: 700;
      flex-shrink: 0;
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text .abbr { font-size: 1.2rem; font-weight: 700; color: var(--teal); letter-spacing: 1px; }
    .logo-text .full { font-size: 0.58rem; color: var(--slate); font-family: 'DM Sans', sans-serif; font-weight: 400; max-width: 180px; }

    /* Nav links */
    .nav-links {
      display: flex; align-items: center; gap: 6px;
      list-style: none;
    }
    .nav-links a {
      padding: 8px 14px;
      font-size: 0.88rem; font-weight: 500; color: var(--slate);
      border-radius: 8px; transition: all var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
      height: 2px; background: var(--teal); border-radius: 2px;
      transition: all var(--transition);
    }
    .nav-links a:hover { color: var(--teal); background: rgba(10,126,110,0.07); }
    .nav-links a:hover::after { left: 14px; right: 14px; }

    /* Lang + CTA */
    .nav-right { display: flex; align-items: center; gap: 12px; }

    .lang-btn {
      background: var(--cream); border: 1.5px solid rgba(10,126,110,0.2);
      color: var(--teal); font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
      padding: 7px 14px; border-radius: 50px; cursor: pointer;
      transition: all var(--transition);
    }
    .lang-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

    .btn-donate-nav {
      background: var(--red); color: var(--white);
      padding: 9px 22px; border-radius: 50px;
      font-size: 0.85rem; font-weight: 700;
      transition: all var(--transition); border: none; cursor: pointer;
      box-shadow: 0 4px 14px rgba(198,40,40,0.35);
      display:inline-flex; align-items:center; gap:6px;
    }
    .btn-donate-nav:hover { background: var(--red-l); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(198,40,40,0.5); }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--charcoal); border-radius: 2px;
      transition: all var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .mobile-menu {
      display: none; position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--white); border-bottom: 2px solid var(--teal);
      padding: 20px 24px 28px; z-index: 999;
      flex-direction: column; gap: 6px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      padding: 12px 16px; border-radius: 10px;
      color: var(--slate); font-weight: 500;
      transition: all var(--transition);
    }
    .mobile-menu a:hover { background: var(--cream); color: var(--teal); }
    .mobile-menu .mobile-actions { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

    /* ===== HERO ===== */
    #hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden; padding-top: 72px;
    }

    /* Layered background with gradient replacing the image placeholder */
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(160deg,
          rgba(27,94,32,0.93) 0%,
          rgba(46,125,50,0.82) 45%,
          rgba(21,101,192,0.72) 100%),
        url('https://images.unsplash.com/photo-1594708767771-a5e9d3c6e6b0?w=1600&q=80') center/cover no-repeat;
    }

    /* Decorative shape */
    .hero-bg::after {
      content: '';
      position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
      background: var(--white);
      clip-path: ellipse(55% 100% at 50% 100%);
    }

    /* Floating dots pattern */
    .hero-pattern {
      position: absolute; inset: 0; z-index: 1; opacity: 0.06;
      background-image: radial-gradient(circle, #fff 1px, transparent 1px);
      background-size: 36px 36px;
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 780px; padding: 80px 24px 140px;
      margin: 0 auto;
      text-align: center;
      animation: fadeUp 0.9s ease both;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
      backdrop-filter: blur(8px);
    }

    .hero-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      color: var(--white); font-weight: 700;
      margin-bottom: 22px; line-height: 1.18;
      text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    }
    .hero-title span { color: var(--gold-light); }

    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.18rem);
      color: rgba(255,255,255,0.85); max-width: 580px;
      margin: 0 auto 40px; font-weight: 300;
    }

    .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--white);
      padding: 15px 32px; border-radius: 50px;
      font-size: 0.95rem; font-weight: 600;
      transition: all var(--transition); border: none; cursor: pointer;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,160,23,0.5); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 2px solid rgba(255,255,255,0.5);
      color: var(--white);
      padding: 13px 30px; border-radius: 50px;
      font-size: 0.95rem; font-weight: 600;
      transition: all var(--transition); cursor: pointer;
      backdrop-filter: blur(4px);
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); border-color: white; }

    .hero-stats {
      position: relative; z-index: 2;
      display: flex; justify-content: center; gap: 0;
      max-width: 680px; margin: -56px auto 0;
    }
    .h-stat {
      flex: 1; text-align: center; padding: 24px 16px;
      background: var(--white); border: 1px solid rgba(10,126,110,0.1);
      box-shadow: 0 8px 30px var(--shadow);
      transition: transform var(--transition);
    }
    .h-stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
    .h-stat:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
    .h-stat:hover { transform: translateY(-4px); }
    .h-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--teal); }
    .h-stat .lbl { font-size: 0.75rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

    /* ===== SECTION COMMONS ===== */
    .section-pad { padding: 96px 0; }
    .section-pad-sm { padding: 72px 0; }

    .section-header { text-align: center; margin-bottom: 60px; }
    .section-tag {
      display: inline-block;
      background: rgba(10,126,110,0.08); color: var(--teal);
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--charcoal); font-weight: 700;
    }
    .section-title span { color: var(--teal); }
    .section-sub {
      margin: 14px auto 0; max-width: 560px;
      color: var(--slate); font-size: 1.02rem; font-weight: 300;
    }
    .divider {
      width: 56px; height: 4px; border-radius: 4px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      margin: 16px auto 0;
    }

    /* ===== ABOUT ===== */
    #about { background: var(--cream); }

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

    .about-visual {
      position: relative; border-radius: 20px; overflow: hidden;
    }
    .about-img-wrap {
      width: 100%; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      display: flex; align-items: center; justify-content: center;
    }
    .about-img-placeholder {
      font-size: 6rem; opacity: 0.3;
      filter: grayscale(1);
    }
    .about-badge-float {
      position: absolute; bottom: 28px; left: -24px;
      background: var(--white); border-radius: var(--radius);
      padding: 16px 20px; box-shadow: 0 12px 36px var(--shadow);
      display: flex; align-items: center; gap: 14px;
    }
    .ab-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(10,126,110,0.1); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.2rem; }
    .ab-text .ab-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--teal); }
    .ab-text .ab-lbl { font-size: 0.72rem; color: var(--muted); font-weight: 500; }

    .about-content { display: flex; flex-direction: column; gap: 32px; }

    .about-text { color: var(--slate); font-size: 1.03rem; font-weight: 300; line-height: 1.8; }

    .mvv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
    .mvv-card {
      background: var(--white); border-radius: 12px;
      padding: 18px; border: 1px solid rgba(10,126,110,0.1);
      transition: all var(--transition);
    }
    .mvv-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px var(--shadow); }
    .mvv-card .mvv-icon { font-size: 1.4rem; color: var(--teal); margin-bottom: 8px; }
    .mvv-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); font-family: 'DM Sans', sans-serif; margin-bottom: 6px; }
    .mvv-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

    /* ===== PROGRAMS ===== */
    #programs { background: var(--white); }

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

    .prog-card {
      background: var(--white); border: 1px solid rgba(10,126,110,0.1);
      border-radius: 18px; padding: 32px 24px;
      transition: all var(--transition); position: relative; overflow: hidden;
    }
    .prog-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      transform: scaleX(0); transform-origin: left;
      transition: transform var(--transition);
    }
    .prog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px var(--shadow); }
    .prog-card:hover::before { transform: scaleX(1); }

    .prog-icon-wrap {
      width: 60px; height: 60px; border-radius: 14px;
      background: rgba(10,126,110,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--teal); margin-bottom: 20px;
      transition: all var(--transition);
    }
    .prog-card:hover .prog-icon-wrap { background: var(--teal); color: var(--white); }

    .prog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
    .prog-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.65; }

    .prog-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 18px; font-size: 0.82rem; font-weight: 600;
      color: var(--teal); transition: gap var(--transition);
    }
    .prog-link:hover { gap: 10px; }

    /* ===== IMPACT ===== */
    #impact {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #0d9e87 100%);
      position: relative; overflow: hidden;
    }
    #::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .impact-inner { position: relative; z-index: 1; text-align: center; }
    .impact-inner .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); }
    .impact-inner .section-title { color: var(--white); }
    .impact-inner .section-sub { color: rgba(255,255,255,0.75); }
    .impact-inner .divider { background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,0.4)); }

    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px; margin-top: 56px;
    }
    .stat-card {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 18px; padding: 36px 20px;
      backdrop-filter: blur(8px); text-align: center;
      transition: all var(--transition);
    }
    .stat-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-6px); }

    .stat-icon { font-size: 2rem; color: var(--gold-light); margin-bottom: 16px; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 700; color: var(--white);
      line-height: 1; margin-bottom: 8px;
    }
    .stat-plus { color: var(--gold-light); }
    .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 400; }

    /* ===== GET INVOLVED ===== */
    #involve { background: var(--cream); }

    .involve-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .involve-card {
      background: var(--white); border-radius: 18px;
      padding: 40px 30px; text-align: center;
      border: 1px solid rgba(10,126,110,0.1);
      transition: all var(--transition); position: relative; overflow: hidden;
    }
    .involve-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px var(--shadow); }

    .inv-icon-bg {
      width: 70px; height: 70px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin: 0 auto 22px;
      transition: all var(--transition);
    }
    .inv-v { background: rgba(10,126,110,0.08); color: var(--teal); }
    .inv-d { background: rgba(212,160,23,0.1); color: var(--gold); }
    .inv-p { background: rgba(10,126,110,0.08); color: var(--teal-light); }

    .involve-card:hover .inv-icon-bg { transform: scale(1.1) rotate(-5deg); }

    .involve-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
    .involve-card p { font-size: 0.9rem; color: var(--slate); margin-bottom: 24px; line-height: 1.65; }

    .btn-inv {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 26px; border-radius: 50px;
      font-size: 0.88rem; font-weight: 600; transition: all var(--transition);
      border: 2px solid; cursor: pointer;
    }
    .btn-inv-teal { border-color: var(--teal); color: var(--teal); background: transparent; }
    .btn-inv-teal:hover { background: var(--teal); color: var(--white); }
    .btn-inv-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
    .btn-inv-gold:hover { background: var(--gold); color: var(--white); }

    /* ===== CONTACT ===== */
    #contact { background: var(--white); }

    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
    }

    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .contact-info h3 { font-size: 1.6rem; color: var(--charcoal); }
    .contact-info p { color: var(--slate); font-size: 0.97rem; line-height: 1.7; }

    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .c-icon {
      width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
      background: rgba(10,126,110,0.08); color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .c-text .c-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
    .c-text .c-value { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; margin-top: 2px; }

    /* Contact Form */
    .contact-form {
      background: var(--cream); border-radius: 20px;
      padding: 40px; border: 1px solid rgba(10,126,110,0.1);
    }
    .contact-form h3 { font-size: 1.4rem; margin-bottom: 28px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
    .form-group label {
      font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 13px 16px; border-radius: 10px;
      border: 1.5px solid rgba(10,126,110,0.15);
      background: var(--white); font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem; color: var(--charcoal);
      transition: all var(--transition); outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,126,110,0.1); }
    .form-group textarea { resize: vertical; min-height: 130px; }

    .btn-submit {
      width: 100%; padding: 15px; border-radius: 50px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      color: var(--white); font-size: 1rem; font-weight: 600;
      border: none; cursor: pointer; transition: all var(--transition);
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--shadow); }

    /* Success message */
    .form-success {
      display: none; background: rgba(10,126,110,0.08);
      border: 1px solid rgba(10,126,110,0.2); border-radius: 10px;
      padding: 16px; text-align: center; color: var(--teal);
      font-weight: 500; margin-top: 12px;
    }
    .form-success.show { display: block; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--charcoal); color: rgba(255,255,255,0.7);
    }
    .footer-top {
      padding: 64px 0 48px;
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand .logo-text .abbr { color: var(--gold-light); }
    .footer-brand .logo-text .full { color: rgba(255,255,255,0.5); }
    .footer-brand .logo-icon { background: rgba(255,255,255,0.1); }
    .footer-desc {
      margin-top: 16px; font-size: 0.88rem; line-height: 1.7;
      color: rgba(255,255,255,0.55);
    }

    .social-links { display: flex; gap: 10px; margin-top: 20px; }
    .social-link {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; transition: all var(--transition);
    }
    .social-link:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }

    .footer-col h4 {
      font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
      font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
      color: rgba(255,255,255,0.9); margin-bottom: 18px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.88rem; color: rgba(255,255,255,0.55);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--gold-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0; display: flex;
      justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .footer-bottom a { color: var(--gold-light); }

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

    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .programs-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .about-visual { order: -1; max-width: 400px; margin: 0 auto; }
      .mvv-grid { grid-template-columns: 1fr 1fr; }
      .involve-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-right .btn-donate-nav { display: none; }
      .hamburger { display: flex; }
      .programs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; margin: 24px 24px 0; }
      .h-stat:first-child, .h-stat:last-child { border-radius: 0; }
      .h-stat:first-child { border-radius: var(--radius) var(--radius) 0 0; }
      .h-stat:last-child { border-radius: 0 0 var(--radius) var(--radius); }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 1.9rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .mvv-grid { grid-template-columns: 1fr; }
      .contact-form { padding: 28px 20px; }
    }

    /* ===== HIDDEN LANG STRINGS ===== */
    [data-lang="en"] { display: none; }
    body.lang-en [data-lang="en"] { display: inherit; }
    body.lang-en [data-lang="fr"] { display: none; }
  
    /* ── ACTIVITIES sub-section (inside Impact) ── */
    .activities-wrap { margin-top: 72px; position: relative; z-index: 1; }
    .activities-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem,2.5vw,1.9rem);
      color: var(--white); text-align: center; margin-bottom: 10px;
    }
    .act-divider { width:56px;height:3px;border-radius:3px;background:var(--gold-light);margin:0 auto 36px; }
    .activities-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    }
    .act-card {
      background: rgba(255,255,255,0.11);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 16px; padding: 24px 20px;
      display: flex; align-items: flex-start; gap: 15px;
      backdrop-filter: blur(6px);
      transition: all var(--transition);
    }
    .act-card:hover { background:rgba(255,255,255,0.19); transform:translateY(-4px); }
    .act-icon {
      width:46px;height:46px;border-radius:12px;flex-shrink:0;
      display:flex;align-items:center;justify-content:center;font-size:1.25rem;
    }
    .ai1{background:rgba(249,168,37,.3);color:#FFD54F;}
    .ai2{background:rgba(239,83,80,.25);color:#FFCDD2;}
    .ai3{background:rgba(30,136,229,.25);color:#BBDEFB;}
    .ai4{background:rgba(255,255,255,.2);color:#fff;}
    .ai5{background:rgba(142,36,170,.25);color:#E1BEE7;}
    .ai6{background:rgba(67,160,71,.3);color:#C8E6C9;}
    .act-body h4 { font-size:.93rem;font-weight:600;color:var(--white);font-family:'DM Sans',sans-serif;margin-bottom:4px; }
    .act-body p { font-size:.78rem;color:rgba(255,255,255,.65);line-height:1.5; }

    /* ── PARTNERS ── */
    #partners { background:var(--white); padding:72px 0; }
    .partners-hd { text-align:center; margin-bottom:48px; }
    .partners-row {
      display:flex;flex-wrap:wrap;justify-content:center;align-items:stretch;gap:22px;
    }
    .partner-chip {
      background:var(--white);border:1.5px solid rgba(46,125,50,.13);
      border-radius:16px;padding:24px 28px;min-width:180px;max-width:220px;text-align:center;
      transition:all var(--transition);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
    }
    .partner-chip:hover { border-color:var(--teal);box-shadow:0 8px 26px var(--shadow);transform:translateY(-4px); }
    .partner-chip .plogo { width:auto;max-width:140px;max-height:70px;object-fit:contain;display:block;margin:0 auto; }
    .partner-chip .pfull { font-size:.7rem;color:var(--muted);margin-top:3px;line-height:1.4; }

    /* ── DONATE SECTION ── */
    #donate { background:var(--red); position:relative; overflow:hidden; padding:80px 0; }
    #donate::before {
      content:'';position:absolute;inset:0;
      background-image:radial-gradient(circle,rgba(255,255,255,.07) 1px,transparent 1px);
      background-size:28px 28px;
    }
    .donate-box { position:relative;z-index:1;text-align:center;max-width:720px;margin:0 auto;padding:0 24px; }
    .donate-box h2 { font-size:clamp(1.8rem,3.5vw,2.6rem);color:var(--white);margin-bottom:14px; }
    .donate-box .donate-sub { color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:34px;font-weight:300; }
    .donate-amounts { display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:30px; }
    .dam {
      background:rgba(255,255,255,.15);color:var(--white);
      border:2px solid rgba(255,255,255,.4);padding:10px 24px;
      border-radius:50px;font-size:.95rem;font-weight:700;cursor:pointer;
      transition:all var(--transition);
    }
    .dam:hover,.dam.active { background:var(--white);color:var(--red);border-color:var(--white); }
    .btn-donate-big {
      display:inline-flex;align-items:center;gap:10px;
      background:var(--white);color:var(--red);
      padding:17px 46px;border-radius:50px;
      font-size:1.1rem;font-weight:800;
      transition:all var(--transition);border:none;cursor:pointer;
      box-shadow:0 8px 30px rgba(0,0,0,.2);
    }
    .btn-donate-big:hover { transform:translateY(-3px);box-shadow:0 14px 40px rgba(0,0,0,.3); }
    .donate-ways { display:flex;gap:20px;justify-content:center;margin-top:26px;flex-wrap:wrap; }
    .dway { color:rgba(255,255,255,.8);font-size:.84rem;display:flex;align-items:center;gap:6px; }
    .dway i { font-size:1.15rem; }

    /* ── GALLERY ── */
    #gallery { background:var(--cream); }
    .gallery-grid {
      display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
    }
    .gal-item {
      border-radius:14px;overflow:hidden;position:relative;
      aspect-ratio:4/3;cursor:pointer;
    }
    .gal-item img { width:100%;height:100%;object-fit:cover;transition:transform .5s ease; }
    .gal-item:hover img { transform:scale(1.06); }
    .gal-overlay {
      position:absolute;inset:0;
      background:linear-gradient(to top,rgba(27,94,32,.72) 0%,transparent 60%);
      opacity:0;transition:opacity .35s;
      display:flex;align-items:flex-end;padding:14px;
    }
    .gal-item:hover .gal-overlay { opacity:1; }
    .gal-overlay span {
      color:#fff;font-size:.8rem;font-weight:600;
      line-height:1.4;display:-webkit-box;
      -webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
    }
    .gal-item.tall { grid-row:span 2;aspect-ratio:unset;min-height:320px; }
    .drive-cta { text-align:center;margin-top:28px; }
    .drive-cta a { color:var(--teal);font-weight:600;display:inline-flex;align-items:center;gap:7px;font-size:.9rem; }
    .drive-cta a:hover { color:var(--teal-dark); }

    /* ── placeholder colour tiles for gallery ── */
    .gal-ph { width:100%;height:100%;display:flex;align-items:center;justify-content:center; }
    .gal-ph i { font-size:3.5rem;color:rgba(255,255,255,.25); }

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

    /* ===== GALLERY CATEGORIES ACCORDION ===== */
    .gallery-cats { display:flex; flex-direction:column; gap:14px; }

    .gc-section {
      border-radius:14px;
      border:1px solid rgba(46,125,50,.15);
      overflow:hidden;
      background:#fff;
      box-shadow:0 2px 14px rgba(46,125,50,.08);
      transition:box-shadow .3s;
    }
    .gc-section.open { box-shadow:0 6px 28px rgba(46,125,50,.16); }

    .gc-header {
      width:100%; display:flex; align-items:center;
      justify-content:space-between; padding:18px 24px;
      background:none; border:none; cursor:pointer; text-align:left;
      gap:12px; transition:background .25s;
    }
    .gc-header:hover { background:rgba(46,125,50,.04); }
    .gc-section.open .gc-header {
      background:rgba(46,125,50,.05);
      border-bottom:1px solid rgba(46,125,50,.12);
    }

    .gc-left { display:flex; align-items:center; gap:14px; flex:1; min-width:0; }

    .gc-icon-wrap {
      width:46px; height:46px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-size:1.2rem; color:#fff; flex-shrink:0;
    }

    .gc-meta { display:flex; flex-direction:column; gap:5px; min-width:0; }
    .gc-name { font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:700; color:var(--charcoal); display:block; }
    .gc-count-badge {
      display:inline-block; background:var(--green); color:#fff;
      font-size:.72rem; padding:2px 10px; border-radius:20px;
      font-weight:600; width:fit-content;
    }

    .gc-right { display:flex; align-items:center; gap:10px; flex-shrink:0; }

    .gc-preview-strip { display:flex; gap:5px; transition:opacity .3s; }
    .gc-preview-strip img {
      width:52px; height:38px; object-fit:cover;
      border-radius:6px; opacity:.6; transition:opacity .3s;
    }
    .gc-header:hover .gc-preview-strip img { opacity:.85; }
    .gc-section.open .gc-preview-strip { display:none; }

    .gc-cta-text {
      font-size:.8rem; color:var(--green); font-weight:600;
      white-space:nowrap; display:flex; align-items:center; gap:4px;
    }
    .gc-cta-text i { animation:bounceDown 1.4s ease-in-out infinite; }
    .gc-section.open .gc-cta-text { display:none; }

    @keyframes bounceDown {
      0%,100% { transform:translateY(0); }
      50%      { transform:translateY(4px); }
    }

    .gc-chevron {
      width:34px; height:34px; display:flex; align-items:center;
      justify-content:center; background:rgba(46,125,50,.1);
      border-radius:50%; color:var(--green); font-size:.9rem;
      transition:transform .35s ease, background .25s; flex-shrink:0;
    }
    .gc-section.open .gc-chevron { transform:rotate(180deg); background:var(--green); color:#fff; }

    .gc-body {
      max-height:0; overflow:hidden;
      transition:max-height .6s cubic-bezier(.4,0,.2,1);
    }
    .gc-section.open .gc-body { max-height:4000px; }

    .gc-grid { padding:20px; margin:0; }

    @media(max-width:768px){
      .gc-header { padding:14px 16px; }
      .gc-preview-strip img { width:40px; height:30px; }
      .gc-cta-text { display:none; }
      .gc-section.open .gc-cta-text { display:none; }
    }

    /* ===== WHATSAPP FLOATING BUTTON ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      border-radius: 50px;
      padding: 14px 18px;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,.45);
      transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
      text-decoration: none;
      overflow: hidden;
      max-width: 58px;
    }
    .whatsapp-float:hover {
      max-width: 280px;
      padding: 14px 22px;
      background: #1ebe5d;
      box-shadow: 0 6px 24px rgba(37,211,102,.6);
    }
    .whatsapp-float i {
      flex-shrink: 0;
      font-size: 1.6rem;
      line-height: 1;
    }
    .whatsapp-float .wa-label {
      font-size: 0.88rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      max-width: 0;
      overflow: hidden;
      transition: opacity 0.25s ease 0.05s, max-width 0.3s ease;
      font-family: 'DM Sans', sans-serif;
    }
    .whatsapp-float:hover .wa-label {
      opacity: 1;
      max-width: 200px;
    }
    /* pulse ring */
    .whatsapp-float::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: #25D366;
      animation: waPulse 2.4s ease-out infinite;
      z-index: -1;
    }
    @keyframes waPulse {
      0%   { transform: scale(1); opacity: .6; }
      70%  { transform: scale(1.45); opacity: 0; }
      100% { transform: scale(1.45); opacity: 0; }
    }
    @media(max-width:600px){.activities-grid{grid-template-columns:1fr;} .gallery-grid{grid-template-columns:1fr;} .gal-item.tall{grid-row:span 1;aspect-ratio:4/3;}}