@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Baloo+2:wght@400;500;600;700;800&display=swap');

:root {
  --turquoise: #1DBFB4;
  --turquoise-light: #5DD8D3;
  --turquoise-dark: #0E9E94;
  --cream: #FFF8EE;
  --cream-dark: #F5ECD8;
  --warm-white: #FFFDF9;
  --coral: #FF6B6B;
  --sun: #FFD166;
  --leaf: #06D6A0;
  --sky: #74C0FC;
  --text-dark: #1A2E2D;
  --text-mid: #3D5A58;
  --text-light: #7A9E9C;
  --shadow: rgba(29,191,180,0.18);
  --radius: 20px;
  --radius-lg: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.15;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,248,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--turquoise-light);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Baloo 2', cursive;
  font-size: 1.35rem; font-weight: 800;
  color: var(--turquoise-dark);
}

.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--turquoise);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px var(--shadow);
}

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  padding: 0.45rem 0.9rem;
  font-weight: 700; font-size: 0.88rem;
  border-radius: 30px;
  transition: all 0.2s;
  color: var(--text-mid);
}

.nav-links a:hover { background: var(--turquoise-light); color: white; }

.nav-donate {
  background: var(--turquoise) !important;
  color: white !important;
  box-shadow: 0 4px 14px var(--shadow);
}

.nav-donate:hover { background: var(--turquoise-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--turquoise-dark); border-radius: 4px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 5rem 2rem 3rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #E0FAF8 0%, var(--cream) 60%);
}

.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35;
  pointer-events: none;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--turquoise); top: -200px; right: -150px; animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--sun); bottom: -100px; left: -100px; animation: blobFloat 10s ease-in-out infinite reverse; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--leaf); top: 30%; left: 20%; animation: blobFloat 12s ease-in-out infinite 2s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white;
  border: 2px solid var(--turquoise-light);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem; font-weight: 800;
  color: var(--turquoise-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turquoise); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--text-dark);
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .accent { color: var(--turquoise); }
.hero h1 .accent-coral { color: var(--coral); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-mid);
  max-width: 580px;
  margin: 1.2rem auto 2rem;
  font-weight: 600;
  line-height: 1.65;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.btn-primary {
  background: var(--turquoise);
  color: white;
  box-shadow: 0 8px 24px var(--shadow);
}
.btn-primary:hover { background: var(--turquoise-dark); transform: translateY(-3px); box-shadow: 0 12px 28px var(--shadow); }

.btn-secondary {
  background: white;
  color: var(--turquoise-dark);
  border: 2.5px solid var(--turquoise);
}
.btn-secondary:hover { background: var(--turquoise); color: white; transform: translateY(-3px); }

.btn-coral {
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 24px rgba(255,107,107,0.3);
}
.btn-coral:hover { background: #e85555; transform: translateY(-3px); }

.hero-earth {
  width: clamp(200px, 30vw, 320px);
  height: clamp(200px, 30vw, 320px);
  margin: 2.5rem auto 0;
  position: relative;
  animation: fadeUp 0.8s 0.4s ease both;
}

.earth-circle {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5DD8D3, #1DBFB4 40%, #0E7A72 80%);
  box-shadow: 0 20px 60px rgba(29,191,180,0.4), inset -20px -20px 40px rgba(0,0,0,0.15);
  position: relative;
  animation: earthSpin 20s linear infinite;
  overflow: hidden;
}

.earth-land {
  position: absolute;
  background: var(--leaf);
  border-radius: 50%;
  opacity: 0.8;
}

.earth-land-1 { width: 45%; height: 55%; top: 15%; left: 20%; border-radius: 60% 40% 50% 60%; }
.earth-land-2 { width: 30%; height: 40%; top: 40%; right: 10%; border-radius: 50% 60% 40% 50%; }
.earth-land-3 { width: 20%; height: 25%; top: 10%; right: 25%; border-radius: 40% 60% 55% 45%; }

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

.earth-hands {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2.5rem, 6vw, 4rem);
  z-index: 5;
}

