/* ══════════════════════════════════════════════════════════════
   ZANMISANTEW — Main Stylesheet
   Colors: #1a6b3c (deep green) · #1565c0 (blue) · #fff (white)
══════════════════════════════════════════════════════════════ */

:root {
  --green: #1a6b3c;
  --green-light: #43a047;
  --green-pale: #e8f5e9;
  --green-mid: #b3d9c7;
  --blue: #1565c0;
  --blue-light: #1976d2;
  --blue-pale: #e3f0ff;
  --white: #ffffff;
  --off-white: #f8fdfb;
  --gray-50: #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-500: #888;
  --gray-700: #444;
  --gray-900: #1a1a1a;
  --text: #1a2e22;
  --text-light: #5a7065;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── LANG STRIP ── */
.lang-strip {
  background: var(--green);
  color: white;
  font-size: 12.5px;
  padding: 6px 0;
}
.lang-strip__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lang-strip__right {
  margin-left: auto;
  display: flex;
  gap: 20px;
  opacity: 0.85;
  font-size: 12px;
}
.lang-btn {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 36px;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: rgba(255,255,255,0.5);
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-pale));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.logo__name--white { color: white; }
.logo__sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo__sub--white { color: rgba(255,255,255,0.7); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--green); background: var(--green-pale); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 8px;
  border-radius: 8px;
  background: var(--gray-50);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  width: 100%; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: #ffffff; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: #ffffff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--donate {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 16px rgba(26,107,60,0.3);
}
.btn--donate:hover {
  background: #155c32;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(26,107,60,0.4);
}
.btn--hero-primary {
  background: white;
  color: var(--green);
  font-size: 16px;
  padding: 15px 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn--hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.btn--hero-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  font-size: 16px;
  padding: 13px 32px;
  backdrop-filter: blur(8px);
}
.btn--hero-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
.btn--primary {
  background: var(--green);
  color: white;
  width: 100%;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(26,107,60,0.25);
}
.btn--primary:hover { background: #155c32; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 28px;
}
.btn--outline:hover { background: var(--green); color: white; }
.btn--project {
  background: var(--green);
  color: white;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 14px;
}
.btn--project:hover { background: #155c32; transform: translateY(-1px); }
.btn--donate-submit {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(26,107,60,0.3);
}
.btn--donate-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,107,60,0.4); }
.btn--newsletter {
  background: var(--green);
  color: white;
  border-radius: 50px;
  padding: 13px 28px;
}
.btn--newsletter:hover { background: #155c32; }
.btn--sm { padding: 7px 16px; font-size: 13px; }

/* ── SECTION COMMON ── */
.section { padding: 96px 0; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--green) 0%, #0e4d28 40%, var(--blue) 100%);
  overflow: hidden;
  padding: 80px 0 60px;
}
/* When hero has slideshow photos, hide the default gradient */
.hero:has(.hero__slide) {
  background: #111;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

/* ── Hero Slideshow ── */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  transform: none;
}
.hero__slide.active {
  opacity: 1;
}
.hero__slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
video.hero__slide { width: 100%; height: 100%; object-fit: cover; }

/* Cinematic overlay: dark gradient from bottom + left for perfect text readability */
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%),
    linear-gradient(to top,    rgba(0,0,0,0.5)  0%, transparent 50%);
  z-index: 1;
}

/* Dots navigation */
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  pointer-events: auto;
  background: rgba(0,0,0,0.25);
  padding: 8px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.hero__dot.active {
  background: white;
  transform: scale(1.35);
  border-color: white;
}
.hero__dot:hover {
  background: rgba(255,255,255,0.8);
  transform: scale(1.2);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(67,160,71,0.25);
  top: -100px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(21,101,192,0.2);
  bottom: -50px; left: 10%;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  top: 30%; left: 50%;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-shadow: none;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__title-main {
  font-family: var(--font-heading);
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3);
  -webkit-text-fill-color: #ffffff;
}
.hero__title-sub {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero__text {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}
.stat {}
.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}



