/* ======================================
   Moinee Foundation — Static Website CSS
   ====================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: #1A202C;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* Font Classes */
.font-display { font-family: 'Montserrat', sans-serif; }

/* ========= NAVIGATION ========= */
.nav-header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a {
  padding: 8px 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4A5568;
  font-family: 'Montserrat', sans-serif;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links a:hover { color: #0077B6; background: #EBF5FB; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-outline {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #0077B6;
  border: 1px solid #0077B6;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: #EBF5FB; }
.btn-donate {
  background: #E8537A;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-donate:hover { background: #D43D65; box-shadow: 0 8px 24px rgba(232,83,122,0.25); }
.nav-logo-img--footer {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-logo { display: inline-block; }
.mobile-nav-controls { display: none; align-items: center; gap: 8px; }
.hamburger-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #EBF5FB;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
}
.hamburger-btn i { color: #0077B6; font-size: 15px; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 49;
  padding: 16px 20px;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #4A5568;
  font-family: 'Montserrat', sans-serif;
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-menu a:hover { color: #0077B6; background: #EBF5FB; }

/* ========= HERO SECTION ========= */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  max-height: min(720px, 82vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,55,90,0.88) 0%, rgba(0,100,160,0.72) 45%, rgba(0,55,90,0.45) 100%);
}
.hero-decor-1 {
  position: absolute; top: 64px; right: 96px;
  width: 288px; height: 288px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); opacity: 0.4;
}
.hero-decor-2 {
  position: absolute; top: 128px; right: 160px;
  width: 192px; height: 192px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); opacity: 0.3;
}
.hero-decor-3 {
  position: absolute; bottom: 96px; left: 64px;
  width: 160px; height: 160px;
  border-radius: 50%; background: rgba(232,83,122,0.1);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 92px 40px 72px;
  width: 100%;
}
.hero-text { max-width: 720px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 20px;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: #E8537A;
  animation: pulse 2s infinite;
}
.hero-pill span:last-child {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #a8d8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hero-motto {
  font-size: 14px;
  color: #a8d8f0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: #0077B6;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: none;
}
.btn-primary:hover { background: #005A8C; box-shadow: 0 8px 24px rgba(0,119,182,0.3); }
.btn-donate-hero {
  background: #E8537A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: none;
}
.btn-donate-hero:hover { background: #D43D65; box-shadow: 0 8px 24px rgba(232,83,122,0.3); }
.hero-video-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
  transition: color 0.2s;
}
.hero-video-link:hover { color: #fff; }
.hero-video-link .play-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.hero-video-link:hover .play-circle { border-color: #fff; }
.hero-video-link .play-circle i { font-size: 12px; margin-left: 2px; }

/* Hero floating stats (desktop) */
.hero-stats-float {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  width: 156px;
  color: #fff;
}
.hero-stat-card .number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}
.hero-stat-card .label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}

/* Hero mobile stat row */
.hero-stats-mobile {
  display: none;
  gap: 12px;
  margin-top: 16px;
}
.hero-stats-mobile .mini-stat {
  flex: 1;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  color: #fff;
}
.hero-stats-mobile .mini-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}
.hero-stats-mobile .mini-stat .label {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 56px; }

/* ========= IMPACT STATS BAR ========= */
.stats-bar {
  background: #005A8C;
  padding: 56px 0;
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.stats-bar-header {
  text-align: center;
  margin-bottom: 40px;
}
.stats-bar-header .label {
  color: #a8d8f0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.stats-bar-header .title {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-top: 4px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.stat-icon i { color: #a8d8f0; font-size: 18px; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: #fff;
  line-height: 1;
}
.stat-label {
  color: #a8d8f0;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.4;
}
.reach-panel {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
}
.reach-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8d8f0;
  margin-bottom: 8px;
}
.reach-panel-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.reach-panel-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}
.reach-panel-text strong { color: #fff; }
.reach-panel-map {
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 12px;
  max-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reach-panel-map img {
  width: 100%;
  max-height: 176px;
  object-fit: contain;
  display: block;
}

/* ========= MISSION / ABOUT ========= */
.mission {
  background: #fff;
  padding: 96px 0;
}
.mission-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mission-content .body-text { margin-bottom: 20px; }
.mission-content .mission-quote { margin-bottom: 24px; }
.mission-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 32px rgba(0,119,182,0.12);
  min-height: 300px;
}
.mission-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.mission-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #E2E8F0;
}
.mission-fact {
  text-align: center;
  padding: 20px 16px;
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mission-fact:hover {
  border-color: #0077B6;
  box-shadow: 0 6px 20px rgba(0,119,182,0.08);
}
.mission-fact i {
  font-size: 22px;
  color: #0077B6;
  margin-bottom: 10px;
  display: block;
}
.mission-fact:nth-child(2) i { color: #E8537A; }
.mission-fact:nth-child(3) i { color: #16A34A; }
.mission-fact:nth-child(4) i { color: #D97706; }
.mission-fact strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1A202C;
  margin-bottom: 4px;
}
.mission-fact span {
  font-size: 12px;
  color: #718096;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.pill-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.pill-tag .text {
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pill-blue { background: #EBF5FB; }
.pill-blue .dot { background: #0077B6; }
.pill-blue .text { color: #0077B6; }
.pill-pink { background: #FDE8EF; }
.pill-pink .dot { background: #E8537A; }
.pill-pink .text { color: #E8537A; }
.pill-gold { background: #FFF8EC; }
.pill-gold .text { color: #D97706; }

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  color: #1A202C;
  margin-bottom: 24px;
}
.body-text {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 24px;
}
.mission-quote {
  border-left: 4px solid #E8537A;
  padding-left: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 32px;
}
.mission-quote p {
  font-size: 16px;
  font-style: italic;
  color: #4A5568;
  line-height: 1.6;
}
.mission-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-secondary {
  background: #0077B6;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
}
.btn-secondary:hover { background: #005A8C; }
.link-arrow {
  color: #0077B6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 12px; }

/* Pillars */
.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #F7FAFC;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon i { font-size: 20px; }
.pillar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1A202C;
  margin-bottom: 6px;
}
.pillar-card p {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
}

/* ========= PROGRAMS ========= */
.programs {
  background: #EBF5FB;
  padding: 96px 0;
}
.programs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-heading { margin-bottom: 16px; }
.section-header .section-desc {
  font-size: 17px;
  color: #4A5568;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.program-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-card-media {
  height: 132px;
  overflow: hidden;
  flex-shrink: 0;
}
.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.program-card:hover .program-card-media img { transform: scale(1.05); }
.program-card-content {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,119,182,0.15);
}
.program-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.program-icon i { font-size: 20px; }
.program-tag {
  display: inline-block;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.program-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1A202C;
  margin-bottom: 12px;
  line-height: 1.35;
}
.program-card .desc {
  font-size: 13px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.program-stat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 16px;
}
.program-stat i { font-size: 10px; margin-right: 4px; }
.program-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0077B6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: gap 0.2s;
}
.program-link:hover { gap: 12px; }
.program-link i { font-size: 11px; transition: transform 0.2s; }
.program-link:hover i { transform: translateX(4px); }

/* ========= PHOTO GALLERY ========= */
.photo-gallery {
  background: #F7FAFC;
  padding: 96px 0;
  border-top: 1px solid #E2E8F0;
}
.photo-gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.photo-gallery-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.photo-gallery-head-text .section-heading { margin-bottom: 16px; text-align: left; }
.photo-gallery-head-text .section-desc {
  text-align: left;
  margin: 0;
  max-width: 560px;
}
.photo-gallery-stats {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.gallery-stat {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0,119,182,0.06);
}
.gallery-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #0077B6;
  line-height: 1;
  margin-bottom: 6px;
}
.gallery-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.photo-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 200px 200px 180px;
  gap: 20px;
}
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0,55,90,0.08);
  background: #005A8C;
  min-height: 0;
}
.gallery-card--featured {
  grid-row: 1 / 3;
  grid-column: 1;
}
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,35,60,0.92) 0%,
    rgba(0,55,90,0.45) 45%,
    transparent 72%
  );
  z-index: 2;
  transition: background 0.3s ease;
}
.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,35,60,0.95) 0%,
    rgba(0,55,90,0.55) 55%,
    rgba(0,55,90,0.15) 100%
  );
}
.gallery-card-tag {
  align-self: flex-start;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 10px;
}
.gallery-card-tag.tag-fln { background: #EBF5FB; color: #0077B6; }
.gallery-card-tag.tag-blue { background: rgba(235,245,251,0.95); color: #0077B6; }
.gallery-card-tag.tag-pink { background: #FDE8EF; color: #E8537A; }
.gallery-card-tag.tag-green { background: #DCFCE7; color: #16A34A; }
.gallery-card-tag.tag-gold { background: #FFF8EC; color: #D97706; }
.gallery-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}
.gallery-card--featured .gallery-card-title { font-size: 22px; margin-bottom: 8px; }
.gallery-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-card--featured .gallery-card-desc {
  font-size: 14px;
  -webkit-line-clamp: 3;
  max-width: 90%;
}

/* ========= VOICES ========= */
.voices {
  background: #F7FAFC;
  padding: 80px 0;
  border-top: 1px solid #E2E8F0;
}
.voices-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.voice-card:hover {
  box-shadow: 0 12px 32px rgba(0,119,182,0.1);
  transform: translateY(-2px);
}
.voice-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #EBF5FB;
}
.voice-card-quote {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.voice-card-author strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1A202C;
  margin-bottom: 4px;
}
.voice-card-author span {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
}

/* Extended testimonials — student voices with full quotes */
.mf-testimonials {
  padding: 0;
}
.mf-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.mf-testimonial-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0, 55, 90, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mf-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 55, 90, 0.1);
}
.mf-testimonial-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.mf-testimonial-head img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 3px solid #EBF5FB;
  box-shadow: 0 6px 18px rgba(0, 55, 90, 0.1);
}
.mf-testimonial-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #1A202C;
  margin: 0 0 6px;
}
.mf-testimonial-role {
  font-size: 12px;
  color: #718096;
  line-height: 1.5;
  margin: 0;
}
.mf-testimonial-quote {
  margin: 0;
  padding: 0;
  border: none;
}
.mf-testimonial-quote > i {
  display: block;
  font-size: 18px;
  color: #0077B6;
  opacity: 0.35;
  margin-bottom: 10px;
}
.mf-testimonial-quote p {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.75;
  margin: 0 0 12px;
  font-style: italic;
}
.mf-testimonial-quote p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .mf-testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mf-testimonial-card { padding: 22px 20px; }
  .mf-testimonial-head img { width: 64px; height: 64px; }
}