/* ── SECTION GENERIC ── */
section { padding: 5rem 2rem; }

.section-tag {
  display: inline-block;
  background: var(--turquoise-light);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 560px;
  line-height: 1.65;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--turquoise);
  padding: 3rem 2rem;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 3rem;
}

.stat-item { text-align: center; color: white; }

.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem; font-weight: 900;
  line-height: 1;
}

.stat-label { font-size: 0.9rem; font-weight: 700; opacity: 0.88; margin-top: 0.3rem; }

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29,191,180,0.18);
  border-color: var(--turquoise-light);
}

.card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* ── MISSION SECTION ── */
.mission-section { background: var(--warm-white); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

.mission-card .card-icon { background: #E0FAF8; }

/* ── STORY SECTION ── */
.story-section {
  background: linear-gradient(135deg, #E0FAF8 0%, var(--cream) 100%);
}

.story-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.story-visual {
  position: relative;
}

.story-card-big {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(29,191,180,0.15);
  text-align: center;
  border: 3px solid var(--turquoise-light);
}

.story-emoji { font-size: 5rem; display: block; margin-bottom: 1rem; }
.story-card-big h3 { font-size: 1.5rem; color: var(--turquoise-dark); margin-bottom: 0.5rem; }

.story-floating {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--cream-dark);
}

.story-floating-1 { top: -20px; right: -20px; color: var(--coral); }
.story-floating-2 { bottom: -20px; left: -20px; color: var(--turquoise-dark); }

/* ── IMPACT ── */
.impact-section { background: var(--cream-dark); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 2.5rem auto 0;
}

.impact-card { border-left: 5px solid var(--turquoise); }
.impact-card.coral { border-color: var(--coral); }
.impact-card.sun { border-color: var(--sun); }
.impact-card .card-icon { font-size: 2rem; width: 56px; height: 56px; background: #E0FAF8; border-radius: 14px; }

/* ── FOOTPRINT CALC ── */
.calc-section { background: var(--text-dark); color: white; }
.calc-section .section-title { color: white; }
.calc-section .section-sub { color: rgba(255,255,255,0.7); }

.calc-inner { max-width: 680px; margin: 2.5rem auto 0; }

.calc-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(29,191,180,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.calc-row {
  margin-bottom: 1.5rem;
}

.calc-label {
  font-weight: 700; font-size: 0.9rem;
  color: var(--turquoise-light);
  margin-bottom: 0.5rem;
  display: flex; justify-content: space-between;
}

.calc-label span { color: white; font-size: 1rem; }

input[type="range"] {
  width: 100%; height: 8px;
  border-radius: 4px;
  outline: none; cursor: pointer;
  background: rgba(255,255,255,0.15);
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(29,191,180,0.2);
}

.calc-result {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(29,191,180,0.1);
  border-radius: var(--radius);
  border: 2px solid var(--turquoise);
}

.result-num {
  font-family: 'Baloo 2', cursive;
  font-size: 3.5rem; font-weight: 900;
  color: var(--turquoise-light);
}

.result-label { color: rgba(255,255,255,0.7); font-weight: 600; }
.result-rating { margin-top: 0.5rem; font-size: 1.5rem; }

/* ── PROJECTS ── */
.projects-section { background: var(--warm-white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 2.5rem auto 0;
}

.project-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(29,191,180,0.15); }

.project-header {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}

.project-body { padding: 1.5rem; }
.project-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.project-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }

.project-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  font-size: 0.75rem; font-weight: 800;
  background: var(--turquoise-light); color: white;
}

/* ── QUIZ ── */
.quiz-section { background: linear-gradient(135deg, #E0FAF8, var(--cream-dark)); }

.quiz-inner { max-width: 680px; margin: 2.5rem auto 0; }

.quiz-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(29,191,180,0.12);
  border: 2px solid var(--cream-dark);
}

.quiz-q {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.quiz-options { display: grid; gap: 0.75rem; }

.quiz-opt {
  padding: 1rem 1.4rem;
  border-radius: 14px;
  border: 2.5px solid var(--cream-dark);
  background: var(--cream);
  cursor: pointer;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s;
  text-align: left;
}

.quiz-opt:hover { border-color: var(--turquoise); background: #E0FAF8; }
.quiz-opt.correct { border-color: var(--leaf); background: rgba(6,214,160,0.1); color: var(--leaf); }
.quiz-opt.wrong { border-color: var(--coral); background: rgba(255,107,107,0.1); color: var(--coral); }

.quiz-feedback {
  margin-top: 1rem; padding: 1rem;
  border-radius: 12px; font-weight: 700;
  display: none;
}
.quiz-feedback.show { display: block; }
.quiz-feedback.good { background: rgba(6,214,160,0.1); color: #05a87e; border: 2px solid var(--leaf); }
.quiz-feedback.bad { background: rgba(255,107,107,0.1); color: #c44; border: 2px solid var(--coral); }

.quiz-progress { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.quiz-dot { flex: 1; height: 8px; border-radius: 4px; background: var(--cream-dark); transition: background 0.3s; }
.quiz-dot.done { background: var(--turquoise); }

/* ── DONATE ── */
.donate-section { background: var(--turquoise); color: white; text-align: center; }
.donate-section .section-title { color: white; }

.donate-amounts {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin: 2rem auto;
}

.donate-btn {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  border: 3px solid rgba(255,255,255,0.5);
  background: transparent; color: white;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.donate-btn:hover, .donate-btn.active {
  background: white;
  color: var(--turquoise-dark);
  border-color: white;
  transform: scale(1.05);
}

.donate-custom {
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  border: 3px solid rgba(255,255,255,0.5);
  background: transparent; color: white;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem; font-weight: 700;
  text-align: center; width: 160px;
  outline: none;
}

.donate-custom::placeholder { color: rgba(255,255,255,0.6); }

.donate-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white;
  color: var(--turquoise-dark);
  font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 1.1rem;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.2s;
}
.donate-link:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.2); }

/* ── VOLUNTEER ── */
.volunteer-section { background: var(--warm-white); }

.volunteer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}

.volunteer-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(29,191,180,0.12);
  border: 2px solid var(--cream-dark);
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-weight: 700; font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 2px solid var(--cream-dark);
  background: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--turquoise); background: white; }

.form-group textarea { height: 100px; resize: none; }

/* ── CONTACT ── */
.contact-section { background: var(--cream-dark); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1100px; margin: 2.5rem auto 0; align-items: start;
}

.contact-info { }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  background: white; border-radius: 14px;
  padding: 1rem 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.contact-info-icon { font-size: 1.5rem; }
.contact-info-item strong { display: block; font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-link {
  width: 48px; height: 48px;
  background: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(29,191,180,0.2); }

/* ── LIVE COUNTER ── */
.counter-strip {
  background: var(--leaf);
  padding: 2rem;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 2rem;
}
.counter-item { text-align: center; color: white; }
.counter-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2.5rem; font-weight: 900; line-height: 1;
}
.counter-label { font-size: 0.82rem; font-weight: 700; opacity: 0.9; margin-top: 0.3rem; }

/* ── EDUCATION ── */
.edu-section { background: var(--cream); }
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 2.5rem auto 0;
}

.edu-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  border-top: 5px solid var(--turquoise);
}
.edu-card:hover { transform: translateY(-5px); }
.edu-card.coral-top { border-color: var(--coral); }
.edu-card.sun-top { border-color: var(--sun); }
.edu-card.leaf-top { border-color: var(--leaf); }

.edu-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.edu-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.edu-link { color: var(--turquoise-dark); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 0.3rem; }
.edu-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr; gap: 3rem;
  align-items: center;
}

