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

:root {
  --blue-light:  #AED6F1;
  --blue:        #5DADE2;
  --blue-dark:   #2E86C1;
  --blue-deeper: #1A5276;
  --grey-light:  #F0F4F8;
  --grey:        #8FA3B1;
  --grey-dark:   #4A5568;
  --white:       #FFFFFF;
  --shadow:      0 4px 24px rgba(45,134,193,.12);
  --shadow-lg:   0 12px 48px rgba(45,134,193,.18);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--grey-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 { margin: 12px 0 16px; }
.section-header p { color: var(--grey); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(93,173,226,.12);
  padding: 6px 14px;
  border-radius: 99px;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; color: var(--white); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--blue-deeper); }
h3 { font-size: 1.2rem; font-weight: 600; color: var(--blue-deeper); }
p  { font-size: .97rem; }

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46,134,193,.35);
}
.btn-primary:hover {
  background: var(--blue-deeper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,134,193,.45);
}
.btn-outline {
  background: transparent;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--grey-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(45,134,193,.12);
}
.navbar.scrolled .logo { color: var(--blue-deeper); }
.navbar.scrolled .logo span { color: var(--blue-dark); }
.navbar.scrolled .nav-links a { color: var(--grey-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--blue-dark); }
.navbar.scrolled .hamburger span { background: var(--blue-deeper); }

.nav-container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo span { color: var(--blue-light); }
.logo-icon { font-size: 1.2rem; color: var(--blue-light); }
.logo-light { color: var(--white); }
.logo-light span { color: var(--blue-light); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-light);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-donate { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
  gap: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(174,214,241,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 40%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
  animation: fadeUp .8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.25);
}

.hero-welcome {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 em {
  font-style: normal;
  color: var(--blue-light);
  display: block;
}
.hero-content p,
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero buttons need contrast against the blue gradient background */
.hero-actions .btn-primary {
  background: var(--white);
  color: var(--blue-deeper);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.hero-actions .btn-primary:hover {
  background: var(--grey-light);
  color: var(--blue-deeper);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.9);
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.22);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  max-width: 420px;
  position: relative;
  z-index: 1;
  animation: fadeUp .8s .2s ease both;
}

.hero-illustration {
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  backdrop-filter: blur(8px);
}

.il-icon {
  font-size: 7rem;
  color: rgba(255,255,255,.9);
}

.il-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  animation: spin 18s linear infinite;
}
.il-c1 { width: 380px; height: 380px; animation-duration: 18s; }
.il-c2 { width: 420px; height: 420px; animation-duration: 28s; animation-direction: reverse; }
.il-c3 { width: 460px; height: 460px; animation-duration: 38s; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card i { font-size: 1.6rem; color: var(--blue-dark); }
.hero-card strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--blue-deeper); }
.hero-card span { color: var(--grey); }
.card-float-1 { top: 40px; left: -20px; animation-delay: 0s; }
.card-float-2 { bottom: 60px; right: -10px; animation-delay: 1.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

/* ─── LOGO IMAGE ─────────────────────────────── */
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255,255,255,.92);
  padding: 3px;
  flex-shrink: 0;
}

.logo-img-footer {
  background: rgba(255,255,255,.15);
}

/* ─── LOGO ANCHOR (below hero) ───────────────── */
.logo-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(93,173,226,.15);
}

.logo-anchor img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-anchor-text {
  display: flex;
  flex-direction: column;
}

.logo-anchor-text strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-deeper);
}

.logo-anchor-text span {
  font-size: .8rem;
  color: var(--grey);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ─── HERO PHOTO ─────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  width: 360px;
  height: 420px;
  flex-shrink: 0;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  animation: morphPhoto 10s ease-in-out infinite;
}

@keyframes morphPhoto {
  0%,100% { border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%; }
  33%      { border-radius: 60% 40% 45% 55% / 55% 55% 45% 45%; }
  66%      { border-radius: 50% 50% 65% 35% / 35% 65% 50% 50%; }
}