/* ========= CASE STUDY ========= */
.case-study {
  background: #F7FAFC;
  padding: 96px 0;
}
.case-study-card {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.case-study-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 40px rgba(0,119,182,0.08);
  overflow: hidden;
}
.case-study-visual {
  display: flex;
  flex-direction: column;
  background: #EBF5FB;
}
.case-study-photo {
  position: relative;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
}
.case-study-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.case-study-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: #E8537A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(232,83,122,0.35);
}
.case-study-location {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,35,60,0.9), transparent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.case-study-location i { color: #E8537A; font-size: 16px; }
.case-study-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid #E2E8F0;
}
.case-study-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #0077B6;
  line-height: 1;
  flex-shrink: 0;
}
.case-study-metric-text { flex: 1; min-width: 0; }
.case-study-metric-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1A202C;
  margin-bottom: 4px;
}
.case-study-metric-text span {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
}
.case-study-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EBF5FB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-study-metric-icon i { color: #0077B6; font-size: 18px; }

.case-study-content {
  padding: 40px 44px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-study-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.case-study-meta .pill-tag { margin-bottom: 0; }
.case-study-program-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0077B6;
  background: #EBF5FB;
  padding: 6px 12px;
  border-radius: 9999px;
}
.case-study-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  color: #1A202C;
  margin-bottom: 16px;
}
.case-study-lead {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 20px;
}
.case-study-lead strong { color: #1A202C; font-weight: 600; }
.case-study-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
}
.case-study-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4A5568;
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 14px;
  border-radius: 9999px;
}
.case-study-points li i { color: #0077B6; font-size: 11px; }
.case-study-points li:nth-child(1) i { color: #E8537A; }
.case-study-points li:nth-child(3) i { color: #D97706; }

.case-testimonial {
  background: #F7FAFC;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #E8537A;
  margin-bottom: 24px;
  overflow: hidden;
}
.case-testimonial-quote {
  padding: 20px 24px 16px;
}
.case-testimonial-quote > i {
  color: #E8537A;
  opacity: 0.35;
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.case-testimonial-quote p {
  margin: 0;
  font-size: 15px;
  color: #4A5568;
  font-style: italic;
  line-height: 1.65;
}
.case-testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid #E2E8F0;
}
.case-testimonial .author-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #EBF5FB;
}
.case-testimonial .author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1A202C;
}
.case-testimonial .author-role {
  color: #718096;
  font-size: 12px;
  margin-top: 2px;
}

/* ========= PARTNERS ========= */
.partners {
  background: #F7FAFC;
  padding: 80px 0;
  border-top: 1px solid #E2E8F0;
}
.partners-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.partners-grid--all {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.partners-grid--all .partner-logo {
  height: 56px;
  padding: 8px 12px;
}
.partners-grid--all .partner-logo img {
  max-height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.partner-logo {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }
.partner-logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.partner-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #4A5568;
}
.institutional-partners {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.institutional-partners .label {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
}
.institutional-tag {
  background: #fff;
  border: 1px solid #E2E8F0;
  color: #4A5568;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.institutional-tag:hover {
  border-color: #0077B6;
  box-shadow: 0 4px 12px rgba(0,119,182,0.1);
}
.institutional-tag img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.institutional-tag:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========= AWARDS ========= */
.awards {
  background: #fff;
  padding: 96px 0;
}
.awards-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.award-card {
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.award-card:hover { border-color: #0077B6; }
.award-card.featured {
  background: #005A8C;
  border-color: #005A8C;
}
.award-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.award-icon i { font-size: 24px; }
.award-tag {
  display: inline-block;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.award-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.award-card .award-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.award-stars { display: flex; align-items: center; justify-content: center; gap: 4px; }
.award-stars i { font-size: 11px; color: #F5A623; }
.award-year { font-size: 12px; margin-top: 8px; }

/* Award card colors */
.award-card:not(.featured) h3 { color: #1A202C; }
.award-card:not(.featured) .award-desc { color: #718096; }
.award-card:not(.featured) .award-year { color: #718096; }
.award-card.featured h3 { color: #fff; }
.award-card.featured .award-desc { color: rgba(255,255,255,0.75); }
.award-card.featured .award-year { color: rgba(255,255,255,0.6); }

/* Mobile award cards */
.awards-mobile { display: none; flex-direction: column; gap: 16px; }
.award-card-mobile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #F7FAFC;
}
.award-card-mobile.featured {
  background: #005A8C;
  border-color: #005A8C;
}
.award-card-mobile .award-icon-sm {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.award-card-mobile .award-icon-sm i { font-size: 18px; }
.award-card-mobile h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.award-card-mobile .award-info { font-size: 12px; }
.award-card-mobile:not(.featured) h3 { color: #1A202C; }
.award-card-mobile:not(.featured) .award-info { color: #718096; }
.award-card-mobile.featured h3 { color: #fff; }
.award-card-mobile.featured .award-info { color: rgba(255,255,255,0.7); }

/* ========= CTA JOIN ========= */
.cta-join {
  background: #005A8C;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-join--has-bg {
  background:
    linear-gradient(105deg, rgba(0,55,90,0.92) 0%, rgba(0,90,140,0.88) 50%, rgba(0,55,90,0.85) 100%),
    url('../images/cta-bg.jpg') center / cover no-repeat;
}
.cta-join-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}
.cta-join .decor-circle-1 {
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translate(25%, -50%);
}
.cta-join .decor-circle-2 {
  position: absolute; bottom: 0; left: 0;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translate(-25%, 33%);
}
.cta-header {
  text-align: center;
  margin-bottom: 56px;
}
.cta-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: #fff;
  margin-bottom: 20px;
}
.cta-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: background 0.2s;
}
.cta-card:hover { background: rgba(255,255,255,0.15); }
.cta-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta-card-icon i { color: #fff; font-size: 24px; }
.cta-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-btn-donate {
  display: block;
  background: #E8537A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 9999px;
  text-align: center;
  transition: all 0.2s;
  border: none;
}
.cta-btn-donate:hover { box-shadow: 0 8px 24px rgba(232,83,122,0.3); }
.cta-btn-white {
  display: block;
  background: #fff;
  color: #005A8C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 9999px;
  text-align: center;
  transition: all 0.2s;
  border: none;
}
.cta-btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ========= FOOTER ========= */
.footer {
  background: #0D1F2D;
  padding: 64px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.social-links { display: flex; align-items: center; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-links a:hover { background: #0077B6; }
.social-links a i { color: #fff; font-size: 13px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact li i {
  color: #E8537A;
  font-size: 12px;
  margin-top: 4px;
}
.footer-contact li span,
.footer-contact li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact li a:hover { color: #fff; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: #0077B6; }
.newsletter-form button {
  width: 100%;
  background: #E8537A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.newsletter-form button:hover { box-shadow: 0 4px 16px rgba(232,83,122,0.3); }
.gptw-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.gptw-badge i { color: #16A34A; font-size: 12px; }
.gptw-badge-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.gptw-badge span { font-size: 12px; color: rgba(255,255,255,0.5); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-bottom-left span { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-left .sep { color: rgba(255,255,255,0.2); }
.footer-bottom-left a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-left a:hover { color: rgba(255,255,255,0.7); }
.sdg-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sdg-badges .sdg-label {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-right: 4px;
}
.sdg-badge {
  width: 28px; height: 28px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

/* ========= MOBILE BOTTOM TAB BAR ========= */
.mobile-tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  z-index: 50;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  padding: 8px 8px;
  justify-content: space-around;
  align-items: center;
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
}
.tab-item i { font-size: 16px; color: #718096; }
.tab-item span {
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #718096;
}
.tab-item.active i { color: #0077B6; }
.tab-item.active span { color: #0077B6; font-weight: 600; }
.tab-item.donate-tab i { color: #E8537A; }
.tab-item.donate-tab span { color: #E8537A; font-weight: 600; }


/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-panel { grid-template-columns: 1fr 1.1fr; padding: 24px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .mission-facts { grid-template-columns: repeat(2, 1fr); }
  .mission-media { min-height: 240px; }
  .mission-media img { min-height: 240px; }
  .photo-gallery-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .photo-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 250px;
  }
  .gallery-card:not(.gallery-card--featured) { min-height: 180px; }
}

@media (max-width: 992px) {
  .nav-main { display: none; }
  .mobile-nav-controls { display: flex; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-logo-img { height: 36px; max-width: 130px; }
  .mobile-nav-controls .btn-donate {
    padding: 6px 14px;
    font-size: 12px;
    gap: 4px;
  }
  .mobile-nav-controls .btn-donate i { font-size: 10px; }

  /* Hero */
  .hero {
    min-height: auto;
    max-height: none;
    flex-direction: column;
    justify-content: center;
  }
  .hero-overlay {
    background: linear-gradient(160deg, rgba(0,55,90,0.90) 0%, rgba(0,100,160,0.75) 50%, rgba(0,55,90,0.55) 100%);
  }
  .hero-content { padding: 84px 20px 48px; }
  .hero-text { max-width: 100%; }
  .hero-pill { padding: 6px 12px; margin-bottom: 24px; }
  .hero-pill .dot { width: 6px; height: 6px; }
  .hero-pill span:last-child { font-size: 10px; }
  .hero h1 { font-size: 36px; margin-bottom: 16px; }
  .hero-tagline { font-size: 14px; margin-bottom: 8px; }
  .hero-motto { font-size: 11px; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas a { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; }
  .hero-video-link { display: none; }
  .hero-stats-float { display: none; }
  .hero-stats-mobile { display: flex; }
  .hero-wave svg { height: 48px; }
  .hero-decor-1, .hero-decor-2, .hero-decor-3 { display: none; }

  /* Stats */
  .stats-bar { padding: 40px 0; }
  .stats-bar-inner { padding: 0 20px; }
  .stats-bar-header .label { font-size: 11px; letter-spacing: 0.18em; }
  .stats-bar-header .title { font-size: 18px; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
  }
  .stat-icon { width: 36px; height: 36px; margin-bottom: 8px; }
  .stat-icon i { font-size: 14px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 11px; margin-top: 6px; }

  /* Mission */
  .reach-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
    padding: 20px;
  }
  .reach-panel-text h3 { font-size: 20px; }
  .reach-panel-text p { font-size: 13px; }
  .reach-panel-map { max-height: 160px; }

  .mission { padding: 64px 0; }
  .mission-wrap { padding: 0 20px; }
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mission-media { min-height: 240px; }
  .mission-media img { min-height: 240px; }
  .mission-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    padding-top: 28px;
    gap: 10px;
  }
  .mission-fact { padding: 14px 12px; }
  .mission-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .pill-tag { padding: 6px 12px; margin-bottom: 20px; }
  .pill-tag .dot { width: 6px; height: 6px; }
  .pill-tag .text { font-size: 11px; }
  .section-heading { font-size: 28px; margin-bottom: 20px; }
  .body-text { font-size: 14px; }
  .mission-quote p { font-size: 14px; }
  .pillar-card { padding: 20px; gap: 16px; border-radius: 12px; }
  .pillar-icon { width: 44px; height: 44px; }
  .pillar-card h3 { font-size: 14px; }
  .pillar-card p { font-size: 12px; }
  .mission-ctas .link-arrow { display: none; }
  .btn-secondary {
    width: 100%; justify-content: center;
    font-size: 13px; padding: 12px 20px;
  }

  /* Photo Gallery */
  .photo-gallery { padding: 56px 0; }
  .photo-gallery-inner { padding: 0 20px; }
  .photo-gallery-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .photo-gallery-stats {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
  .gallery-stat {
    flex: 1;
    min-width: 100px;
    padding: 14px 16px;
    border-radius: 12px;
  }
  .gallery-stat-num { font-size: 22px; }
  .photo-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-card { min-height: 200px; aspect-ratio: auto; }
  .gallery-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }
  .gallery-card-overlay { padding: 16px; }
  .gallery-card-title { font-size: 15px; }
  .gallery-card--featured .gallery-card-title { font-size: 18px; }
  .gallery-card-desc { font-size: 12px; -webkit-line-clamp: 2; }
  .gallery-card--featured .gallery-card-desc { display: none; }

  /* Voices */
  .voices { padding: 56px 0; }
  .voices-inner { padding: 0 20px; }
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .voice-card { padding: 20px; border-radius: 12px; }
  .voice-card-photo { width: 56px; height: 56px; }

  /* Programs */
  .programs { padding: 56px 0; }
  .programs-inner { padding: 0 20px; }
  .section-header { margin-bottom: 32px; }
  .section-header .section-heading { font-size: 28px; margin-bottom: 12px; }
  .section-header .section-desc { font-size: 14px; }
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .program-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: 12px;
  }
  .program-card:hover { transform: none; }
  .program-card-media { height: 120px; width: 100%; }
  .program-card-content {
    flex: 1;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }
  .program-icon { margin-bottom: 0; width: 48px; height: 48px; flex-shrink: 0; }
  .program-tag { margin-bottom: 8px; font-size: 9px; padding: 2px 10px; }
  .program-card h3 { font-size: 14px; margin-bottom: 4px; }
  .program-card .desc { font-size: 12px; margin-bottom: 8px; }
  .program-stat { display: none; }
  .program-link { font-size: 12px; }

  /* Case Study */
  .case-study { padding: 64px 0; }
  .case-study-card { padding: 0 20px; }
  .case-study-inner {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .case-study-content {
    padding: 28px 24px 32px;
    order: -1;
  }
  .case-study-content h2 { font-size: 26px; }
  .case-study-photo { min-height: 220px; }
  .case-study-photo img { min-height: 220px; }
  .case-study-metric { padding: 16px 20px; }
  .case-study-metric-num { font-size: 32px; }
  .case-study-points { gap: 8px; }
  .case-study-points li { font-size: 11px; padding: 6px 12px; }
  .case-testimonial-quote p { font-size: 13px; }
  .case-testimonial .author-avatar-img { width: 40px; height: 40px; }

  /* Partners */
  .partners { padding: 56px 0; }
  .partners-inner { padding: 0 20px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .partner-logo { height: 48px; border-radius: 12px; }
  .partner-logo span { font-size: 11px; }
  .institutional-partners {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
  }
  .institutional-partners .label { width: 100%; text-align: center; margin-bottom: 4px; }
  .institutional-tag { height: 44px; min-width: 72px; padding: 6px 10px; }
  .institutional-tag img { max-height: 28px; max-width: 80px; }

  /* Awards */
  .awards { padding: 56px 0; }
  .awards-inner { padding: 0 20px; }
  .awards-grid { display: none; }
  .awards-mobile { display: flex; }

  /* CTA */
  .cta-join { padding: 56px 0; }
  .cta-join-inner { padding: 0 20px; }
  .cta-join .decor-circle-1,
  .cta-join .decor-circle-2 { display: none; }
  .cta-header { margin-bottom: 40px; }
  .cta-header h2 { font-size: 30px; margin-bottom: 16px; }
  .cta-header p { font-size: 14px; }
  .cta-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-card { padding: 24px; border-radius: 12px; }
  .cta-card-icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .cta-card-icon i { font-size: 18px; }
  .cta-card h3 { font-size: 18px; margin-bottom: 8px; }
  .cta-card p { font-size: 13px; margin-bottom: 20px; }
  .cta-btn-donate, .cta-btn-white { font-size: 13px; padding: 12px 20px; }

  /* Footer */
  .footer { padding: 48px 0; }
  .footer-inner { padding: 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: span 2; }
  .footer-col-newsletter { grid-column: span 2; }
  .footer-col h4 { font-size: 12px; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-left { flex-direction: column; gap: 8px; }

  /* Tab bar */
  .mobile-tab-bar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Homepage: Innovation, Outcomes, Featured Story ===== */
.home-innovation { padding: 88px 0; background: #F7FAFC; }
.home-innovation-inner, .home-outcomes-inner, .featured-story-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.home-innov-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.home-innov-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.home-innov-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.home-innov-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.home-innov-card h3 { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.home-innov-card p { font-size: 13px; color: #718096; line-height: 1.55; }

.home-outcomes { padding: 88px 0; background: #fff; }
.home-outcomes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.home-outcome-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: #F7FAFC; border-radius: 14px; border: 1px solid #E2E8F0;
}
.home-outcome-card .pct {
  font-family: Montserrat, sans-serif; font-weight: 800; font-size: 26px;
  color: #E8537A; min-width: 72px; line-height: 1;
}
.home-outcome-card p { font-size: 14px; color: #4A5568; line-height: 1.55; }

.featured-story { padding: 88px 0; background: linear-gradient(180deg, #EBF5FB 0%, #fff 100%); }
.featured-story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.featured-story-visual { position: relative; border-radius: 20px; overflow: hidden; }
.featured-story-visual img { width: 100%; height: 260px; object-fit: cover; }
.featured-story-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: #E8537A;
  font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 9999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.featured-story-content h2 {
  font-family: Montserrat, sans-serif; font-weight: 800; font-size: 28px;
  line-height: 1.25; margin-bottom: 16px;
}
.featured-story-content p { color: #4A5568; line-height: 1.7; margin-bottom: 12px; font-size: 15px; }

@media (max-width: 768px) {
  .home-innovation-inner, .home-outcomes-inner, .featured-story-inner { padding: 0 20px; }
  .featured-story-inner { grid-template-columns: 1fr; }
  .featured-story-visual img { height: 240px; }
}