/* ── About section ── */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}
.about-intro p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-focus {
  background: linear-gradient(135deg, var(--green-pale), #f0f7ff);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 24px 0 0;
  border: 1px solid rgba(26,107,60,0.1);
}
.about-focus h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-focus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-focus__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.about-focus__list li span {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Expandable section */
.about-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.about-expandable.open {
  max-height: 2000px;
}
.about-block {
  padding: 28px 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 8px;
}
.about-block h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 14px;
  font-weight: 600;
}
.about-block p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-block p:last-child { margin-bottom: 0; }
/* Toggle button */
.about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 28px;
  background: white;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .22s;
  box-shadow: 0 2px 10px rgba(26,107,60,0.1);
}
.about-toggle svg {
  transition: transform .28s ease;
}
.about-toggle:hover,
.about-toggle.open {
  background: var(--green);
  color: white;
}
.about-toggle:hover svg,
.about-toggle.open svg {
  stroke: white;
}
@media (max-width: 600px) {
  .about-focus__list { grid-template-columns: 1fr; }
  .about-focus { padding: 18px 20px; }
  .about-block h3 { font-size: 19px; }
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__story { display: flex; flex-direction: column; gap: 24px; }
.about__visual {
  position: relative;
  width: 120px; height: 120px;
  margin-bottom: 8px;
}
.about__circle {
  position: absolute;
  border-radius: 50%;
}
.about__circle--1 {
  width: 100px; height: 100px;
  background: var(--green-pale);
  top: 0; left: 0;
}
.about__circle--2 {
  width: 70px; height: 70px;
  background: var(--blue-pale);
  bottom: 0; right: 0;
}
.about__icon-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.about__text h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
}
.about__text p { color: var(--text-light); margin-bottom: 12px; }

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-pale); }
.value-card__icon { font-size: 28px; margin-bottom: 10px; }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ── FOUNDERS ── */
.founders { position: relative; padding: 96px 0; }
.founders__bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
  z-index: 0;
}
.founders .container { position: relative; z-index: 1; }
.founders__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.founder-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.founder-card__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--green-pale);
}
.founder-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__avatar-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: grid; place-items: center;
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
}
.founder-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}
.founder-card__role {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.founder-card__bio--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  min-height: 5.5em;
}
.founder-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.founder-card__readmore:hover {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,107,60,0.25);
}
.founder-card__readmore span {
  transition: transform 0.2s;
}
.founder-card__readmore:hover span {
  transform: translateX(3px);
}

/* ── FOUNDER MODAL ── */
.modal__box--founder {
  max-width: 620px;
  text-align: left;
  padding: 40px;
  max-height: 85vh;
  overflow-y: auto;
}
.founder-modal__inner { display: flex; flex-direction: column; gap: 20px; }
.founder-modal__header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.founder-modal__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid var(--green-pale);
  display: grid;
  place-items: center;
  font-size: 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
}
.founder-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-modal__name {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
}
.founder-modal__divider {
  height: 1px;
  background: var(--gray-100);
}
.founder-modal__bio {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}
.founder-modal__quote {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--green);
  font-style: italic;
  line-height: 1.65;
}



/* ── PROJECTS ── */
.projects { background: var(--white); }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.project-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-card--urgent { border-color: #e53935; }
.project-card__urgent {
  position: absolute;
  top: 14px; left: 14px;
  background: #e53935;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}
.project-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--green-pale);
}
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card:hover .project-card__img img { transform: scale(1.04); }
.project-card__img-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-pale));
}
.project-card__body { padding: 24px; }
.project-card__status { margin-bottom: 10px; }
.project-card__status--active span { color: var(--green); font-size: 12px; font-weight: 600; }
.project-card__status--completed span { color: var(--blue); font-size: 12px; font-weight: 600; }
.project-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-card__desc { font-size: 13.5px; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }

