/*
Theme Name: GreenLove2Help
Theme URI: https://greenlove2help.org
Author: GreenLove2Help Rwanda
Description: Professional NGO theme for GreenLove2Help - serving people living with HIV/AIDS and fighting poverty in Rwanda.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: greenlove2help
Tags: nonprofit, charity, ngo, green, responsive, multilingual
*/

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --green-primary: #1a7a4a;
  --green-dark: #0f5233;
  --green-light: #2da05e;
  --green-accent: #4caf50;
  --green-pale: #e8f5e9;
  --green-tint: #f0faf2;

  --dark: #1a1a1a;
  --dark-2: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --gray-pale: #f3f4f6;
  --white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-green: 0 4px 20px rgba(26,122,74,0.3);

  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.25; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green-primary);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title span { color: var(--green-primary); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#site-header.transparent {
  background: transparent;
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img, .site-logo svg {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
#site-header.scrolled .site-logo img,
#site-header.scrolled .site-logo svg {
  filter: none;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.92);
  transition: var(--transition);
}
#site-header.scrolled .nav-menu a { color: var(--dark); }
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
#site-header.scrolled .nav-menu a:hover,
#site-header.scrolled .nav-menu a.active {
  background: var(--green-pale);
  color: var(--green-primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Language switcher */

.gl2h-lang-switcher .trp-shortcode-overlay {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.trp-current-language-item__wrapper:not(.trp-hide-arrow) {
    margin-top:10px;
}


/* Hide TranslatePress default arrow */
.gl2h-lang-switcher .trp-shortcode-arrow {
    display: none !important;
}

/* Wrapper row */
.gl2h-lang-switcher .trp-current-language-item__wrapper {
    display: flex;
    align-items: center;
}

/* The button — fully transparent before scroll */
.gl2h-lang-switcher .trp-language-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: transparent !important;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.gl2h-lang-switcher .trp-language-item:hover {
    background: rgba(255,255,255,0.12) !important;
}

/* Hide full word "English" / "French", show short code */
.gl2h-lang-switcher .trp-language-item-name {
    font-size: 0 !important;
    line-height: 0;
    order: 2;
}

.gl2h-lang-switcher .trp-language-item-name::after {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: normal;
}

/* English */
.gl2h-lang-switcher .trp-language-item img[src*="en_US"] ~ .trp-language-item-name::after,
.gl2h-lang-switcher .trp-language-item img[src*="/en."] ~ .trp-language-item-name::after {
    content: "EN";
}

/* French */
.gl2h-lang-switcher .trp-language-item img[src*="fr_FR"] ~ .trp-language-item-name::after,
.gl2h-lang-switcher .trp-language-item img[src*="/fr."] ~ .trp-language-item-name::after {
    content: "FR";
}

/* ── SCROLLED — background appears, text goes dark ── */
#site-header.scrolled .gl2h-lang-switcher .trp-shortcode-overlay {
    background: transparent !important;
}

#site-header.scrolled .gl2h-lang-switcher .trp-language-item {
    background: transparent !important;
    border-radius: 4px;
}

#site-header.scrolled .gl2h-lang-switcher .trp-language-item:hover {
    background: transparent !important;
}

#site-header.scrolled .gl2h-lang-switcher .trp-language-item-name::after {
    color: var(--dark);
}

#site-header.scrolled .gl2h-lang-switcher .trp-language-item::before {
    color: var(--dark);
    opacity: 1;
}

#site-header.scrolled .gl2h-lang-switcher .trp-language-item:hover .trp-language-item-name::after,
#site-header.scrolled .gl2h-lang-switcher .trp-language-item:hover::before {
    color: var(--green-primary);
}

/* No arrow inside dropdown items */
.gl2h-lang-switcher .trp-switcher-dropdown-list .trp-language-item::before {
    display: none !important;
}


.gl2h-lang-switcher .trp-switcher-dropdown-list .trp-language-item:hover {
    background: transparent !important;
}

.gl2h-lang-switcher .trp-switcher-dropdown-list .trp-language-item-name::after {
    color: var(--dark) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}