.hero-photo-ring {
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  animation: morphPhoto 10s ease-in-out infinite, spin 30s linear infinite;
  pointer-events: none;
}

/* ─── ABOUT ──────────────────────────────────── */
.about { background: var(--white); }

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

.about-visual { position: relative; }

.about-img-wrap {
  width: 100%;
  max-width: 480px;
  height: 400px;
  position: relative;
  margin: 0 auto;
}

.about-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-icon-box {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-deeper);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-icon-box i { color: var(--blue-dark); font-size: 1rem; }

.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--grey-dark); line-height: 1.75; margin-bottom: 16px; }

.about-pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pillar > i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pillar strong { display: block; font-weight: 600; color: var(--blue-deeper); font-size: .95rem; }
.pillar span { font-size: .85rem; color: var(--grey); }

/* ─── ON THE GROUND ──────────────────────────── */
.ground { background: var(--grey-light); }

.ground-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.ground-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ground-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.ground-photo:hover img {
  transform: scale(1.03);
}

.ground-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,82,118,.88) 0%, transparent 100%);
  padding: 32px 20px 18px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--white);
  font-size: .85rem;
  line-height: 1.4;
}

.ground-caption i {
  color: var(--blue-light);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ground-cta {
  text-align: center;
}

.ground-cta p {
  font-size: 1.05rem;
  color: var(--grey-dark);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── COMMUNITY BANNER ───────────────────────── */
.community-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.community-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.community-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,82,118,.82) 0%,
    rgba(26,82,118,.55) 50%,
    rgba(26,82,118,.2) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.community-quote {
  max-width: 560px;
}

.community-quote i {
  font-size: 2.5rem;
  color: var(--blue-light);
  margin-bottom: 20px;
  display: block;
  opacity: .7;
}

.community-quote p {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
}

/* ─── MISSION & VISION ───────────────────────── */
.mission {
  background: var(--grey-light);
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: stretch;
}

.mission-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue-light), transparent);
  border-radius: 2px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mission-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 24px;
}

.mission-card h3 { margin-bottom: 16px; font-size: 1.3rem; }
.mission-card p  { color: var(--grey-dark); line-height: 1.8; font-size: .95rem; }

/* ─── IMPACT ──────────────────────────────────── */
.impact {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(174,214,241,.12) 0%, transparent 60%);
}
.impact .section-header { position: relative; z-index: 1; }
.impact .section-label { background: rgba(255,255,255,.15); color: var(--blue-light); }
.impact .section-header h2 { color: var(--white); }
.impact .section-header p { color: rgba(255,255,255,.7); }

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

.stat-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--blue-light);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ─── PROGRAMS ──────────────────────────────────── */
.programs { background: var(--grey-light); }

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

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card.featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
  color: var(--white);
}
.program-card.featured::before { display: none; }
.program-card.featured h3 { color: var(--white); }
.program-card.featured p { color: rgba(255,255,255,.8); }

.program-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.program-icon.blue { background: rgba(93,173,226,.15); color: var(--blue-dark); }
.program-icon.white { background: rgba(255,255,255,.2); color: var(--white); }

.program-card h3 { margin-bottom: 12px; }
.program-card p { color: var(--grey); line-height: 1.7; margin-bottom: 24px; font-size: .93rem; }

.program-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.program-link:hover { gap: 10px; }
.program-link.light { color: var(--blue-light); }

/* ─── STORIES ──────────────────────────────────── */
.stories { background: var(--white); }

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

.story-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.story-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.story-highlight {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
  border: none;
}
.story-highlight p { color: rgba(255,255,255,.9); }

