/* ============================================================
   Fountain Welfare Society — Global Stylesheet
   ------------------------------------------------------------
   BRAND PALETTE (edit here to re-theme the whole site):
   --green   : primary brand green
   --blue    : deep trust blue (hero, footer)
   --orange  : warm CTA accent
   ============================================================ */

:root {
  --green: #1F7A4C;
  --green-dark: #155C38;
  --green-soft: #E4F1E9;
  --blue: #123B63;
  --blue-dark: #0C2A48;
  --blue-soft: #E8F0F8;
  --orange: #F4A340;
  --orange-dark: #DB8A26;
  --orange-soft: #FDF0DB;
  --bg: #F8FAF7;
  --white: #FFFFFF;
  --text: #1E1E1E;
  --text-soft: #4E5A55;
  --line: #E3EAE4;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 6px 24px rgba(18, 59, 99, 0.08);
  --shadow-lg: 0 14px 40px rgba(18, 59, 99, 0.14);
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--blue); font-weight: 700; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Section kicker (handwritten accent, like the theme) ---------- */
.kicker {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.kicker::before {
  content: "";
  width: 34px; height: 3px;
  border-radius: 2px;
  background: var(--green);
  display: inline-block;
}

.section { padding: 84px 0; }
.section-alt { background: var(--white); }
.section-tint { background: var(--green-soft); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::after {
  content: ""; width: 34px; height: 3px; border-radius: 2px;
  background: var(--green); display: inline-block;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--text-soft); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-primary { background: var(--orange); color: var(--blue-dark); box-shadow: 0 6px 18px rgba(244, 163, 64, 0.4); }
.btn-primary:hover { background: var(--orange-dark); color: var(--blue-dark); }

.btn-green { background: var(--green); color: var(--white); box-shadow: 0 6px 18px rgba(31, 122, 76, 0.3); }
.btn-green:hover { background: var(--green-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.btn-outline-dark { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline-dark:hover { background: var(--green); color: var(--white); }

/* ============================ TOP BAR ============================ */
.topbar {
  background: var(--blue-dark);
  color: #C9D8E6;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-right { display: flex; gap: 20px; }

/* ============================ NAVBAR ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(18, 59, 99, 0.08);
  transition: box-shadow 0.25s ease;
}
.navbar.scrolled { box-shadow: 0 6px 22px rgba(18, 59, 99, 0.14); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand-name { font-weight: 700; color: var(--blue); font-size: 1.05rem; line-height: 1.2; }
.brand-name small { display: block; font-family: var(--font-hand); font-size: 0.95rem; color: var(--green); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  color: var(--blue);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); border-bottom-color: var(--orange); }
.nav-links .btn { padding: 10px 22px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger:focus-visible { outline: 3px solid var(--blue); }
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(31, 122, 76, 0.35), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(244, 163, 64, 0.14), transparent 50%),
    var(--blue);
  color: var(--white);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after { /* soft decorative curve, echoes the theme's hand-drawn flourish */
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border: 3px dashed rgba(244, 163, 64, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero .kicker { color: var(--orange); }
.hero .kicker::before { background: var(--orange); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}
.hero h1 .accent {
  font-family: var(--font-hand);
  color: var(--orange);
  font-weight: 600;
  font-size: 1.12em;
}
.hero .subtitle {
  color: var(--orange);
  font-weight: 600;
  font-size: 1.06rem;
  margin-bottom: 16px;
}
.hero p.lead {
  color: #CBD9E6;
  font-size: 0.98rem;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* pill-shaped photo collage, like the reference theme */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}
.hero-collage .pill {
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}
.hero-collage .pill img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .pill-a { height: 380px; grid-row: span 2; }
.hero-collage .pill-b { height: 210px; }
.hero-collage .pill-c { height: 150px; border-radius: var(--radius-lg); }

/* highlights band overlapping hero bottom (adapted from theme's fund band) */
.hero-band {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}
.hero-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-band .band-orange {
  background: var(--orange);
  color: var(--blue-dark);
  padding: 30px 34px;
}
.hero-band .band-orange strong { font-size: 1.15rem; display: block; margin-bottom: 4px; }
.hero-band .band-orange span { font-size: 0.88rem; }
.hero-band .band-green {
  background: var(--green);
  color: var(--white);
  padding: 30px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.hero-band .chip {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.84rem;
  white-space: nowrap;
}

/* ============================ SLIDER ============================ */
.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slides { display: flex; transition: transform 0.65s cubic-bezier(0.6, 0, 0.25, 1); }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 480px; object-fit: cover; }
.slide .caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 42, 72, 0.82), rgba(12, 42, 72, 0.05) 55%);
  display: flex;
  align-items: flex-end;
  padding: 34px 40px;
}
.slide .caption h3 { color: var(--white); font-size: clamp(1.1rem, 2.4vw, 1.6rem); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 4;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}
.slider-arrow:hover { background: var(--orange); }
.slider-arrow:focus-visible { outline: 3px solid var(--white); }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 4;
}
.slider-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dots button.active { background: var(--orange); transform: scale(1.25); }

/* ============================ SPLIT LAYOUTS ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split .img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.split p { color: var(--text-soft); margin-bottom: 16px; }

/* founder */
.founder-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--white);
}
.founder-card img { width: 100%; height: 460px; object-fit: cover; }
.founder-label {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.founder-label strong { color: var(--blue); display: block; }
.founder-label span { color: var(--text-soft); font-size: 0.86rem; }

/* ============================ CARDS ============================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card:nth-child(3n+2) .icon { background: var(--orange-soft); color: var(--orange-dark); }
.card:nth-child(3n) .icon { background: var(--blue-soft); color: var(--blue); }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.92rem; }

/* values (compact cards) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--green);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.value-card:hover { transform: translateY(-5px); }
.value-card:nth-child(even) { border-top-color: var(--orange); }
.value-card .icon { font-size: 1.7rem; margin-bottom: 10px; }
.value-card h3 { font-size: 1rem; }

/* ============================ TRUST / LEGAL BLOCK ============================ */
.trust-block {
  background: var(--blue);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.trust-block::before {
  content: "";
  position: absolute;
  left: -90px; bottom: -90px;
  width: 280px; height: 280px;
  border: 3px dashed rgba(244, 163, 64, 0.3);
  border-radius: 50%;
}
.trust-block h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.trust-block p { color: #C9D8E6; font-size: 0.95rem; margin-bottom: 22px; }

.legal-table {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 8px 24px;
}
.legal-table .row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}
.legal-table .row:last-child { border-bottom: none; }
.legal-table .row dt { color: #A7BCD0; }
.legal-table .row dd { text-align: right; font-weight: 600; }

/* ============================ CTA BANDS ============================ */
.cta-band {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(244, 163, 64, 0.18), transparent 50%),
    var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band.blue {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(31, 122, 76, 0.4), transparent 55%),
    var(--blue);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 680px; margin: 0 auto 28px; }

/* ============================ FAQ ============================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  text-align: left;
  cursor: pointer;
}
.faq-q:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }
.faq-q .chev {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .chev { transform: rotate(180deg); background: var(--orange); color: var(--blue-dark); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 24px 22px; color: var(--text-soft); font-size: 0.94rem; }

/* ============================ PAGE HERO (inner pages) ============================ */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(31, 122, 76, 0.35), transparent 55%),
    var(--blue);
  color: var(--white);
  padding: 68px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 10px; }
.page-hero p { color: #CBD9E6; max-width: 760px; margin: 0 auto; font-size: 0.98rem; }
.page-hero .crumbs { margin-top: 18px; font-size: 0.85rem; color: #9FB6CB; }
.page-hero .crumbs a { color: var(--orange); }

/* ============================ GALLERY ============================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }
.filter-btn:focus-visible { outline: 3px solid var(--blue); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.gallery-item:hover { transform: translateY(-5px); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(12, 42, 72, 0.85), transparent);
  color: var(--white);
  padding: 30px 18px 14px;
  font-size: 0.88rem;
}
.gallery-item .cat-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 12px;
}
.gallery-item.hidden { display: none; }

/* ============================ PROGRAMS PAGE ============================ */
.program-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px dashed var(--line);
}
.program-block:last-child { border-bottom: none; }
.program-block:nth-child(even) .p-img { order: 2; }
.program-block .p-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.program-block .p-img img { width: 100%; height: 320px; object-fit: cover; }
.program-block h2 { font-size: 1.5rem; margin-bottom: 12px; }
.program-block p { color: var(--text-soft); margin-bottom: 12px; font-size: 0.95rem; }
.program-block ul { list-style: none; margin-top: 6px; }
.program-block ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.93rem;
}
.program-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================ FORMS ============================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--green-dark);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 18px;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