.gl2h-lang-switcher .trp-switcher-dropdown-list .trp-language-item:hover .trp-language-item-name::after {
    color: var(--green-primary) !important;
}


/* ── RESPONSIVE ── */

@media (max-width: 1023px) {
    .gl2h-lang-switcher .trp-language-item {
        padding: 4px 6px;
        gap: 3px;
    }
}

@media (max-width: 768px) {
    .gl2h-lang-switcher {
        margin-left: 2px;
    }
    .gl2h-lang-switcher .trp-language-item {
        padding: 3px 5px;
        gap: 2px;
    }
    .gl2h-lang-switcher .trp-language-item-name::after {
        font-size: 0.68rem;
    }
    .gl2h-lang-switcher .trp-switcher-dropdown-list {
        min-width: 58px !important;
        right: 0;
        left: auto;
    }
}

@media (max-width: 480px) {
    .gl2h-lang-switcher .trp-language-item {
        padding: 3px 4px;
    }
    .gl2h-lang-switcher .trp-language-item-name::after {
        font-size: 0.65rem;
    }
}
.nav-donate {
  background: var(--green-primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  border: 2px solid var(--green-primary);
}
.nav-donate:hover {
  background: var(--white) !important;
  color: var(--green-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
#site-header.scrolled .nav-donate:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  border-color: var(--green-dark);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#site-header.scrolled .menu-toggle span { background: var(--dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.JPG');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,82,51,0.5) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--green-accent);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ============================================================
   SERVICES / WHAT WE DO
   ============================================================ */
.services {
  background: var(--white);
  padding: 80px 0;
}
.services-intro {
  text-align: center;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--green-primary);
  transition: var(--transition);
  border-radius: 0 0 4px 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--green-primary); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* ── Section modifier ── */
.section--tint {
    background: var(--green-tint);
}

/* ── Page hero: centre content ── */
.page-hero .container {
    position: relative;
    z-index: 1;
}

/* ── Section label light variant (hero) ── */
.section-label--light {
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
}

/* ============================================================
   ABOUT GRID — Founder section
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green-primary);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-green);
  min-width: 140px;
}
.about-image-badge .num {
  font-family: var(--font-ui);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-image-badge .label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── Founder attribution box ── */
.founder-attribution {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 20px;
    background: var(--green-tint);
    border-radius: var(--radius);
    border-left: 4px solid var(--green-primary);
}

.founder-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-primary);
}

.founder-name {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 2px;
}

.founder-role {
    font-size: 0.78rem;
    color: var(--green-primary);
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   VISION / MISSION / VALUES
   ============================================================ */
.vmv-header {
    text-align: center;
    margin-bottom: 56px;
}

.vmv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

/* Vision card */
.vmv-card {
    border-radius: var(--radius-lg);
    padding: 40px;
}

.vmv-card--vision {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--green-primary);
}

.vmv-card--vision h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.vmv-card--vision p {
    color: var(--gray);
    line-height: 1.85;
    font-size: 0.95rem;
}

/* Mission card */
.vmv-card--mission {
    background: var(--green-primary);
    box-shadow: var(--shadow-green);
}

.vmv-card--mission h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--white);
}

.vmv-card--mission p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    font-size: 0.95rem;
}

/* VMV icon */
.vmv-icon {
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-primary);
}

.vmv-icon--mission {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ── Core Values ── */
.values-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.values-title {
    font-size: 1.2rem;
    margin-bottom: 32px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 16px 8px;
}

.value-emoji {
    font-size: 2rem;
    margin-bottom: 10px;
}

.value-name {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.value-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Placeholder when no thumbnail */
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a7a4a;
}

/* ── Leadership fallback ── */
.leadership-fallback {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 860px;
    margin: 0 auto;
}

.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1.5px solid #e5e7eb;
    background: var(--white);
}

.leader-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8e6c9, #81c784);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a7a4a;
}