.story-quote { font-size: 1.6rem; color: var(--blue); margin-bottom: 16px; }
.light-quote { color: rgba(255,255,255,.4); }
.story-card > p { font-size: .93rem; line-height: 1.75; color: var(--grey-dark); margin-bottom: 24px; }
.story-highlight > p { color: #ffffff; font-weight: 400; }

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.blue-avatar { background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: var(--white); }
.white-avatar { background: rgba(255,255,255,.25); color: var(--white); }
.story-author strong { display: block; font-size: .92rem; color: var(--blue-deeper); }
.story-highlight .story-author strong { color: var(--white); }
.story-author span { font-size: .8rem; color: var(--grey); }
.story-highlight .story-author span { color: rgba(255,255,255,.65); }

/* ─── HOW TO HELP ──────────────────────────────── */
.help { background: var(--grey-light); }

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

.help-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.help-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(93,173,226,.1);
  line-height: 1;
}
.help-icon {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 20px;
  display: block;
}
.help-card h3 { margin-bottom: 12px; }
.help-card p { color: var(--grey); line-height: 1.7; margin-bottom: 28px; font-size: .93rem; }

/* ─── DONATE BANNER ──────────────────────────── */
.donate-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deeper) 100%);
  padding: 96px 5%;
  position: relative;
  overflow: hidden;
}
.donate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(174,214,241,.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
}
.donate-content {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.donate-text { flex: 1; }
.donate-text h2 { color: var(--white); margin-bottom: 16px; }
.donate-text p { color: rgba(255,255,255,.8); line-height: 1.75; font-size: 1.02rem; }

.donate-amounts { flex-shrink: 0; text-align: center; }

.amount-options {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 10px 20px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,.35);
  background: transparent;
  color: rgba(255,255,255,.8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
}
.amount-btn:hover,
.amount-btn.active {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.amount-impact {
  color: var(--blue-light);
  font-size: .85rem;
  margin-bottom: 20px;
  min-height: 20px;
}
.donate-cta { width: 100%; justify-content: center; }
.donate-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.donate-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.25);
}

.donate-note {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── CONTACT ──────────────────────────────────── */
.contact { background: var(--white); }

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

.contact-info .section-label { margin-bottom: 12px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--grey); line-height: 1.7; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--grey-dark);
  font-size: .9rem;
}
.contact-item i {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-label {
  font-size: .83rem;
  color: var(--grey);
  margin-bottom: 14px;
  margin-top: 4px;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: .95rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

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

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--blue-deeper);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D9E6F0;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--grey-dark);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D9E6F0;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--grey-dark);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA3B1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(46,134,193,.12);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(46,134,193,.12);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(93,173,226,.12);
  border-radius: var(--radius-sm);
  color: var(--blue-dark);
  font-size: .88rem;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }

.form-error {
  display: none;
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(220,53,69,.08);
  border-radius: var(--radius-sm);
  color: #c0392b;
  font-size: .88rem;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}
.form-error.show { display: flex; }

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--blue-deeper);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 16px; font-size: 1.4rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-mini a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-contact-mini a:hover { color: var(--blue-light); }
.footer-contact-mini i { font-size: .8rem; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .88rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: .82rem;
}

/* ─── SCROLL TOP ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-deeper); transform: translateY(-2px); }

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

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

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 24px; }
  .mission-divider { width: 100%; height: 2px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { width: 300px; height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .donate-content { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .programs-grid,
  .stories-grid,
  .help-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; padding: 110px 5% 80px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-content p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-image { display: none; }
  .ground-grid { grid-template-columns: 1fr; }
  .ground-photo img { height: 300px; }
  .community-banner { height: 340px; }
  .community-overlay { padding: 0 5%; }
  .about-img-wrap { height: 300px; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--blue-deeper);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { color: var(--white); font-size: 1.2rem; }
  .nav-donate { display: none; }
  .hamburger { display: flex; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .amount-options { flex-wrap: wrap; justify-content: center; }
  .about-grid { text-align: center; }
  .about-pillars { align-items: center; }
  .pillar { text-align: left; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
