/* ═══════════════════════════════════════════
   GLOW NGO — Main Stylesheet
   Palette: Deep navy · Sky blue · Red heart · White
═══════════════════════════════════════════ */

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

:root {
  --navy:    #0d1b3e;
  --blue:    #1a56db;
  --sky:     #38bdf8;
  --red:     #dc2626;
  --white:   #ffffff;
  --off:     #f8faff;
  --text:    #1f2937;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(13,27,62,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
p { line-height: 1.75; color: var(--muted); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,62,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.navbar.scrolled { background: rgba(13,27,62,1); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.2); }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1; }
.brand-tagline { font-size: .65rem; color: var(--sky); letter-spacing: .1em; text-transform: uppercase; }
.nav-brand-text { display: flex; flex-direction: column; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links li a {
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 8px; transition: all .2s;
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: .5rem 1.2rem !important; border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(220,38,38,.4);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 20px rgba(220,38,38,.5) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #d5dbeb 0%, #74a7e0 35%, #1e88e5 65%, #29b6f6 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 7rem 1.5rem 4rem;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.particle {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.2);
  animation: float linear infinite;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.1);
  animation: float linear infinite;
}
@keyframes float { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100px) scale(1); opacity: 0; } }

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-badge {
  display: inline-block; background: rgba(255,255,255,.22); color: #fff;
  border: 1px solid rgba(255,255,255,.4); padding: .4rem 1.2rem; border-radius: 50px;
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; margin-bottom: 1.5rem;
  animation: fadeDown .8s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; color: #f0ebeb;
  line-height: 1.1; margin-bottom: 1.5rem;
  animation: fadeDown .8s .15s ease both;
}
.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeDown .8s .3s ease both;
}

.hero-accent { color: #ffe066; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeDown .8s .45s ease both; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4)); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3 } 50% { opacity: 1 } }

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff; font-weight: 700; font-size: .95rem;
  padding: .8rem 2rem; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(220,38,38,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(220,38,38,.5); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); color: #fff;
  font-weight: 700; font-size: .95rem; padding: .8rem 2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.6); color: #fff; }

.btn-donate-big {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff; font-weight: 800; font-size: 1.1rem;
  padding: 1rem 2.5rem; border-radius: 50px; width: 100%;
  box-shadow: 0 6px 24px rgba(220,38,38,.4);
  transition: transform .2s, box-shadow .2s;
  margin-top: 1.5rem;
}
.btn-donate-big:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(220,38,38,.55); color: #fff; }

/* ════════════════════════════════
   IMPACT BAND
════════════════════════════════ */
.impact-band {
  background: var(--navy);
  padding: 3rem 1.5rem;
}
.impact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1rem;
}
.impact-item { text-align: center; padding: 1.5rem 1rem; }
.impact-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--sky); line-height: 1; }
.impact-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-top: .4rem; }

/* ════════════════════════════════
   SECTIONS GENERIC
════════════════════════════════ */
.section-label {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--blue); margin-bottom: .6rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 600px; }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 3.5rem; }