.leader-name {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.leader-role {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--green-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.leader-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   CTA — outline-white variant
   ============================================================ */
.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-main img {
        height: 380px;
    }

    .vmv-row {
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Hero */
    .page-hero {
        padding: 110px 0 60px;
    }

    .page-hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    /* Founder */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        margin-bottom: 32px;
    }

    .about-image-main img {
        height: 280px;
        border-radius: 16px;
    }

    .about-image-badge {
        bottom: -14px;
        right: 12px;
        padding: 16px;
        min-width: 110px;
    }

    .about-image-badge .num {
        font-size: 1.6rem;
    }

    .about-image-badge .label {
        font-size: 0.72rem;
    }

    .about-content h2 {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    /* VMV */
    .vmv-header {
        margin-bottom: 36px;
    }

    .vmv-row {
        grid-template-columns: 1fr;
    }

    .vmv-card {
        padding: 28px;
    }

    /* Values */
    .values-wrap {
        padding: 28px 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .value-item {
        padding: 12px 6px;
    }

    .value-emoji {
        font-size: 1.6rem;
    }

    /* Team CPT */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Leadership fallback */
    .leadership-fallback {
        grid-template-columns: 1fr;
    }

    .leader-avatar {
        width: 56px;
        height: 56px;
    }

    .leader-avatar svg {
        width: 24px;
        height: 24px;
    }

    /* CTA */
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .cta-right {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

    .about-image-main img {
        height: 230px;
    }

    /* Hide badge so it doesn't overlap on tiny screens */
    .about-image-badge {
        display: none;
    }

    /* Values: single column */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Stats: single column */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* VMV cards tighter */
    .vmv-card {
        padding: 22px 18px;
    }

    .vmv-card h3 {
        font-size: 1.1rem;
    }

    .vmv-card p {
        font-size: 0.875rem;
    }

    /* Founder attribution */
    .founder-attribution {
        padding: 14px;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    /* CTA buttons full-width stacked */
    .cta-right {
        flex-direction: column;
        gap: 12px;
    }

    .cta-right .btn {
        width: 100%;
        justify-content: center;
    }

    /* Leadership card: tighten */
    .leader-card {
        padding: 18px;
        gap: 14px;
    }
}
/* =============================================================
   PARTNERS & SUPPORTERS SECTION
   ============================================================= */

.partners-section { padding-block: 5rem; }

/* Header */
.partners-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.partners-intro {
    color: var(--color-text-muted, #6b7280);
    margin-top: .75rem;
    line-height: 1.6;
}

/* Grid — all cards on one row, centred, wrapping */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

/* Card */
.partner-card {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
}

/* ── Circle logo ── */
.partner-card__logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-border, #e5e7eb);
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.partner-card:hover .partner-card__logo {
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
    transform: translateY(-4px);
    border-color: var(--color-primary, #16a34a);
}

.partner-card__logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter .25s ease;
}
.partner-card:hover .partner-card__logo img {
    filter: grayscale(0%);
}

/* Text fallback inside circle */
.partner-logo--text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light, #dcfce7);
    border-radius: 50%;
}
.partner-logo--text span {
    font-weight: 700;
    font-size: .8rem;
    color: var(--color-primary-dark, #15803d);
    line-height: 1.3;
    padding: .5rem;
}

/* ── Body: name + badge ── */
.partner-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}

.partner-card__name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-heading, #111827);
    margin: 0;
    line-height: 1.3;
}

/* Type badge */
.partner-card__badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .22em .85em;
}
.partner-card__badge--funder    { background: #fef9c3; color: #854d0e; }
.partner-card__badge--partner   { background: #dcfce7; color: #15803d; }
.partner-card__badge--supporter { background: #dbeafe; color: #1d4ed8; }

/* Description hidden from UI — kept in markup for accessibility/SEO */
.partner-card__desc { display: none; }

/* Responsive */
@media (max-width: 540px) {
    .partner-card { flex: 0 0 130px; }
    .partner-card__logo { width: 90px; height: 90px; }
}
@media (max-width: 360px) {
    .partner-card { flex: 0 0 calc(50% - 1rem); }
}
/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects { background: var(--white); }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-thumb {
  position: relative;
  overflow: hidden;
  height: 180px;
  background: var(--green-pale);
}
.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-thumb img { transform: scale(1.08); }
.project-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.project-info { padding: 20px; }
.project-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.project-info p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   CTA / BANNER SECTION
   ============================================================ */
.cta-banner {
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/cta-bg.jpg') center/cover;
  opacity: 0.12;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.cta-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-title em { font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }
.cta-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.video-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 500;
}
.video-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.video-btn:hover .video-play {
  background: var(--white);
  color: var(--green-primary);
}
.video-play svg { width: 18px; height: 18px; margin-left: 2px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats { background: var(--gray-pale); padding: 70px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--green-primary); }
.stat-number {
  font-family: var(--font-ui);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card p { font-size: 0.9rem; color: var(--gray); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.video-section .bg {
  position: absolute; inset: 0;
  background: url('images/video-bg.jpg') center/cover;
  filter: brightness(0.4);
}
.video-trigger {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  cursor: pointer;
}
.video-trigger .play-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(26,122,74,0.2);
  transition: var(--transition);
}
.video-trigger:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 24px rgba(26,122,74,0.15);
}
.video-trigger .play-circle svg { width: 30px; height: 30px; color: white; margin-left: 4px; }
.video-trigger span {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--green-tint);
  border-radius: var(--radius);
  border: 1px solid var(--green-pale);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--green-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: white; }
.contact-card h4 {
  font-size: 0.8rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-card p {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
}
.contact-form-wrap { }
.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  border: 1.5px solid #e5e7eb;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Contact Form */
.gl-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(26,122,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; align-items: center; gap: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }


/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;  /* 3-col → 2-col */
  }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .contact-grid {
    gap: 32px;
  }

  /* Stack all form rows to single column */
  .form-row,
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Tighten card padding on small screens */
  .contact-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-card-icon {
    width: 38px;
    height: 38px;
  }

  .contact-card p {
    font-size: 0.875rem;
  }

  /* Shorter map on mobile */
  .contact-map {
    height: 180px;
    margin-top: 24px;
  }

  /* Slightly larger touch targets for inputs */
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 14px;
    font-size: 1rem;   /* prevents iOS auto-zoom (≥ 16px rendered) */
  }
}


/* ============================================================
   FOOTER 
   ============================================================ */


footer {
  background: #0a1910;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

/* ── Subtle noise/grain texture overlay ── */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(26, 122, 74, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(26, 122, 74, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

footer .container,
footer .footer-bottom-wrap .container { position: relative; z-index: 1; }

/* ── Decorative top rule ── */
.footer-rule {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0 0;
  margin-bottom: 0;
}

.footer-rule::before,
.footer-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to var(--dir, right),
    transparent,
    rgba(26, 122, 74, 0.5) 40%,
    rgba(26, 122, 74, 0.5) 60%,
    transparent
  );
}

.footer-rule::before { --dir: right; }
.footer-rule::after  { --dir: left;  }

.footer-rule-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a1910;
  border: 1px solid rgba(26, 122, 74, 0.45);
  color: var(--green-primary, #1a7a4a);
  flex-shrink: 0;
  margin: 0 12px;
}

/* ── Inner grid ── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 60px 0 56px;
}

/* ── Brand column ── */
.footer-org-name {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  max-width: 300px;
}

/* ── Contact list ── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item svg {
  color: var(--green-primary, #1a7a4a);
  flex-shrink: 0;
}

.footer-contact-item:hover { color: rgba(255, 255, 255, 0.9); }

/* ── Social icons ── */
.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--green-primary, #1a7a4a);
  border-color: var(--green-primary, #1a7a4a);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg { width: 15px; height: 15px; }

/* ── Column headings ── */
.footer-col h4 {
  font-family: var(--font-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--green-primary, #1a7a4a);
}

/* ── Link lists ── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s, gap 0.2s, padding-left 0.2s;
  position: relative;
}

.footer-links li a::before {
  content: '›';
  font-size: 1rem;
  color: var(--green-primary, #1a7a4a);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-right: 0;
  width: 0;
  overflow: hidden;
}

.footer-links li a:hover {
  color: rgba(255, 255, 255, 0.95);
  padding-left: 14px;
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
  width: 10px;
  margin-right: 4px;
}

/* ── Quote column ── */
.footer-col--quote { }

.footer-quote {
  margin: 0 0 24px;
  padding: 20px 20px 20px 18px;
  border-left: 2px solid rgba(26, 122, 74, 0.5);
  background: rgba(26, 122, 74, 0.07);
  border-radius: 0 8px 8px 0;
}

.footer-quote p {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 0.925rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.footer-quote cite {
  font-style: normal;
  font-size: 0.72rem;
  font-family: var(--font-ui, sans-serif);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-primary, #1a7a4a);
}

/* ── CTA text-link ── */
.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-ui, sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.footer-cta-link svg { transition: transform 0.2s; }

.footer-cta-link:hover {
  color: #fff;
  border-color: var(--green-primary, #1a7a4a);
  gap: 11px;
}

.footer-cta-link:hover svg { transform: translateX(3px); }

/* ── Bottom bar wrapper ── */
.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover { color: var(--green-accent, #4caf50); }

.footer-reg {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-reg a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-reg a:hover { color: rgba(255, 255, 255, 0.65); }

.footer-reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 122, 74, 0.15);
  border: 1px solid rgba(26, 122, 74, 0.3);
  border-radius: 20px;
  padding: 3px 10px 3px 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-reg-badge svg { color: var(--green-primary, #1a7a4a); }

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }

  /* Quote col moves to full-width last row */
  .footer-col--quote {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 40px;
    align-items: start;
  }

  .footer-col--quote h4  { grid-column: 1 / -1; }
  .footer-quote          { margin-bottom: 0; }
  .footer-cta-link       { align-self: center; }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 0 44px;
  }

  /* Brand takes full width on mobile */
  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 32px;
  }

  .footer-tagline { max-width: 100%; }

  .footer-col--quote {
    grid-column: 1 / -1;
    display: block;
  }

  .footer-quote { margin-bottom: 20px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-reg    { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 36px;
  }

  .footer-brand { border-bottom: 1px solid rgba(255, 255, 255, 0.07); padding-bottom: 24px; }

  .footer-org-name { font-size: 1.3rem; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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.04'%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");
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb span.sep { color: rgba(255,255,255,0.4); }

/* ============================================================
   DONATION PAGE
   ============================================================ */
.donation-page { background: var(--gray-pale); padding: 80px 0; }
.donation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap: 50px;
  align-items: start;
}
.donation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.donation-card h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.donation-card > p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  color: var(--dark);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: var(--white);
}
.custom-amount {
  margin-bottom: 28px;
}
.custom-amount input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}
.custom-amount input:focus { border-color: var(--green-primary); }

.payment-methods h3 {
  font-size: 0.85rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 16px;
}
.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.pay-tab {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
}
.pay-tab:hover { border-color: var(--green-primary); }
.pay-tab.active { border-color: var(--green-primary); background: var(--green-pale); color: var(--green-primary); }
.pay-tab img { height: 26px; object-fit: contain; }

.payment-form-section { display: none; }
.payment-form-section.active { display: block; }

/* MoMo */
.momo-form, .worldremit-form { display: flex; flex-direction: column; gap: 16px; }
.momo-logo {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: #fef9e7;
  border-radius: var(--radius);
  margin-bottom: 8px;
  border: 1px solid #f9d923;
}
.momo-logo img { height: 32px; }
.momo-logo span { font-size: 0.85rem; color: var(--gray); }

.wr-logo {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: #e8f4fd;
  border-radius: var(--radius);
  margin-bottom: 8px;
  border: 1px solid #bee3f8;
}
.wr-logo img { height: 32px; }
.wr-logo span { font-size: 0.85rem; color: var(--gray); }

.donate-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px;
}
.donate-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.donate-submit svg { width: 18px; height: 18px; }

.donation-sidebar { display: flex; flex-direction: column; gap: 24px; }
.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.impact-card h3 { font-size: 1.2rem; margin-bottom: 20px; }
.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.impact-item:last-child { border-bottom: none; }
.impact-amount {
  background: var(--green-pale);
  color: var(--green-primary);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.impact-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

.trust-card {
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.trust-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green-accent); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--green-pale);
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--gray-light);
}
.blog-meta .cat {
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.blog-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-body p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more svg { width: 14px; height: 14px; }

.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid #e5e7eb;
}
.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  height: 220px;
  background: var(--green-pale);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info .role {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--green-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.team-info p { font-size: 0.875rem; color: var(--gray); }

/* ============================================================
   ALERTS & NOTICES
   ============================================================ */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.alert-success { background: var(--green-pale); color: var(--green-dark); border: 1px solid var(--green-accent); }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 20px 24px 30px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}
.mobile-menu a:hover { background: var(--green-pale); color: var(--green-primary); }
.mobile-menu .mob-donate {
  background: var(--green-primary);
  color: var(--white);
  text-align: center;
  margin-top: 12px;
  border-radius: 50px;
}
/* ================================================================
   ADDED FEATURES CSS
   ================================================================ */

/* ── Testimonials (homepage section) ── */
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr !important; }
}

/* ── Awards strip ── */
.awards-strip img:hover { filter: grayscale(0%) !important; }

/* ── Stories archive ── */
@media (max-width: 1024px) {
    .stories-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 640px) {
    .stories-grid { grid-template-columns: 1fr !important; }
}

/* ── Albums archive ── */
@media (max-width: 1024px) {
    .albums-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 640px) {
    .albums-grid { grid-template-columns: 1fr !important; }
}

/* ── Lightbox ── */
#gl2h-lightbox button:hover { background: rgba(255,255,255,0.25) !important; }

/* ── Reports grid ── */
@media (max-width: 1024px) {
    .reports-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 640px) {
    .reports-grid { grid-template-columns: 1fr !important; }
}

/* ── Governance board grid ── */
@media (max-width: 768px) {
    .board-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
    .board-grid { grid-template-columns: 1fr !important; }
}

/* ── Social Share bar ── */
.gl2h-share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}
.gl2h-share-bar > span {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.gl2h-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    line-height: 1;
}
.gl2h-share-btn.fb  { background: #1877f2; color: white; }
.gl2h-share-btn.tw  { background: #000; color: white; }
.gl2h-share-btn.wa  { background: #25d366; color: white; }
.gl2h-share-btn.copy { background: var(--gray-pale); color: var(--dark); }
.gl2h-share-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── Story teaser section responsive ── */
@media (max-width: 768px) {
    .story-teaser-grid { grid-template-columns: 1fr !important; }
    .story-teaser-grid > div:last-child { order: -1; }
}
.gl2h-translate-wrap {
    position: relative;
}
.gl2h-translate-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    padding: 7px 14px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.gl2h-translate-btn:hover {
    background: rgba(255,255,255,0.22);
}
#site-header.scrolled .gl2h-translate-btn {
    background: var(--gray-pale);
    border-color: #e5e7eb;
    color: var(--dark);
}
#site-header.scrolled .gl2h-translate-btn:hover {
    background: var(--green-pale);
    border-color: var(--green-primary);
    color: var(--green-primary);
}

/* Social share buttons on story/report pages */
.gl2h-share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}
.gl2h-share-bar span {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.gl2h-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.gl2h-share-btn.fb   { background: #1877f2; color: white; }
.gl2h-share-btn.tw   { background: #000; color: white; }
.gl2h-share-btn.wa   { background: #25d366; color: white; }
.gl2h-share-btn.copy { background: var(--gray-pale); color: var(--dark); }
.gl2h-share-btn:hover { opacity: 0.85; transform: translateY(-2px); }
*/



/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .donation-layout { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-right { align-items: center; }
  .donation-layout { grid-template-columns: 1fr; }
  .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
  .story-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .services-grid, .projects-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image-badge { bottom: 20px; right: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .donation-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-tabs { flex-wrap: wrap; }
  .donation-card { padding: 24px; }
  .nav-right .lang-switcher { display: none; }
  .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
  .story-grid {
        grid-template-columns: 1fr !important;
    }
}





