.footer-hb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-hb-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 0.3rem;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  border: 2px solid rgba(93,216,211,0.25);
  transition: all 0.25s;
  width: 100%;
  text-align: center;
}

.footer-hb-link:hover {
  border-color: var(--turquoise-light);
  background: rgba(29,191,180,0.08);
  transform: translateY(-3px);
}

.footer-hb-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-hb-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--turquoise-light);
  letter-spacing: -0.01em;
  line-height: 1;
}

.footer-brand h3 {
  font-size: 1.5rem; color: var(--turquoise-light);
  margin-bottom: 0.6rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 { color: var(--turquoise-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--turquoise-light); }

.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1rem;
}

.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

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

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story-inner, .volunteer-inner, .contact-grid, .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-floating { display: none; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 2px solid var(--turquoise-light); padding: 1rem; gap: 0.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-strip { gap: 1.5rem; }
}

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

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success .check { font-size: 3rem; margin-bottom: 1rem; }

/* ── STORY PHOTOS STACK ── */
.story-photos-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: 420px;
}

.story-photo-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(29,191,180,0.2);
  border: 4px solid white;
  z-index: 2;
}

.story-photo-main img {
  width: 100%; height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.story-photo-casual {
  position: absolute;
  bottom: 0; right: 0;
  width: 62%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  border: 4px solid white;
  z-index: 3;
}

.story-photo-casual img {
  width: 100%; height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── PROJECT PHOTO HEADER ── */
.project-header-photo {
  height: 200px !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}

.project-header-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.project-card:hover .project-header-photo img {
  transform: scale(1.05);
}

.project-header-overlay {
  position: absolute;
  bottom: 10px; right: 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ── HERO LOGO BIG ── */
.hero-logo-big {
  margin: 2.5rem auto 0;
  width: clamp(180px, 28vw, 280px);
  animation: fadeUp 0.8s 0.4s ease both, floatBob 5s ease-in-out infinite 1.5s;
  filter: drop-shadow(0 20px 40px rgba(29,191,180,0.35));
}

.hero-logo-big img {
  width: 100%;
}

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

/* ══════════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #E0FAF8 0%, #FFF8EE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}

.loader-globe {
  width: 120px;
  height: 120px;
  animation: globeSpin 3s linear infinite;
  filter: drop-shadow(0 12px 32px rgba(29,191,180,0.35));
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loader-svg .orbit-dot {
  transform-origin: 60px 60px;
  animation: orbitDot 3s linear infinite;
}

@keyframes orbitDot {
  from { transform: rotate(0deg) translateY(-54px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-54px) rotate(-360deg); }
}

.loader-logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--turquoise-dark);
  letter-spacing: -0.02em;
}

.loader-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: -0.3rem;
}

.loader-bar-track {
  width: 220px;
  height: 6px;
  background: rgba(29,191,180,0.15);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--turquoise), var(--leaf));
  border-radius: 99px;
  transition: width 0.3s ease;
}

.loader-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   STORY PHOTOS — SIDE BY SIDE (NO OVERLAP)
══════════════════════════════════════════════ */
.story-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.story-photo-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(29,191,180,0.18);
  border: 3px solid white;
  position: relative;
  background: var(--turquoise-light);
}

.story-photo-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  /* Zoom in to focus on face */
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}

.story-photo-item:hover img {
  transform: scale(1.04);
}

.story-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(29,191,180,0.85));
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 1.2rem 0.75rem 0.55rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Remove old overlapping stack styles – override */
.story-photos-stack { display: none !important; }
.story-photo-main  { display: none !important; }
.story-photo-casual { display: none !important; }