/* ============================ DONATE PAGE ============================ */
.donate-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.placeholder-panel {
  background: var(--white);
  border: 2px dashed var(--orange);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.placeholder-panel .pp-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.placeholder-panel .pp-hint {
  font-size: 0.82rem;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 999px;
  display: inline-block;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.detail-rows { border-top: 1px solid var(--line); }
.detail-rows .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.detail-rows .row dt { color: var(--text-soft); }
.detail-rows .row dd { font-weight: 600; color: var(--blue); text-align: right; }
.detail-rows .row dd.tbd { color: var(--orange-dark); font-style: italic; font-weight: 500; }

.note-box {
  background: var(--blue-soft);
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 24px;
}
.note-box strong { color: var(--blue); }

/* ============================ CONTACT PAGE ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.info-card .icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card p { font-size: 0.9rem; color: var(--text-soft); }
.info-card .tbd { color: var(--orange-dark); font-style: italic; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}
.map-wrap img, .map-wrap iframe { width: 100%; height: 400px; object-fit: cover; border: 0; display: block; }

/* ============================ FOOTER ============================ */
.footer {
  background: var(--blue-dark);
  color: #B9C9D8;
  padding: 70px 0 0;
  margin-top: 84px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .f-brand img { width: 44px; height: 44px; }
.footer .f-brand strong { color: var(--white); font-size: 1.02rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #B9C9D8; transition: color 0.2s; }
.footer a:hover { color: var(--orange); }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer .f-contact .tbd { color: var(--orange); font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ============================ FLOATING WHATSAPP ============================ */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; fill: var(--white); }
.float-wa .wa-tip {
  position: absolute;
  right: 70px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.76rem;
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-wa:hover .wa-tip, .float-wa:focus .wa-tip { opacity: 1; }

/* ============================ REVEAL ANIMATIONS ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slides { transition: none; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero-grid, .split, .trust-block, .donate-grid, .contact-grid,
  .program-block { grid-template-columns: 1fr; }
  .program-block:nth-child(even) .p-img { order: 0; }
  .hero-band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 64px 0 96px; }
  .hero-collage { max-width: 480px; }
  .split .img-wrap img { height: 340px; }
}

@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .topbar .tb-right { display: none; }

  .hamburger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 5% 22px;
    box-shadow: 0 16px 24px rgba(18, 59, 99, 0.14);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; padding-top: 14px; }
  .nav-links a { display: block; padding: 14px 4px; }
  .nav-links .btn { width: 100%; }

  .hero-collage { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-collage .pill-a { height: 280px; }
  .hero-collage .pill-b { height: 150px; }
  .hero-collage .pill-c { height: 110px; }

  .slide img { height: 340px; }
  .slide .caption { padding: 22px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-card, .placeholder-panel, .trust-block, .cta-band { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