/* ════════════════════════════════
   MISSION
════════════════════════════════ */
.mission-section { padding: 6rem 1.5rem; background: #fff; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-visual { position: relative; }
.mission-globe {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(26,86,219,.2);
  margin: 0 auto;
}
.mission-logo-big { width: 220px; height: 220px; object-fit: contain; }
.mission-badge-float {
  position: absolute; background: #fff; border-radius: 50px;
  padding: .5rem 1rem; font-size: .8rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-1 { top: 10%; left: -5%; animation-delay: 0s; }
.badge-2 { top: 50%; right: -5%; animation-delay: 1.5s; }
.badge-3 { bottom: 10%; left: 0%; animation-delay: 3s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

.mission-text p { margin-bottom: 1rem; }
.mission-values { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 2rem; }
.value-chip {
  display: flex; align-items: center; gap: .4rem;
  background: #eff6ff; color: var(--blue); border: 1px solid #bfdbfe;
  padding: .4rem 1rem; border-radius: 50px; font-size: .82rem; font-weight: 700;
}

/* ════════════════════════════════
   PROGRAMS
════════════════════════════════ */
.programs-section { padding: 6rem 1.5rem; background: var(--off); }
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem;
}
.program-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  border: 1.5px solid var(--border); display: block;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.pc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.program-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }
.program-card p { font-size: .88rem; margin-bottom: 1rem; }
.pc-stat { font-size: .78rem; font-weight: 800; color: var(--blue); background: #eff6ff; padding: .3rem .9rem; border-radius: 50px; }

/* Programs full list */
.programs-grid-full { display: flex; flex-direction: column; gap: 1rem; }
.program-card-full {
  display: flex; align-items: center; gap: 1.5rem;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 2rem; transition: all .2s;
}
.program-card-full:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateX(4px); }
.pcf-icon { font-size: 2.4rem; flex-shrink: 0; }
.pcf-body { flex: 1; }
.pcf-body h3 { color: var(--navy); margin-bottom: .35rem; font-size: 1.2rem; }
.pcf-body p { font-size: .88rem; margin-bottom: .5rem; }
.pcf-impact { font-size: .78rem; font-weight: 800; color: #059669; }
.pcf-arrow { color: var(--blue); font-size: 1.1rem; }

/* ════════════════════════════════
   DONATE CTA BAND
════════════════════════════════ */
.donate-cta { position: relative; padding: 6rem 1.5rem; overflow: hidden; }
.donate-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 50%, #0e4d92 100%);
}
.donate-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.donate-cta h2 { font-size: 2.8rem; color: #fff; margin-bottom: 1rem; }
.donate-cta p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; }
.donate-amounts { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.amount-btn {
  background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25);
  padding: .6rem 1.5rem; border-radius: 50px; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all .18s; font-family: 'Nunito', sans-serif;
}
.amount-btn.active, .amount-btn:hover { background: var(--red); border-color: var(--red); }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials-section { padding: 6rem 1.5rem; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--off); border-radius: var(--radius);
  padding: 2rem; border: 1.5px solid var(--border); position: relative;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card.featured { background: var(--navy); border-color: var(--navy); }
.testimonial-card.featured p { color: rgba(255,255,255,.85); }
.tc-quote { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--sky); line-height: .6; margin-bottom: .5rem; }
.testimonial-card.featured .tc-quote { color: rgba(255,255,255,.2); }
.testimonial-card p { font-size: .92rem; margin-bottom: 1.5rem; }
.tc-author { display: flex; align-items: center; gap: .75rem; }
.tc-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; flex-shrink: 0; }
.tc-author strong { display: block; font-size: .88rem; color: var(--navy); }
.testimonial-card.featured .tc-author strong { color: #fff; }
.tc-author span { font-size: .78rem; color: var(--muted); }
.testimonial-card.featured .tc-author span { color: rgba(255,255,255,.5); }

/* ════════════════════════════════
   NEWSLETTER
════════════════════════════════ */
.newsletter-section { padding: 4rem 1.5rem; background: var(--off); }
.newsletter-box {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border-radius: 20px; padding: 3rem; display: flex; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
.nl-text h3 { color: #fff; font-size: 1.6rem; margin-bottom: .4rem; }
.nl-text p { color: rgba(255,255,255,.65); }
.nl-form { display: flex; gap: .5rem; flex: 1; min-width: 280px; }
.nl-form input {
  flex: 1; padding: .75rem 1.2rem; border-radius: 50px;
  border: none; font-family: 'Nunito', sans-serif; font-size: .9rem;
  outline: none;
}
.nl-form button {
  background: var(--red); color: #fff; border: none; border-radius: 50px;
  padding: .75rem 1.8rem; font-weight: 700; font-size: .9rem;
  cursor: pointer; font-family: 'Nunito', sans-serif; white-space: nowrap;
  transition: background .2s;
}
.nl-form button:hover { background: #b91c1c; }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero { position: relative; padding: 8rem 1.5rem 5rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero .section-label { color: rgba(255,255,255,.6); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; }
.impact-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1.1rem; border-radius: 50px; font-size: .82rem; font-weight: 700;
  margin-top: 1rem;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-story { padding: 6rem 1.5rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-block { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-stat {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: #fff; padding: 1.5rem;
  border-radius: 16px; text-align: center; min-width: 120px;
  box-shadow: var(--shadow);
}
.stat-big { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--sky); }
.about-text p { margin-bottom: 1rem; }

.values-section { padding: 5rem 1.5rem; background: var(--off); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.value-card { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1.5px solid var(--border); text-align: center; }
.vc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.value-card h3 { color: var(--navy); margin-bottom: .5rem; }

.team-section { padding: 5rem 1.5rem; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.5rem; }
.team-card { text-align: center; padding: 2rem; border: 1.5px solid var(--border); border-radius: var(--radius); transition: all .2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); color: #fff; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-card h4 { color: var(--navy); margin-bottom: .2rem; }
.team-card span { font-size: .78rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: .75rem; }
.team-card p { font-size: .85rem; }

/* ════════════════════════════════
   DONATE PAGE
════════════════════════════════ */
.donate-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.donate-form-card { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-lg); }
.donate-form-card h2 { color: var(--navy); margin-bottom: 1.5rem; }
.donate-amounts-big { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-bottom: 1.5rem; }
.dab {
  padding: .75rem .5rem; border-radius: 10px; border: 2px solid var(--border);
  background: #fff; font-family: 'Nunito', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--navy); cursor: pointer; transition: all .18s;
}
.dab.active, .dab:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.donate-frequency { display: flex; gap: .4rem; margin-bottom: 1.5rem; background: var(--off); padding: .3rem; border-radius: 12px; }
.freq-btn { flex: 1; padding: .55rem; border: none; border-radius: 8px; background: transparent; font-family: 'Nunito', sans-serif; font-size: .85rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .18s; }
.freq-btn.active { background: #fff; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.donate-program-select { margin-bottom: 1.5rem; }
.donate-program-select label { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.donate-program-select select { width: 100%; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: .95rem; outline: none; }

.donate-impact-side { background: var(--navy); border-radius: 20px; padding: 2rem; }
.donate-impact-side h3 { color: #fff; margin-bottom: 1.5rem; }
.impact-row { display: flex; align-items: center; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.impact-row:last-of-type { border-bottom: none; }
.impact-row.highlighted { background: rgba(255,255,255,.07); border-radius: 10px; padding: .75rem 1rem; margin: 0 -.5rem; }
.ir-amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--sky); min-width: 55px; }
.ir-desc { font-size: .85rem; color: rgba(255,255,255,.7); }
.trust-badges { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
.tb-item { display: flex; align-items: center; gap: .6rem; font-size: .8rem; color: rgba(255,255,255,.6); }
.tb-item i { color: #34d399; }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 1rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.ci-icon { width: 38px; height: 38px; background: #eff6ff; color: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item div { font-size: .9rem; line-height: 1.6; color: var(--muted); }
.ci-item strong { color: var(--navy); display: block; }
.contact-socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.contact-socials a { width: 38px; height: 38px; background: var(--off); color: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: all .18s; border: 1px solid var(--border); }
.contact-socials a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.contact-form-card { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-lg); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { margin-bottom: 1.2rem; }
.cf-field label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .45rem; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: .92rem; outline: none; transition: border-color .18s;
  color: var(--text); background: #fff; resize: vertical;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--blue); }

.success-banner {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #dcfce7; border: 1px solid #86efac; border-radius: 12px;
  padding: 1rem 1.2rem; margin-bottom: 1.5rem; color: #166534;
}
.success-banner i { font-size: 1.3rem; margin-top: .1rem; flex-shrink: 0; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: #0d1b3e; color: rgba(255,255,255,.75); }
.footer-wave { line-height: 0; height: 60px; overflow: hidden; background: #fff; }
.footer-wave svg { width: 100%; height: 100%; }
.footer-body { padding: 4rem 1.5rem 2rem; max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; }
.footer-brand-sub { font-size: .62rem; color: var(--sky); text-transform: uppercase; letter-spacing: .1em; }
.footer-about { font-size: .86rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .5rem; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .82rem; transition: all .18s; }
.footer-socials a:hover { background: var(--red); color: #fff; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .86rem; color: rgba(255,255,255,.6); transition: color .18s; }
.footer-col ul li a:hover { color: var(--sky); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .8rem; font-size: .84rem; }
.footer-contact-item i { color: var(--sky); margin-top: .15rem; flex-shrink: 0; }
.footer-donate-btn {
  display: block; margin-top: 1.2rem; text-align: center;
  background: var(--red); color: #fff; padding: .65rem 1rem;
  border-radius: 50px; font-weight: 700; font-size: .86rem;
  transition: background .2s; box-shadow: 0 4px 14px rgba(220,38,38,.35);
}
.footer-donate-btn:hover { background: #b91c1c; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.5); transition: color .18s; }
.footer-bottom-links a:hover { color: var(--sky); }

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

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

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .donate-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,27,62,.98); padding: 1rem; gap: .2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .donate-amounts-big { grid-template-columns: repeat(2,1fr); }
  .mission-globe { width: 240px; height: 240px; }
  .mission-logo-big { width: 160px; height: 160px; }
  .mission-badge-float { display: none; }
}

/* ════════════════════════════════
   ADMIN NAV BUTTON
════════════════════════════════ */
.nav-admin-btn {
  color: rgba(255,255,255,.6) !important;
  font-size: .8rem !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 8px !important;
  padding: .4rem .9rem !important;
  transition: all .2s !important;
  display: flex; align-items: center; gap: .35rem;
}
.nav-admin-btn:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,.4) !important;
  background: rgba(255,255,255,.08) !important;
}

/* ════════════════════════════════
   HOME GALLERY PREVIEW
════════════════════════════════ */
.gallery-preview-section { padding: 6rem 1.5rem; background: #fff; }


/* ════════════════════════════════
   GALLERY PREVIEW — PROFESSIONAL
════════════════════════════════ */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .6rem;
  border-radius: 20px;
  overflow: hidden;
}

/* Featured first item spans 2×2 */
.gp-item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Video play ring — replaces plain icon */
.gp-video-play-ring {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  backdrop-filter: blur(4px);
  transition: transform .25s, background .25s;
}
.gp-item:hover .gp-video-play-ring {
  transform: scale(1.12);
  background: var(--red);
  border-color: var(--red);
}

.gp-video-thumb span {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  margin-top: .5rem;
}

/* Overlay redesign */
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,62,.9) 0%,
    rgba(13,27,62,.3) 50%,
    transparent 100%
  );
  opacity: 0; transition: opacity .3s ease;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  pointer-events: none;
}
.gp-item:hover .gp-overlay { opacity: 1; }

.gp-overlay-top { display: flex; }

.gp-type-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: .3rem .75rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
}

.gp-overlay-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem;
}

.gp-caption {
  color: #fff; font-size: .84rem; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  flex: 1; line-height: 1.4;
}

.gp-view-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: .35rem .85rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  white-space: nowrap; flex-shrink: 0;
  transform: translateY(6px);
  transition: transform .25s, background .25s;
}
.gp-item:hover .gp-view-btn {
  transform: translateY(0);
  background: var(--red);
  border-color: var(--red);
}

/* Stats strip */
.gallery-stats-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto; margin-right: auto;
}
.gss-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
}
.gss-item i { color: var(--blue); font-size: .9rem; }
.gss-divider { width: 1px; height: 20px; background: var(--border); }

/* Professional empty state */
.gallery-empty-pro {
  text-align: center;
  padding: 5rem 2rem;
  background: #fff;
  border-radius: 24px;
  border: 2px dashed var(--border);
}
.gep-icon-wrap {
  width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--blue);
  margin: 0 auto 1.5rem;
}
.gallery-empty-pro h3 {
  color: var(--navy); margin-bottom: .6rem; font-size: 1.4rem;
}
.gallery-empty-pro p { max-width: 400px; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gp-item--featured { grid-column: span 2; grid-row: span 1; }
  .gallery-stats-strip { gap: 1rem; padding: .75rem 1.25rem; }
}
/* ════════════════════════════════
   LIGHTBOX
════════════════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-inner { max-width: 1000px; width: 100%; text-align: center; }
.lightbox-inner img,
.lightbox-inner video {
  max-width: 100%; max-height: 80vh;
  border-radius: 12px; object-fit: contain;
  display: block; margin: 0 auto;
}
#lightboxCaption {
  color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 600;
  margin-top: 1rem; text-align: center;
}