.progress-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 50px;
  transition: width 1s ease;
}
.project-card__amounts {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}
.project-card__raised { color: var(--green); font-weight: 600; }
.project-card__pct { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.projects__more { text-align: center; }

/* ── NEWS ── */
/* ── NEWS ── */
.news { position: relative; padding: 96px 0; }
.news__bg {
  position: absolute; inset: 0;
  background: var(--off-white);
}
.news .container { position: relative; z-index: 1; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

/* Featured first card spans 2 rows */
.news-card--featured {
  grid-column: span 2;
  flex-direction: row;
}
.news-card--featured .news-card__img {
  width: 55%;
  flex-shrink: 0;
  height: auto;
}
.news-card--featured .news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}
.news-card--featured .news-card__title { font-size: 22px; }

.news-card__img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-pale));
  position: relative;
  flex-shrink: 0;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.news-card__placeholder-icon { font-size: 48px; opacity: 0.4; }
.news-card__category-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.news-card__date { font-size: 12px; color: var(--gray-500); }
.news-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-card__summary {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
  margin-top: auto;
}
.news-card__read {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.news-card__arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.news-card:hover .news-card__arrow {
  background: var(--green);
  color: white;
  transform: translateX(3px);
}

/* ── HERO SOCIAL ── */
.hero__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.hero__social-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-right: 4px;
}
.hero__social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  text-decoration: none;
}
.hero__social-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.6);
}
.hero__social-btn--fb:hover  { background: #1877f2; border-color: #1877f2; }
.hero__social-btn--ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.hero__social-btn--tw:hover  { background: #000; border-color: #000; }
.hero__social-btn--yt:hover  { background: #ff0000; border-color: #ff0000; }
.hero__social-btn--tk:hover  { background: #010101; border-color: #010101; }


/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery__filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  background: white;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  background: var(--gray-100);
}
.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay--video { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); opacity: 1; }
.gallery__overlay-icon {
  font-size: 36px;
  color: white;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  margin-bottom: 8px;
  transition: transform 0.2s;
}
.gallery__item:hover .gallery__overlay-icon { transform: scale(1.1); }
.gallery__overlay-title {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  padding: 0 12px;
  text-align: center;
}
.gallery__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: white;
  font-weight: 500;
}
.gallery__placeholder span { font-size: 36px; }
.gallery__placeholder--1 { background: linear-gradient(135deg, #1a6b3c, #43a047); }
.gallery__placeholder--2 { background: linear-gradient(135deg, #1565c0, #1976d2); }
.gallery__placeholder--3 { background: linear-gradient(135deg, #2e7d32, #1a6b3c); }
.gallery__placeholder--4 { background: linear-gradient(135deg, #0d47a1, #1565c0); }
.gallery__placeholder--5 { background: linear-gradient(135deg, #43a047, #66bb6a); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: white;
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.25); }
.lightbox__content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}



/* ── TESTIMONIALS ── */
.testimonials { position: relative; padding: 96px 0; }
.testimonials__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, #0e4d28 100%);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section__tag { background: rgba(255,255,255,0.15); color: white; }
.testimonials .section__title { color: white; }

.testimonials__slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  position: relative;
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 0.8;
  color: rgba(255,255,255,0.25);
  margin-bottom: 12px;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 15px; }
.testimonial-card__author span { font-size: 12px; opacity: 0.7; }

/* ── TRANSPARENCY ── */
.transparency { background: var(--white); }
.transparency__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.transparency__chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.donut-chart { position: relative; }
.transparency__legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.legend-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.transparency__faq h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 24px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--gray-50);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.faq-q:hover, .faq-q.open { color: var(--green); background: var(--green-pale); border-color: var(--green-pale); }
.faq-a {
  display: none;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.faq-a.open { display: block; }

.transparency__reports { }
.transparency__reports h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}
.reports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.report-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.report-card:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
.report-card__icon { font-size: 28px; }
.report-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.report-card__info strong { font-size: 14px; color: var(--text); }
.report-card__info span { font-size: 12px; color: var(--gray-500); }

/* ── DONATE ── */
.donate { position: relative; padding: 96px 0; }
.donate__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f0faf5 0%, #e8f2ff 100%);
}
.donate .container { position: relative; z-index: 1; }
.donate__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.donate__left .section__tag { margin-bottom: 16px; }
.donate__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.donate__text { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.donate__impact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-light);
}
.impact-icon { font-size: 20px; }
.donate__security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  background: var(--green-pale);
  border-radius: 8px;
  padding: 10px 14px;
}

.donate__form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.donate__type-toggle {
  display: flex;
  gap: 8px;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 24px;
}
.type-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition);
}
.type-btn.active {
  background: white;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 12px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
  background: white;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}
.donate__custom {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}
.donate__custom input {
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  width: 100%;
}
.donate__fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.donate__project-select { margin-bottom: 18px; }
.donate__project-select label { font-size: 13px; color: var(--text-light); margin-bottom: 6px; display: block; }
.donate__trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-500);
}