/* ══════════════════════════════════════════════
   CONTACT SECTION - MAHER PORTRAIT (FACE ZOOM)
══════════════════════════════════════════════ */
.contact-maher-photo {
  margin-top: 2rem;
}

.maher-face-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--turquoise);
  box-shadow: 0 10px 32px rgba(29,191,180,0.25);
  display: block;
}

.maher-face-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* zoom to face — top-center crop */
  object-position: center 10%;
  display: block;
}

.maher-caption {
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--turquoise-dark);
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════════
   CONTACT FORM — DONATION AMOUNT SELECTOR
══════════════════════════════════════════════ */
.form-donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.1rem;
}

.form-donate-btn {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 2px solid var(--turquoise-light);
  background: white;
  color: var(--turquoise-dark);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.form-donate-btn:hover,
.form-donate-btn.active {
  background: var(--turquoise);
  color: white;
  border-color: var(--turquoise);
  transform: translateY(-1px);
}

.donation-amount-group {
  background: linear-gradient(135deg, #E0FAF8, #EFFFEC);
  border: 2px solid var(--turquoise-light);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem !important;
}

/* ══════════════════════════════════════════════
   MOBILE OPTIMISATION
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Loader */
  .loader-globe { width: 90px; height: 90px; }
  .loader-logo-text { font-size: 1.4rem; }
  .loader-bar-track { width: 180px; }

  /* Nav */
  nav { padding: 0 1rem; }

  /* Hero */
  .hero { padding: 5rem 1.2rem 2.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.7rem; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Story */
  .story-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .story-photos-row { grid-template-columns: 1fr 1fr; gap: 0.65rem; max-width: 100%; }
  .story-photo-item img { height: 180px; }

  /* Stats strip */
  .stats-strip { grid-template-columns: 1fr 1fr !important; gap: 0.8rem; padding: 1.2rem 1rem; }
  .stat-num { font-size: 1.4rem !important; }

  /* Mission grid */
  .mission-grid { grid-template-columns: 1fr !important; }

  /* Counter strip */
  .counter-strip { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; padding: 1.2rem 1rem; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr !important; }

  /* Impact grid */
  .impact-grid { grid-template-columns: 1fr !important; }

  /* Calc & quiz */
  .calc-inner, .quiz-inner { padding: 0 0.5rem; }
  .calc-card, .quiz-card { padding: 1.2rem 1rem; }

  /* Edu grid */
  .edu-grid { grid-template-columns: 1fr !important; }

  /* Donate amounts */
  .donate-amounts { gap: 0.5rem; }
  .donate-btn { padding: 0.6rem 1rem; font-size: 0.9rem; }

  /* Volunteer */
  .volunteer-inner { grid-template-columns: 1fr !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }
  .maher-face-frame { width: 120px; height: 120px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-brand { text-align: center; }
  .footer-brand > div { justify-content: center !important; }

  /* Form */
  .form-donate-amounts { gap: 0.4rem; }
  .form-donate-btn { padding: 0.45rem 0.8rem; font-size: 0.82rem; }

  /* Sections padding */
  .story-section, .mission-section, .projects-section,
  .impact-section, .edu-section, .volunteer-section, .contact-section {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
}

@media (max-width: 400px) {
  .story-photos-row { grid-template-columns: 1fr; }
  .story-photo-item img { height: 220px; }
}

/* ══════════════════════════════════════════════
   DONATE SECTION CTA SCROLL
══════════════════════════════════════════════ */
.donate-link {
  display: inline-block;
  margin-top: 1.5rem;
  background: white;
  color: var(--turquoise-dark);
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: all 0.25s;
  cursor: pointer;
}
.donate-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
  background: var(--cream);
}

/* ── PHOTO FACE-CROP HELPERS ── */
/* maher_swag.png — face is at top ~20% of the image */
.photo-face-top {
  object-position: center 25% !important;
}

/* maher_casual.jpeg — Maher is seated centre-frame, face ~35% from top */
.photo-face-mid {
  object-position: center 30% !important;
}

/* Contact circle portrait — tighter face zoom for maher_swag */
.maher-face-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--turquoise);
  box-shadow: 0 10px 32px rgba(29,191,180,0.25);
  display: block;
  position: relative;
}

.maher-face-frame img {
  position: absolute;
  width: 100%;
  height: 160%;
  object-fit: cover;
  top: -30%;
  left: 0;
}