/* ── FORMS ── */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--green); background: var(--green-pale); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8H0z' fill='%23888'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

/* ── VOLUNTEERS ── */
.volunteers { background: var(--white); }
.volunteers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.volunteers__info { display: flex; flex-direction: column; gap: 24px; }
.volunteer-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.volunteer-benefit:hover { border-color: var(--green-mid); background: var(--green-pale); }
.volunteer-benefit__icon { font-size: 28px; flex-shrink: 0; }
.volunteer-benefit strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.volunteer-benefit p { font-size: 13.5px; color: var(--text-light); }

.volunteers__form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.volunteers__form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 20px;
}
.volunteers__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding: 96px 0; }
.timeline__bg {
  position: absolute; inset: 0;
  background: var(--off-white);
}
.timeline .container { position: relative; z-index: 1; }
.timeline__list {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline__list::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}
.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.timeline__dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--green-mid);
}
.timeline__dot--current {
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-pale);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px var(--blue-pale); }
  50% { box-shadow: 0 0 0 8px rgba(21,101,192,0.15); }
}
.timeline__year {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline__content strong { font-size: 16px; color: var(--text); display: block; margin-bottom: 4px; }
.timeline__content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── ALLIES ── */
.allies { background: var(--white); }
.allies__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.ally-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  cursor: default;
}
.ally-card:hover { border-color: var(--green-pale); color: var(--green); background: var(--green-pale); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item__icon { font-size: 22px; }
.contact-item strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--text-light); }
.contact__social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  transition: var(--transition);
}
.social-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--green), #0e4d28);
  padding: 64px 0;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.newsletter__text h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: white;
  margin-bottom: 6px;
}
.newsletter__text p { color: rgba(255,255,255,0.75); font-size: 15px; }
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter__input {
  padding: 13px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 14.5px;
  min-width: 280px;
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__input:focus { border-color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__desc { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 16px; line-height: 1.65; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer__social-link:hover { color: white; border-color: var(--green-mid); background: rgba(255,255,255,0.05); }
.footer__nav h4, .footer__legal h4, .footer__contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__nav a, .footer__legal a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer__nav a:hover, .footer__legal a:hover { color: var(--green-mid); }
.footer__contact p { font-size: 13.5px; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.footer__contact .btn--donate { margin-top: 12px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── MODALS ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal.open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
.modal__box--lg { max-width: 680px; text-align: left; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 18px;
  color: var(--gray-500);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
}
.modal__close:hover { background: var(--gray-100); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__icon { font-size: 48px; margin-bottom: 16px; }
.modal__title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 10px;
}
.modal__text { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.85);
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-overlay__inner {
  display: flex;
  gap: 12px;
  width: 90%;
  max-width: 600px;
}
.search-overlay__input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  outline: none;
}
.search-overlay__close {
  color: white;
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: #155c32; transform: translateY(-3px); }

/* ── LOGO IMAGE ── */
.logo__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
  padding: 3px;
}
.logo__img--sm {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  padding: 2px;
}

/* ── EXTERNAL DONATE SECTION ── */
.ext-donate {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fdfb 0%, white 100%);
}
.ext-donate__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.ext-donate__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 2px solid var(--gray-100);
  background: white;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.ext-donate__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.ext-donate__card--gofundme::before { background: #00b964; }
.ext-donate__card--paypal::before   { background: #003087; }
.ext-donate__card--donorbox::before { background: var(--green); }
.ext-donate__card--custom::before   { background: var(--green-light); }
.ext-donate__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-mid);
}
.ext-donate__logo {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ext-donate__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ext-donate__info strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.ext-donate__info span {
  font-size: 13px;
  color: var(--text-light);
}
.ext-donate__arrow {
  font-size: 20px;
  color: var(--green);
  font-weight: 700;
  transition: transform 0.2s;
}
.ext-donate__card:hover .ext-donate__arrow { transform: translateX(4px); }
.ext-donate__trust {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

/* ── FLOATING DONATE BUTTON ── */
.donate-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.donate-float__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00b964, #00a055);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,185,100,0.4);
  transition: var(--transition);
  white-space: nowrap;
  animation: floatPulse 3s ease-in-out infinite;
}
.donate-float__btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(0,185,100,0.5);
}
.donate-float__label {
  font-size: 11px;
  opacity: 0.9;
  letter-spacing: 0.3px;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,185,100,0.4); }
  50%       { box-shadow: 0 6px 32px rgba(0,185,100,0.65); }
}
@media (max-width: 768px) {
  .donate-float { bottom: 16px; right: 16px; }
  .donate-float__btn { padding: 12px 16px; font-size: 13px; }
  .ext-donate__grid { grid-template-columns: 1fr; }
  /* Float donate menu fixed to viewport on mobile */
  .float-donate { bottom: 20px; left: 16px; }
  .float-donate__btn { padding: 12px 18px; font-size: 14px; }
  .float-donate__menu {
    position: fixed !important;
    bottom: 90px !important;
    left: 16px !important;
    right: 16px !important;
    min-width: unset !important;
    z-index: 9999;
  }
}


.about__focus-list {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}
.about__focus-list h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.about__focus-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__focus-list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* ── VOLUNTEERS INTRO ── */
.volunteers__intro {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}


.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── EXTERNAL DONATE SECTION ── */
.ext-donate { background: linear-gradient(180deg, var(--off-white) 0%, white 100%); }
.ext-donate__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ext-donate__card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.ext-donate__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ext-donate__card--gfm {
  background: linear-gradient(135deg, #f0faf4, #e8f5e9);
  border-color: #a5d6a7;
}
.ext-donate__card--gfm:hover { border-color: var(--green); }
.ext-donate__card--pp {
  background: linear-gradient(135deg, #e8f0ff, #e3ecfd);
  border-color: #90caf9;
}
.ext-donate__card--pp:hover { border-color: var(--blue); }
.ext-donate__card--internal {
  background: linear-gradient(135deg, #1a6b3c, #0e4d28);
  color: white;
  border-color: transparent;
}
.ext-donate__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ext-donate__logo-icon { font-size: 28px; }
.ext-donate__logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}
.ext-donate__card--gfm .ext-donate__logo-text { color: var(--green); }
.ext-donate__card--pp  .ext-donate__logo-text { color: var(--blue); }
.ext-donate__card--internal .ext-donate__logo-text { color: white; }
.ext-donate__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
  flex: 1;
}
.ext-donate__card--internal .ext-donate__desc { color: rgba(255,255,255,0.8); }
.ext-donate__btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  transition: var(--transition);
}
.ext-donate__card--gfm .ext-donate__btn {
  background: var(--green);
  color: white;
}
.ext-donate__card--pp .ext-donate__btn {
  background: var(--blue);
  color: white;
}
.ext-donate__card--internal .ext-donate__btn {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.ext-donate__card:hover .ext-donate__btn { opacity: .9; }
.ext-donate__badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}
.ext-donate__card--internal .ext-donate__badge { color: rgba(255,255,255,0.6); }

/* ── FLOATING DONATE BUTTON ── */
.float-donate {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.float-donate__pulse {
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 56px;
  border-radius: 50px;
  background: var(--green);
  opacity: 0.4;
  animation: floatPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.4); opacity: 0; }
}
.float-donate__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(26,107,60,0.4);
  transition: var(--transition);
  position: relative;
}
.float-donate__btn:hover { background: #155c32; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,107,60,0.5); }
.float-donate__menu {
  display: none;
  flex-direction: column;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 200px;
  border: 1px solid var(--gray-100);
  animation: slideUp 0.2s ease;
  order: -1;
  margin-bottom: 4px;
}
.float-donate__menu.open { display: flex; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.float-donate__menu-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  padding: 6px 10px 10px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 6px;
}
.float-donate__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  width: 100%;
  text-align: left;
}
.float-donate__option:hover { background: var(--gray-50); }
.float-donate__option--gfm:hover { background: var(--green-pale); color: var(--green); }
.float-donate__option--pp:hover  { background: var(--blue-pale);  color: var(--blue); }
.float-donate__option--internal:hover { background: var(--green-pale); color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .donate__inner { grid-template-columns: 1fr; }
  .transparency__content { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .volunteers__grid { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  /* ── MOBILE NAV ── */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(160deg, #0b2215 0%, #0d2a1a 100%);
    flex-direction: column;
    padding: 16px 16px 28px;
    gap: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .nav.open {
    display: flex;
    animation: mobileNavIn 0.22s ease;
  }
  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* Nav links — full width, clean */
  .nav__link {
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    border-radius: 12px;
    min-height: 52px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: none;
    border-left: 3px solid transparent;
    margin-bottom: 2px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
  .nav__link:active,
  .nav__link:focus {
    background: rgba(67,160,71,0.2);
    border-left-color: #43a047;
    color: #7ed88a;
  }
  /* Section divider before donate button */
  .nav__donate-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    margin-top: 10px;
    background: linear-gradient(135deg, #1a6b3c, #2e7d32);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    min-height: 52px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(26,107,60,0.45);
    letter-spacing: 0.3px;
  }
  .nav__donate-mobile:active {
    background: #155c32;
  }
  /* Make header relative so nav absolute works */
  .header { overflow: visible; }
  .header__inner { position: relative; }
  /* Show hamburger, hide desktop donate */
  .hamburger { display: flex; }
  .header__actions .btn--donate { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .donate__amounts { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { grid-template-columns: 1fr 1fr; display: grid; }
}

/* ═══════════════════════════════════════════
   MOBILE UX IMPROVEMENTS
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  /* Touch targets — minimum 44px tall */
  .btn, button:not(.hamburger):not(.lightbox__prev):not(.lightbox__next),
  .amount-btn, .type-btn, .filter-btn, .lang-btn,
  .founder-card__btn, .project-card .btn, .scroll-top {
    min-height: 44px;
  }

  /* Prevent iOS auto-zoom on input focus (requires font-size >= 16px) */
  input, textarea, select { font-size: 16px !important; }

  /* Hero buttons full-width and stacked */
  .hero__actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; }

  /* Donation amounts 3-column grid */
  .donate__amounts { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .amount-btn { padding: 12px 8px; font-size: 14px; }

  /* Project buttons full width */
  .project-card__actions { flex-direction: column; gap: 8px; }
  .project-card__actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Footer newsletter input + button stacked */
  .newsletter__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter__inner input, .newsletter__inner button { width: 100%; }

  /* Scroll top button not overlapping float donate */
  .scroll-top { right: 16px; bottom: 20px; }

  /* Reduce hero padding */
  .hero { padding-top: 80px; }
}

@media (max-width: 480px) {
  .donate__amounts { grid-template-columns: repeat(2, 1fr); }
  .hero__title-main { font-size: clamp(28px, 9vw, 48px); }
  .hero__stats { grid-template-columns: 1fr 1fr; display: grid; }
  .gallery__grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* Nav overlay when mobile menu is open */
.nav.open::before {
  content: '';
  display: block;
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* Scroll-top button - ensure visible */
.scroll-top {
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(10px);
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
