/* ================================================================
   SUASHI HUMANITARIAN FOUNDATION — Master Theme
   Design: Open Humanity v3.0
   Red #CC1020  |  Teal #1CC6D4  |  Navy #0F2252
   Fonts: Outfit (display) · Inter (body)
================================================================ */

/* ── 1. Tokens ────────────────────────────────────────────── */
:root {
  --red:        #CC1020;
  --red-d:      #9E0C18;
  --red-s:      #FFF0F1;
  --teal:       #1CC6D4;
  --teal-d:     #149BA7;
  --teal-s:     #E0F9FB;
  --navy:       #0F2252;
  --navy-m:     #1A3872;
  --navy-dk:    #010A1E;
  --white:      #FFFFFF;
  --off:        #F8F9FB;
  --g100:       #F1F3F7;
  --g200:       #E2E8F0;
  --g400:       #A0AEC0;
  --g600:       #4A5568;
  --text:       #1A202C;
  --sh-sm:      0 2px 12px rgba(15,34,82,.07);
  --sh-md:      0 8px 32px rgba(15,34,82,.12);
  --sh-lg:      0 20px 60px rgba(15,34,82,.18);
  --sh-red:     0 8px 24px rgba(204,16,32,.28);
  --sh-teal:    0 8px 24px rgba(28,198,212,.25);
  --r:          14px;
  --r-sm:       8px;
  --r-lg:       24px;
  --r-pill:     999px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          .28s;
  /* ── Aliases used in inline styles / legacy classes ── */
  --su-orange:      #CC1020;
  --su-heading:     #0F2252;
  --su-text-muted:  #A0AEC0;
  --su-bg:          #F8F9FB;
  --su-800:         #1A3872;
  --su-700:         #0F2252;
  --su-900:         #010A1E;
  --su-navy:        #0F2252;
  --su-white:       #FFFFFF;
  --su-border:      #E2E8F0;
  --su-border-l:    #EDF1F7;
  --su-text-xmuted: #A0AEC0;
  --su-orange-glow: #FFF0F1;
  --font-display:   'Outfit', sans-serif;
  --dur:            .28s;
  --r-md:           12px;
  --sh-xs:          0 1px 4px rgba(15,34,82,.06);
  --g-navy:         linear-gradient(135deg, #0F2252 0%, #1A3872 100%);
  --gradient-secondary: linear-gradient(135deg, #0F2252 0%, #010A1E 100%);
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -.025em;
}

p { color: var(--g600); line-height: 1.8; }
a { color: var(--red); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--red-d); }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--g100); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

/* ── 3. Preloader ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy-dk);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .5s var(--ease), visibility .5s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo img { width: 180px; animation: suPulse 1.4s ease-in-out infinite; }
@keyframes suPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.96); }
}
.preloader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.12); border-radius: 99px; overflow: hidden; }
.preloader-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--teal)); border-radius: 99px; transition: width .15s linear; }
.preloader-text { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .14em; text-transform: uppercase; }

/* ── 4. Top Bar ───────────────────────────────────────────── */
.su-topbar {
  background: var(--navy-dk);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  overflow: hidden;
}
.su-topbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 24px;
  display: flex; align-items: center; gap: 16px;
}
.su-topbar-msg { flex: 1; }
.su-topbar-msg .fas { color: var(--red); }
.su-topbar-contact {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.su-topbar-contact a {
  color: rgba(255,255,255,.65); font-size: .78rem; display: flex; gap: 5px; align-items: center;
}
.su-topbar-contact a:hover { color: var(--teal); }
.su-topbar-close {
  background: none; border: none; color: rgba(255,255,255,.45); cursor: pointer;
  padding: 2px 6px; border-radius: 4px; transition: color var(--t);
}
.su-topbar-close:hover { color: var(--white); }

/* ── 5. Navbar ────────────────────────────────────────────── */
.su-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  transition: box-shadow var(--t) var(--ease);
}
.su-nav.su-nav-scrolled { box-shadow: var(--sh-md); }
.su-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
  height: 70px;
}
.su-nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.su-nav-logo-img { height: 48px; width: auto; }
.su-nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.su-nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .87rem;
  color: var(--navy); padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: all var(--t) var(--ease);
  display: flex; align-items: center; gap: 5px;
}
.su-nav-link:hover, .su-nav-link.is-active {
  color: var(--red); background: var(--red-s);
}
.su-nav-link-volunteer {
  background: rgba(28,198,212,.1); color: var(--teal-d);
  border: 1px solid rgba(28,198,212,.25);
}
.su-nav-link-volunteer:hover { background: var(--teal); color: var(--white); }
.su-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.su-nav-donate {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .83rem;
  background: var(--red); color: var(--white);
  border: 2px solid var(--red);
  padding: 9px 22px; border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 7px;
  transition: all var(--t) var(--ease);
  box-shadow: var(--sh-red);
}
.su-nav-donate:hover {
  background: var(--red-d); border-color: var(--red-d); color: var(--white);
  transform: translateY(-1px);
}

/* Scroll progress bar */
.su-nav-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--red);
  width: 0; transition: width .1s linear;
}

/* Hamburger */
.su-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.su-hamburger-bar {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.su-hamburger.is-open .su-hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.su-hamburger.is-open .su-hamburger-bar:nth-child(2) { opacity: 0; }
.su-hamburger.is-open .su-hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.su-drawer-overlay {
  position: fixed; inset: 0; z-index: 1199;
  background: rgba(1,10,30,.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.su-drawer-overlay.is-visible { opacity: 1; pointer-events: all; }
.su-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: 300px; max-width: 90vw;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-lg);
}
.su-drawer.is-open { transform: translateX(0); }
.su-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--g200);
}
.su-drawer-close {
  background: var(--g100); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; transition: background var(--t);
}
.su-drawer-close:hover { background: var(--red-s); color: var(--red); }
.su-drawer-nav { flex: 1; overflow-y: auto; padding: 12px; }
.su-drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-sm);
  font-weight: 600; font-size: .92rem; color: var(--navy);
  transition: all var(--t) var(--ease); margin-bottom: 3px;
}
.su-drawer-link i { width: 18px; text-align: center; color: var(--g400); }
.su-drawer-link:hover, .su-drawer-link.is-active {
  background: var(--red-s); color: var(--red);
}
.su-drawer-link:hover i, .su-drawer-link.is-active i { color: var(--red); }
.su-drawer-link-highlight { background: var(--teal-s); color: var(--teal-d); }
.su-drawer-link-highlight i { color: var(--teal-d); }
.su-drawer-cta { padding: 16px 20px; }
.su-drawer-social {
  padding: 16px 20px; border-top: 1px solid var(--g200);
  display: flex; gap: 10px;
}
.su-drawer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g100); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: .85rem; transition: all var(--t);
}
.su-drawer-social a:hover { background: var(--teal); color: var(--white); }

/* ── 6. Buttons ───────────────────────────────────────────── */
.su-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--t) var(--ease);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.su-btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
  box-shadow: var(--sh-red);
}
.su-btn-primary:hover {
  background: var(--red-d); border-color: var(--red-d); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(204,16,32,.38);
}
.su-btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.su-btn-outline:hover {
  background: var(--navy); color: var(--white); transform: translateY(-2px);
}
.su-btn-glass {
  background: rgba(255,255,255,.12); color: var(--white);
  border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px);
}
.su-btn-glass:hover {
  background: rgba(255,255,255,.22); color: var(--white); transform: translateY(-2px);
}
.su-btn-teal {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: var(--sh-teal);
}
.su-btn-teal:hover {
  background: var(--teal-d); border-color: var(--teal-d); color: var(--white);
  transform: translateY(-2px);
}

/* ── 7. Hero ──────────────────────────────────────────────── */
.su-hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center;
}
.su-hero-slides { position: absolute; inset: 0; }
.su-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.su-hero-slide.is-active { opacity: 1; }

/* Overlay layers */
.su-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    140deg,
    rgba(1,10,30,.90) 0%,
    rgba(15,34,82,.72) 50%,
    rgba(1,10,30,.55) 100%
  );
}
.su-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.su-hero-glow {
  position: absolute; top: -120px; right: -80px; z-index: 1;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,16,32,.18) 0%, transparent 70%);
}

/* Hero content */
.su-hero-content {
  position: relative; z-index: 2;
  padding-top: 40px;
}

.su-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: var(--r-pill);
  background: rgba(28,198,212,.12); border: 1px solid rgba(28,198,212,.4);
  color: var(--teal); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.su-hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: blinkDot 1.6s ease-in-out infinite;
}
@keyframes blinkDot { 0%,100%{opacity:1} 50%{opacity:.2} }

.su-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.06; letter-spacing: -.04em;
  margin-bottom: 22px;
}
.su-accent { color: var(--teal); }

.su-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 520px; line-height: 1.82; margin-bottom: 36px;
}

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

.su-hero-stats {
  display: flex; gap: 20px; margin-top: 60px; flex-wrap: wrap;
}
.su-hero-stat {
  background: rgba(255,255,255,.10); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r);
  padding: 14px 22px; min-width: 120px;
}
.su-hero-stat-num {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -.04em; margin-bottom: 4px;
}
.su-hero-stat-lbl {
  display: block; font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase;
}

/* Slide dots */
.su-hero-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px; align-items: center;
}
.su-hero-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: all var(--t) var(--ease); padding: 0;
}
.su-hero-dot.is-active { background: var(--red); width: 26px; }

/* Scroll cue */
.su-hero-scroll {
  position: absolute; bottom: 36px; right: 36px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .9rem;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── 8. Reveal Animations ─────────────────────────────────── */
.su-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.su-reveal.is-visible { opacity: 1; transform: translateY(0); }
.su-reveal-delay-1 { transition-delay: .1s; }
.su-reveal-delay-2 { transition-delay: .2s; }
.su-reveal-delay-3 { transition-delay: .3s; }
.su-reveal-delay-4 { transition-delay: .4s; }

/* ── 9. Trust Strip ───────────────────────────────────────── */
.su-trust {
  background: var(--white); border-bottom: 1px solid var(--g200);
  padding: 16px 0;
}
.su-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.su-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 24px; font-size: .82rem; font-weight: 600; color: var(--navy);
  border-right: 1px solid var(--g200);
}
.su-trust-item:last-child { border-right: none; }
.su-trust-item .fas {
  color: var(--red); font-size: .9rem;
}

/* ── 10. Sections ─────────────────────────────────────────── */
.su-section { padding: 96px 0; }
.su-section-alt { background: var(--off); }

.su-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 16px; border-radius: var(--r-pill);
  font-family: 'Outfit', sans-serif; font-size: .73rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--red-s); color: var(--red);
  border: 1px solid rgba(204,16,32,.15); margin-bottom: 16px;
}

.su-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.13; letter-spacing: -.03em;
  margin-bottom: 14px;
}
.su-section-title span { color: var(--red); }

.su-section-subtitle {
  font-size: 1rem; color: var(--g600); line-height: 1.82;
}

.su-divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  border-radius: 4px; margin: 14px 0 24px;
}
.su-divider-center { margin-left: auto; margin-right: auto; }

/* ── 11. Impact Numbers ───────────────────────────────────── */
.su-impact {
  background: var(--navy-dk); padding: 90px 0;
  position: relative; overflow: hidden;
}
.su-impact::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,16,32,.08) 0%, transparent 60%);
}
.su-impact-grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.su-impact-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white);
  line-height: 1.12; letter-spacing: -.03em;
}
.su-impact-heading span { color: var(--teal); }
.su-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 56px;
}
.su-impact-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center;
  transition: all var(--t) var(--ease);
}
.su-impact-card:hover {
  background: rgba(255,255,255,.09); transform: translateY(-4px);
  border-color: rgba(28,198,212,.3);
}
.su-impact-icon {
  width: 56px; height: 56px; border-radius: var(--r-sm);
  background: rgba(204,16,32,.18); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 20px;
}
.su-impact-card:nth-child(2) .su-impact-icon { background: rgba(28,198,212,.15); color: var(--teal); }
.su-impact-card:nth-child(3) .su-impact-icon { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.su-impact-card:nth-child(4) .su-impact-icon { background: rgba(204,16,32,.18); color: var(--red); }
.su-impact-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -.04em; margin-bottom: 8px;
}
.su-impact-suffix { color: var(--teal); }
.su-impact-lbl {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── 12. Program Cards ────────────────────────────────────── */
.su-program-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--g200); overflow: hidden;
  box-shadow: var(--sh-sm); transition: all var(--t) var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.su-program-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }

/* Color top stripe */
.su-program-card::before {
  content: ''; display: block; height: 5px; flex-shrink: 0;
}
.program-orange::before { background: var(--red); }
.program-navy::before   { background: var(--navy); }
.program-crimson::before{ background: var(--teal); }

.su-program-card-body {
  padding: 32px; flex: 1; display: flex; flex-direction: column; position: relative;
}
.card-number {
  font-family: 'Outfit', sans-serif;
  position: absolute; top: 20px; right: 24px;
  font-size: 4rem; font-weight: 900;
  color: var(--g100); line-height: 1; letter-spacing: -.06em;
  pointer-events: none; user-select: none;
}
.su-program-card:hover .card-number { color: rgba(204,16,32,.06); }

.card-icon {
  width: 54px; height: 54px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px; flex-shrink: 0;
}
.program-orange .card-icon { background: var(--red-s); color: var(--red); }
.program-navy   .card-icon { background: rgba(15,34,82,.07); color: var(--navy); }
.program-crimson .card-icon { background: var(--teal-s); color: var(--teal-d); }

.su-program-card-body h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.su-program-card-body p {
  font-size: .92rem; color: var(--g600); line-height: 1.78; flex: 1; margin-bottom: 22px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Outfit', sans-serif; font-size: .83rem; font-weight: 700;
  color: var(--red); letter-spacing: .05em; text-transform: uppercase;
  padding: 10px 0; border-top: 1px solid var(--g200);
  transition: gap var(--t) var(--ease);
  margin-top: auto;
}
.card-link:hover { gap: 12px; color: var(--red-d); }

/* ── 13. About Section ────────────────────────────────────── */
/* The whole composition is contained inside the wrap (with padding for the
   overhanging badge + float) so nothing collides with the main photo or the
   adjacent text column. */
.su-about-img-wrap {
  position: relative;
  width: 100%; max-width: 500px;
  margin-inline: auto;
  padding: 22px 22px 26px 0;   /* space for float (top-right) + badge (bottom-left) */
}
.su-about-img-main {
  border-radius: var(--r-lg); overflow: hidden;
  width: 100%; box-shadow: var(--sh-lg);
}
.su-about-img-main img {
  width: 100%; height: 460px; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.su-about-img-main:hover img { transform: scale(1.04); }
/* Stat badge — bottom-left, sitting on the corner (inside the wrap padding) */
.su-about-img-badge {
  position: absolute; bottom: 0; left: 0;
  background: var(--red); border-radius: var(--r);
  padding: 18px 24px; text-align: center;
  box-shadow: var(--sh-red); min-width: 128px; z-index: 2;
}
.su-about-img-badge .badge-num {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -.04em;
}
.su-about-img-badge .badge-text {
  display: block; font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.82); letter-spacing: .08em; text-transform: uppercase;
  margin-top: 6px; line-height: 1.4;
}
/* Floating inset photo — top-right corner, contained within the wrap padding */
.su-about-img-float {
  position: absolute; top: 0; right: 0;
  width: 168px; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-lg);
  border: 5px solid var(--white); z-index: 2;
}
.su-about-img-float img { width: 100%; height: 140px; object-fit: cover; display: block; }

/* Pill grid */
.su-pill-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px;
}
.su-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--white);
  border: 1.5px solid var(--g200); border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600; color: var(--navy);
  transition: all var(--t) var(--ease); box-shadow: var(--sh-sm);
}
.su-pill:hover { border-color: var(--red); color: var(--red); background: var(--red-s); transform: translateY(-1px); }
.su-pill-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; flex-shrink: 0;
}

/* ── 14. Live Fundraising ─────────────────────────────────── */
.su-live-section { background: var(--off); }
.live-badge-pulse { position: relative; }
.live-dot-inline {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); margin-right: 4px;
  animation: blinkDot 1.4s ease-in-out infinite;
}
.live-card {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--g200);
  box-shadow: var(--sh-sm); overflow: hidden; height: 100%;
}
.live-card-head {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 20px 24px; border-bottom: 1px solid var(--g200);
  background: var(--g100);
}
.live-card-head-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); font-size: .95rem; }
.live-card-head-sub { font-size: .78rem; color: var(--g400); }
.live-pulse-wrap { position: relative; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; }
.live-pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--red); position: relative;
}
.live-pulse::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--red); opacity: .4; animation: ripple 1.6s ease-out infinite;
}
@keyframes ripple { 0%{transform:scale(.7);opacity:.6} 100%{transform:scale(1.8);opacity:0} }
.live-updated-badge {
  font-size: .72rem; color: var(--g400); display: flex; align-items: center; gap: 4px;
}
.live-total-wrap { padding: 28px 24px 16px; }
.live-total-amount {
  font-family: 'Outfit', sans-serif; font-size: 2.6rem; font-weight: 900;
  color: var(--navy); line-height: 1; letter-spacing: -.04em; margin-bottom: 4px;
}
.live-naira { color: var(--red); }
.live-total-label { font-size: .78rem; color: var(--g400); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.live-progress-section { padding: 0 24px 20px; }
.live-progress-header { display: flex; justify-content: space-between; font-size: .8rem; font-weight: 600; color: var(--g600); margin-bottom: 8px; }
.live-goal-amt { color: var(--navy); }
.live-progress-track { height: 8px; background: var(--g200); border-radius: 99px; overflow: hidden; }
.live-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--teal)); border-radius: 99px; transition: width 1s var(--ease); }
.live-progress-pct { font-size: .75rem; color: var(--g400); margin-top: 6px; text-align: right; }
.live-methods-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--g200); border-top: 1px solid var(--g200); }
.live-method-card { padding: 16px 12px; text-align: center; background: var(--white); }
.live-method-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; margin: 0 auto 8px;
}
.live-method-amt { font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 800; color: var(--navy); }
.live-method-lbl { font-size: .7rem; color: var(--g400); margin-top: 2px; }
.live-donors-card { display: flex; flex-direction: column; }
.live-donors-list { flex: 1; overflow-y: auto; max-height: 280px; }
.live-donor-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; border-bottom: 1px solid var(--g100);
  transition: background var(--t);
}
.live-donor-row:hover { background: var(--g100); }
.live-donor-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red-s);
  color: var(--red); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.live-donor-info { flex: 1; min-width: 0; }
.live-donor-name { font-weight: 700; font-size: .88rem; color: var(--navy); display: block; }
.live-donor-meta { font-size: .73rem; color: var(--g400); }
.live-donor-amount { font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--red); font-size: .92rem; flex-shrink: 0; }
.live-empty-state { padding: 40px 24px; text-align: center; }

/* ── 15. Cause Cards ──────────────────────────────────────── */
.su-cause-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--g200); overflow: hidden; box-shadow: var(--sh-sm);
  transition: all var(--t) var(--ease);
}
.su-cause-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.cause-img { position: relative; overflow: hidden; height: 220px; }
.cause-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.su-cause-card:hover .cause-img img { transform: scale(1.06); }
.cause-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-pill); letter-spacing: .06em; text-transform: uppercase;
}
.cause-body { padding: 24px; }
.cause-body h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.cause-progress-wrap { margin: 16px 0; }
.cause-progress-bar { height: 6px; background: var(--g200); border-radius: 99px; overflow: hidden; }
.cause-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--teal)); border-radius: 99px; transition: width 1.2s var(--ease); }
.su-progress-pct { font-weight: 700; font-size: .78rem; color: var(--red); }
.cause-donate-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: var(--r-pill);
  background: var(--red-s); color: var(--red);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  border: 1.5px solid rgba(204,16,32,.2);
  transition: all var(--t) var(--ease); margin-top: 16px;
}
.cause-donate-btn:hover { background: var(--red); color: var(--white); box-shadow: var(--sh-red); }

/* ── 16. CTA Section ──────────────────────────────────────── */
.su-cta-section {
  position: relative; overflow: hidden;
  background-image: url('../img/Suashi%20asset/stock/image%20(31).jpeg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 100px 0;
}
.su-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,10,30,.92) 0%, rgba(15,34,82,.82) 100%);
}
.su-cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--red), var(--teal)); z-index: 1;
}
.su-cta-inner {
  position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto;
}
.su-cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; letter-spacing: -.03em; margin-bottom: 18px;
}
.su-cta-inner h2 span { color: var(--teal); }
.su-cta-inner p {
  font-size: 1.02rem; color: rgba(255,255,255,.7);
  line-height: 1.82; margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 17. Story / Hygiene Feature ──────────────────────────── */
.su-story-img {
  position: relative; border-radius: var(--r-lg); overflow: visible;
}
.su-story-img > img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
}
.su-story-badge {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--navy-dk); border-radius: var(--r);
  padding: 24px 28px; max-width: 320px;
  border-left: 4px solid var(--teal); box-shadow: var(--sh-lg);
}
.su-story-badge blockquote {
  font-size: .95rem; color: var(--white); line-height: 1.7;
  font-style: italic; margin-bottom: 10px;
}
.su-story-badge .author {
  font-size: .75rem; font-weight: 700; color: var(--teal);
  letter-spacing: .06em; text-transform: uppercase;
}
.su-story-badge .author span { color: rgba(255,255,255,.45); }

/* Checklist */
.su-checklist { display: flex; flex-direction: column; gap: 12px; margin: 0 0 24px; padding: 0; }
.su-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: var(--g600); line-height: 1.65;
}
.su-checklist li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--red) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  box-shadow: 0 2px 6px rgba(204,16,32,.28);
}
/* Dark mission/vision card → teal check badge */
.su-mv-card--dark .su-checklist li::before {
  background: var(--teal) url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23010A1E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  box-shadow: 0 2px 6px rgba(28,198,212,.3);
}

/* ── 18. Inner Page Hero ──────────────────────────────────── */
.su-page-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end; padding-bottom: 64px;
  background-size: cover; background-position: center; overflow: hidden;
}
.su-page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1,10,30,.92) 0%, rgba(15,34,82,.65) 45%, rgba(1,10,30,.3) 100%);
}
.su-page-hero-overlay { display: none; }
.su-page-hero-content { position: relative; z-index: 1; }
.su-page-hero-content h1 {
  font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); letter-spacing: -.04em;
  margin-bottom: 16px; line-height: 1.1;
}
.su-breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.su-breadcrumb li { font-size: .82rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.su-breadcrumb li a { color: var(--teal); font-weight: 600; }
.su-breadcrumb li a:hover { color: var(--white); }
.su-breadcrumb li + li::before { content: '/'; opacity: .35; }
.su-breadcrumb li.active { color: rgba(255,255,255,.85); }

/* ── 19. FAQ ──────────────────────────────────────────────── */
.accordion-item { border: 1.5px solid var(--g200) !important; border-radius: var(--r) !important; margin-bottom: 12px !important; overflow: hidden !important; }
.accordion-button { font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: .95rem !important; color: var(--navy) !important; background: var(--white) !important; padding: 20px 24px !important; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--red) !important; background: var(--red-s) !important; box-shadow: none !important; }
.accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CC1020'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important; filter: none !important; }
.accordion-body { background: var(--red-s) !important; color: var(--g600) !important; padding: 4px 24px 22px !important; line-height: 1.8 !important; }

/* ── 20. Footer ───────────────────────────────────────────── */
.su-footer {
  background: var(--navy-dk); position: relative;
}
.su-footer::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, var(--red) 40%, var(--teal) 100%);
}
.su-footer-grid { padding: 72px 0 48px; }
.su-footer-brand { display: block; margin-bottom: 18px; }
.su-footer-logo { max-height: 52px; width: auto; }
.su-footer-about { font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.8; margin-bottom: 22px; }
.su-footer-social { display: flex; gap: 10px; margin-bottom: 22px; }
.su-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.su-footer-social a:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.su-footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.45);
}
.su-footer-widget { }
.su-footer-heading {
  font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 700;
  color: var(--teal); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.su-footer-links { display: flex; flex-direction: column; gap: 10px; }
.su-footer-links a { font-size: .87rem; color: rgba(255,255,255,.48); transition: color var(--t); }
.su-footer-links a:hover { color: var(--white); }
.su-footer-links-cta { color: var(--teal) !important; font-weight: 700; }
.su-footer-contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.su-footer-contact-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); flex-shrink: 0;
  background: rgba(204,16,32,.15); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.su-footer-contact-text span { display: block; font-size: .72rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px; }
.su-footer-contact-text a { color: rgba(255,255,255,.65); font-size: .88rem; font-weight: 500; }
.su-footer-contact-text a:hover { color: var(--white); }
.su-footer-contact-text p { color: rgba(255,255,255,.5); font-size: .85rem; margin: 0; }
.su-footer-donate-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: var(--r-pill);
  background: var(--red); color: var(--white); font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase;
  transition: all var(--t) var(--ease); box-shadow: var(--sh-red); margin-top: 8px;
}
.su-footer-donate-btn:hover { background: var(--red-d); color: var(--white); transform: translateY(-2px); }
.su-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.su-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.su-footer-copy { font-size: .8rem; color: rgba(255,255,255,.28); margin: 0; }
.su-footer-copy a { color: rgba(255,255,255,.4); }
.su-footer-copy a:hover { color: var(--teal); }
.su-footer-legal { display: flex; align-items: center; gap: 14px; }
.su-footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); }
.su-footer-legal a:hover { color: var(--teal); }
.su-footer-legal span { color: rgba(255,255,255,.15); }

/* ── 21. Newsletter (inline in footer.php) ────────────────── */
.su-newsletter-section { background: var(--navy); padding: 60px 0; }

/* ── 22. Form Controls ────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  padding: 12px 16px; font-size: .95rem; color: var(--text);
  background: var(--white); transition: all var(--t) var(--ease);
  font-family: 'Inter', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,16,32,.10); outline: none;
}
.form-label { font-weight: 600; font-size: .85rem; color: var(--navy); margin-bottom: 6px; display: block; }

/* ── 23. Progress (Bootstrap override) ───────────────────── */
.progress { height: 6px; background: var(--g200); border-radius: 99px; }
.progress-bar { background: linear-gradient(90deg, var(--red), var(--teal)); border-radius: 99px; }

/* ── 24. Scroll to Top ────────────────────────────────────── */
.scroll-btn, #scrollup, .scrollToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-red); cursor: pointer;
  transition: all var(--t) var(--ease);
}
.scroll-btn:hover { background: var(--red-d); transform: translateY(-3px); }

/* Progress-ring scroll-to-top (scripts.php) */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 990;
  width: 46px; height: 46px; cursor: pointer; display: none;
  background: var(--red); border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: var(--sh-red);
  transition: all var(--t) var(--ease);
}
.scroll-top.active { display: flex; }
.scroll-top:hover { background: var(--red-d); transform: translateY(-3px); }
.scroll-top svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.scroll-top svg path {
  fill: none; stroke: rgba(255,255,255,.45);
  stroke-width: 3; stroke-linecap: round;
}
/* Hide the SVG circle — show only the button background */
.scroll-top .progress-circle { display: none; }

/* ── 25. Chatbot ──────────────────────────────────────────── */
.su-chat-toggle {
  position: fixed; bottom: 82px; right: 28px; z-index: 990;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; box-shadow: var(--sh-lg);
  transition: all var(--t) var(--ease);
}
.su-chat-toggle:hover { background: var(--red); transform: scale(1.08); }
.su-chat-window {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); border: 1px solid var(--g200); overflow: hidden;
}
.su-chat-header { background: var(--navy-dk); color: var(--white); }

/* ── 26. Testimonials ─────────────────────────────────────── */
.su-testimonial-slide, .su-testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px; border: 1px solid var(--g200); box-shadow: var(--sh-sm);
  position: relative;
}
.su-testimonial-slide::before, .su-testimonial-card::before {
  content: '\201C'; position: absolute; top: 14px; left: 22px;
  font-size: 6rem; line-height: 1; color: var(--red); opacity: .09;
  font-family: Georgia, serif; pointer-events: none;
}
.su-testimonial-text { font-size: .97rem; color: var(--g600); line-height: 1.85; font-style: italic; margin-bottom: 22px; }
.su-testimonial-author { display: flex; align-items: center; gap: 12px; }
.su-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-s); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
}
.su-testimonial-name { font-weight: 700; color: var(--navy); font-size: .93rem; }
.su-testimonial-role { font-size: .78rem; color: var(--g400); }

/* ── 27. Volunteer / donate / page-specific ───────────────── */
.su-vol-why-card {
  background: var(--white); border-radius: var(--r);
  padding: 28px; border: 1.5px solid var(--g200); box-shadow: var(--sh-sm);
  transition: all var(--t) var(--ease);
}
.su-vol-why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(204,16,32,.15); }
.su-vol-why-card--featured { background: var(--navy); border-color: var(--navy); }
.su-vol-why-card--featured h3, .su-vol-why-card--featured p { color: rgba(255,255,255,.85); }
.su-vol-why-icon { width: 54px; height: 54px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.su-vol-form-card, .su-vol-success {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px; box-shadow: var(--sh-md); border: 1px solid var(--g200);
}
.su-vol-success-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--teal-s);
  color: var(--teal-d); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}
.su-vcta-join-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px;
  background: var(--teal-s); color: var(--teal-d); border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(28,198,212,.2); margin-bottom: 20px;
}
.su-demo-badge {
  display: inline-block; padding: 2px 9px; background: var(--teal-s); color: var(--teal-d);
  border-radius: var(--r-pill); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

/* ── 28. Alerts ───────────────────────────────────────────── */
.alert-success { background: #ecfdf5 !important; border-color: #10b981 !important; color: #065f46 !important; }
.alert-danger { background: var(--red-s) !important; border-color: var(--red) !important; color: var(--red-d) !important; }
.alert-info { background: var(--teal-s) !important; border-color: var(--teal) !important; color: var(--teal-d) !important; }

/* ── 29. Utilities ────────────────────────────────────────── */
.text-red { color: var(--red) !important; }
.text-teal { color: var(--teal) !important; }
.text-navy { color: var(--navy) !important; }
.bg-red { background: var(--red) !important; color: var(--white); }
.bg-navy { background: var(--navy) !important; }
.bg-navy-dark { background: var(--navy-dk) !important; }
.su-divider-center { margin-left: auto; margin-right: auto; }

/* ── 30. Testimonials (Swiper) ───────────────────────────── */
/* ════════════════════════════════════════════════════════════
   TESTIMONIALS — light redesign
════════════════════════════════════════════════════════════ */
.su-testi-section { padding: 100px 0; position: relative; overflow: hidden; }
.su-testi-light {
  background: linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
}
.su-testi-light::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 45% at 92% 8%, rgba(204,16,32,.05) 0%, transparent 60%),
              radial-gradient(ellipse 45% 45% at 6% 92%, rgba(28,198,212,.06) 0%, transparent 60%);
}
.su-testi-section .container { position: relative; z-index: 1; }
.su-testi-section .su-section-subtitle { color: var(--g600); }

/* Clean white card with a subtle quote watermark */
.su-testi-card {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-lg);
  padding: 34px 30px 26px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}
.su-testi-card::after {
  content: '\201D';
  position: absolute; top: 8px; right: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem; line-height: 1; color: var(--red-s);
  pointer-events: none; z-index: 0;
}
.su-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(204,16,32,.22);
}
/* Featured card — red top accent */
.su-testi-card.testi-featured { border-top: 4px solid var(--red); box-shadow: var(--sh-md); }

.testi-top { display: flex; align-items: center; margin-bottom: 16px; position: relative; z-index: 1; }
.stars { display: flex; gap: 3px; }
.stars i { color: #FBBF24; font-size: .95rem; }
.quote-mark { display: none; }

.su-testi-card p {
  position: relative; z-index: 1;
  display: flex; align-items: center;   /* center short quotes instead of
                                            leaving dead space below them */
  color: var(--g600); font-size: 1rem; line-height: 1.85;
  margin-bottom: 24px; font-style: normal; flex: 1;
}

.testi-footer {
  display: flex; align-items: center; gap: 14px; margin-top: auto;
  padding-top: 20px; border-top: 1px solid var(--g100); position: relative; z-index: 1;
}
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red) 0%, #E8344A 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem;
  box-shadow: var(--sh-red);
}
.testi-info { display: flex; flex-direction: column; }
.testi-name { font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--navy); font-size: 1rem; }
.testi-role { font-size: .82rem; color: var(--g400); margin-top: 2px; }

/* Swiper controls (light) — pagination sits on its own row, ABOVE the
   arrow row, so the two never overlap. */
.testi-swiper { padding-bottom: 84px; }
.testi-swiper .swiper-slide { height: auto; }

.testi-swiper .swiper-pagination {
  bottom: 50px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.testi-swiper .swiper-pagination-bullet {
  margin: 0; background: var(--g200); opacity: 1; transition: all var(--t);
}
.testi-swiper .swiper-pagination-bullet-active { background: var(--red); width: 26px; border-radius: 5px; }

.testi-swiper .swiper-button-prev,
.testi-swiper .swiper-button-next {
  color: var(--navy); width: 44px; height: 44px; margin: 0; top: auto; bottom: 0;
  background: var(--white); border-radius: 50%;
  border: 1.5px solid var(--g200); box-shadow: var(--sh-sm);
  transition: all var(--t);
}
.testi-swiper .swiper-button-prev { left: calc(50% - 52px); right: auto; }
.testi-swiper .swiper-button-next { left: calc(50% + 8px); right: auto; }
.testi-swiper .swiper-button-prev::after,
.testi-swiper .swiper-button-next::after { font-size: .9rem; font-weight: 700; }
.testi-swiper .swiper-button-prev:hover,
.testi-swiper .swiper-button-next:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.testi-swiper .swiper-button-disabled { opacity: .35; pointer-events: none; }

/* ── 31. FAQ ──────────────────────────────────────────────── */
.su-faq-list { display: flex; flex-direction: column; gap: 12px; }
.su-faq-item {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--g200);
  overflow: hidden; transition: border-color var(--t) var(--ease);
}
.su-faq-item.is-open { border-color: rgba(204,16,32,.3); }
.su-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); transition: color var(--t);
}
.su-faq-q:hover { color: var(--red); }
.su-faq-item.is-open .su-faq-q { color: var(--red); }
.su-faq-arrow { flex-shrink: 0; transition: transform .3s var(--ease); color: var(--g400); }
.su-faq-item.is-open .su-faq-arrow { transform: rotate(180deg); color: var(--red); }
.su-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.su-faq-item.is-open .su-faq-a { max-height: 600px; }
.su-faq-a-inner {
  padding: 0 24px 20px;
  font-size: .95rem; color: var(--g600); line-height: 1.85;
}
.su-faq-a-inner a { color: var(--red); text-decoration: underline; }
.su-faq-a-inner strong { color: var(--navy); }

/* ── 32. Blog Cards ───────────────────────────────────────── */
.su-blog-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--g200); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--t) var(--ease); box-shadow: var(--sh-sm);
}
.su-blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(204,16,32,.15); }
.su-blog-card .blog-img { overflow: hidden; flex-shrink: 0; }
.su-blog-card .blog-img img {
  width: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.su-blog-card:hover .blog-img img { transform: scale(1.04); }
.su-blog-featured .blog-img { height: 300px; }
.su-blog-card .blog-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.su-blog-card .blog-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: .78rem; color: var(--g400); margin-bottom: 14px;
}
.su-blog-card .blog-meta .cat {
  background: var(--red-s); color: var(--red);
  padding: 3px 10px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.su-blog-card h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.35;
}
.su-blog-card h3 a { color: inherit; text-decoration: none; }
.su-blog-card h3 a:hover { color: var(--red); }
.su-blog-card p { font-size: .9rem; color: var(--g600); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700; color: var(--red);
  text-decoration: none; transition: gap var(--t);
}
.blog-link:hover { gap: 10px; color: var(--red-d); }
/* Compact blog card */
.su-blog-compact .blog-compact-inner {
  display: flex; gap: 0; height: 100%;
}
.su-blog-compact .blog-img-side {
  width: 120px; flex-shrink: 0; overflow: hidden;
}
.su-blog-compact .blog-img-side img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.su-blog-compact:hover .blog-img-side img { transform: scale(1.06); }
.su-blog-compact .blog-body { padding: 18px 20px; }
.su-blog-compact h3 { font-size: 1rem; }

/* ── 33. Volunteer CTA Section ────────────────────────────── */
.su-volunteer-cta {
  background: linear-gradient(135deg, var(--navy-m) 0%, var(--navy) 60%, var(--navy-dk) 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.su-vcta-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.su-vcta-blob-1 {
  width: 500px; height: 500px; top: -120px; left: -100px;
  background: rgba(204,16,32,.12);
}
.su-vcta-blob-2 {
  width: 400px; height: 400px; bottom: -100px; right: -80px;
  background: rgba(28,198,212,.08);
}
.su-vcta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.su-vcta-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 24px 20px;
  transition: all var(--t) var(--ease);
}
.su-vcta-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-3px);
}
.su-vcta-card--hi {
  background: rgba(204,16,32,.18);
  border-color: rgba(204,16,32,.35);
}
.su-vcta-card--hi:hover { background: rgba(204,16,32,.25); border-color: rgba(204,16,32,.5); }
.su-vcta-card-icon {
  font-size: 1.5rem; margin-bottom: 12px;
}
.su-vcta-card-title {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  color: var(--white); font-size: .95rem; margin-bottom: 6px;
}
.su-vcta-card-desc {
  font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6;
}

/* ── 34. Social CTA Section ───────────────────────────────── */
.su-social-cta {
  background: var(--off); padding: 80px 0;
}
.su-social-cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.su-social-cta-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 36px; border-radius: var(--r-pill);
  text-decoration: none; transition: all var(--t) var(--ease);
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--white);
  box-shadow: var(--sh-md);
}
.su-social-cta-btn:hover { transform: translateY(-3px); color: var(--white); box-shadow: var(--sh-lg); }
.su-scb-fb { background: #1877f2; }
.su-scb-fb:hover { background: #1461c8; }
.su-scb-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.su-scb-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.su-scb-sub {
  display: block; font-size: .72rem; font-weight: 600;
  opacity: .75; letter-spacing: .06em; margin-bottom: 1px;
}

/* ── 35. About Page — missing classes ────────────────────── */

/* Values cards strip */
.su-section-sm { padding: 48px 0; }
.su-values-card {
  background: var(--white); border-radius: var(--r);
  padding: 32px 24px; border: 1.5px solid var(--g200);
  box-shadow: var(--sh-sm); transition: all var(--t) var(--ease); height: 100%;
}
.su-values-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(204,16,32,.18); }
.su-values-card-icon {
  width: 56px; height: 56px; border-radius: var(--r-sm); margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.su-values-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.su-values-card p { font-size: .88rem; color: var(--g600); line-height: 1.75; margin: 0; }

/* About img badge */
.su-about-img-badge-number {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -.04em;
}
.su-about-img-badge-number span { font-size: 1.4rem; }
.su-about-img-badge-label {
  display: block; font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.78); letter-spacing: .1em;
  text-transform: uppercase; margin-top: 6px; line-height: 1.4;
}

/* Mission & Vision cards */
.su-mv-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px 36px; border: 1.5px solid var(--g200);
  box-shadow: var(--sh-sm); height: 100%;
  transition: all var(--t) var(--ease);
}
.su-mv-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.su-mv-card--orange { border-top: 4px solid var(--red); }
.su-mv-icon {
  width: 60px; height: 60px; border-radius: var(--r-sm); margin-bottom: 24px;
  background: linear-gradient(135deg, var(--red), #E83040);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
}
.su-mv-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.su-mv-card p { color: var(--g600); font-size: .95rem; line-height: 1.8; margin-bottom: 20px; }
/* ── Dark variant overrides — MUST come after base rules to win the cascade ── */
.su-mv-card--dark { background: var(--navy-dk); border-color: var(--navy-dk); }
.su-mv-card--dark h3 { color: var(--white); }
.su-mv-card--dark p { color: rgba(255,255,255,.78); }
.su-mv-card--dark .su-checklist li { color: rgba(255,255,255,.82); }
.su-mv-card--dark .su-mv-icon { background: rgba(28,198,212,.18); color: var(--teal); }

/* Program cards */
.su-program-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--g200); box-shadow: var(--sh-sm);
  overflow: hidden; height: 100%;
  transition: all var(--t) var(--ease);
}
.su-program-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(204,16,32,.15); }
.su-program-card-img { position: relative; overflow: hidden; height: 220px; }
.su-program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.su-program-card:hover .su-program-card-img img { transform: scale(1.05); }
.su-program-card-num {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900;
  color: rgba(255,255,255,.18); line-height: 1; pointer-events: none;
}
.su-program-card-body { padding: 28px; }
.su-program-card-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); margin-bottom: 16px;
}
.su-program-card-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.su-program-card-body p { font-size: .88rem; color: var(--g600); line-height: 1.75; }

/* Story badge */
.su-story-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--red); color: var(--white);
  padding: 12px 18px; border-radius: var(--r);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .88rem;
  box-shadow: var(--sh-red);
}
.su-story-badge i { font-size: 1.1rem; }

/* CTA Banner */
.su-cta-banner {
  position: relative; padding: 96px 0; text-align: center;
  overflow: hidden;
}
.su-cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.su-cta-banner:hover .su-cta-banner-bg { transform: scale(1); }
.su-cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,10,30,.88) 0%, rgba(15,34,82,.78) 100%);
}
.su-cta-banner-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.su-cta-banner-content h2 {
  font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 20px;
}
.su-cta-banner-content h2 span { color: var(--red); }
.su-cta-banner-content p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.su-cta-banner-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.su-btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.6); color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: all var(--t) var(--ease);
}
.su-btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }
.su-btn-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: underline; transition: opacity var(--t); }
.su-btn-link:hover { opacity: .75; }

/* Missing CSS variables used inline in about.php and other pages */
:root {
  --gradient-primary: linear-gradient(135deg, var(--red) 0%, #E83040 100%);
  --su-grey:   #F1F3F7;
  --su-text:   #4A5568;
  --su-radius: 14px;
  --su-shadow: 0 8px 32px rgba(15,34,82,.12);
}

/* ── 35. Responsive extras ───────────────────────────────── */
@media (max-width: 991.98px) {
  .su-testi-section { padding: 64px 0; }
  .su-volunteer-cta { padding: 64px 0; }
  .su-vcta-grid { grid-template-columns: 1fr 1fr; }
  .su-blog-compact .blog-img-side { width: 90px; }
  .su-social-cta { padding: 60px 0; }
}
@media (max-width: 575.98px) {
  .su-vcta-grid { grid-template-columns: 1fr; }
  .su-social-cta-btn { padding: 14px 24px; font-size: .95rem; }
  .su-blog-compact .blog-compact-inner { flex-direction: column; }
  .su-blog-compact .blog-img-side { width: 100%; height: 160px; }
  .su-blog-featured .blog-img { height: 200px; }
}

/* ── 36. Legacy responsive ────────────────────────────────── */
@media (max-width: 1199.98px) {
  .su-nav-links { gap: 2px; }
  .su-nav-link { padding: 6px 10px; font-size: .83rem; }
}
@media (max-width: 991.98px) {
  .su-nav-links { display: none; }
  .su-hamburger { display: flex; }
  .su-section { padding: 64px 0; }
  .su-hero { height: 80vh; min-height: 560px; }
  .su-hero-title { font-size: 2.6rem; }
  .su-page-hero { min-height: 300px; padding-bottom: 44px; }
  .su-about-img-wrap { padding: 0; }
  .su-about-img-main img { height: 340px; }
  .su-about-img-float { display: none; }
  .su-about-img-badge { left: 10px; bottom: 10px; padding: 14px 18px; min-width: 116px; }
  .su-about-img-badge .badge-num { font-size: 1.9rem; }
  .su-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .live-methods-grid { grid-template-columns: repeat(2,1fr); }
  .su-trust-item { border-right: none; padding: 8px 16px; }
}
@media (max-width: 575.98px) {
  .su-nav-inner { padding: 0 16px; }
  .su-topbar-inner { padding: 7px 16px; }
  .su-topbar-msg { display: none; }
  .su-section { padding: 48px 0; }
  .su-hero { height: 100vh; }
  .su-hero-title { font-size: 2.1rem; }
  .su-hero-stats { gap: 12px; }
  .su-hero-stat { padding: 12px 16px; min-width: 100px; }
  .su-hero-stat-num { font-size: 1.5rem; }
  .su-hero-actions { flex-direction: column; align-items: flex-start; }
  .su-btn { padding: 13px 24px; font-size: .83rem; }
  .su-cta-inner h2 { font-size: 1.75rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .su-vol-form-card, .su-vol-success { padding: 24px 16px; }
  .su-impact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .su-footer-bottom-inner { flex-direction: column; text-align: center; }
  .su-footer-legal { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   36. NEWSLETTER STRIP  (global — every page footer)
════════════════════════════════════════════════════════════ */
.su-newsletter {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  border-radius: var(--r-lg); padding: 56px 48px;
  box-shadow: var(--sh-lg);
}
.su-newsletter-deco {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
}
.su-newsletter-deco-tl {
  width: 280px; height: 280px; top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(204,16,32,.22) 0%, transparent 70%);
}
.su-newsletter-deco-br {
  width: 320px; height: 320px; bottom: -140px; right: -90px;
  background: radial-gradient(circle, rgba(28,198,212,.18) 0%, transparent 70%);
}
.su-newsletter-icon {
  width: 56px; height: 56px; border-radius: var(--r-sm);
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; box-shadow: var(--sh-red);
}
.su-newsletter-kicker {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.su-newsletter-heading {
  font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.18; margin-bottom: 10px;
}
.su-newsletter-sub { color: rgba(255,255,255,.72); font-size: .98rem; margin: 0; }
.su-newsletter-form {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.su-newsletter-input {
  flex: 1; min-width: 220px; height: 54px;
  padding: 0 20px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: var(--white);
  font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color var(--t), background var(--t);
}
.su-newsletter-input::placeholder { color: rgba(255,255,255,.55); }
.su-newsletter-input:focus { border-color: var(--teal); background: rgba(255,255,255,.13); }
.su-newsletter-btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 54px; padding: 0 30px; border: none; cursor: pointer;
  border-radius: var(--r-pill); background: var(--red); color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
  white-space: nowrap; box-shadow: var(--sh-red);
  transition: transform var(--t) var(--ease), background var(--t);
}
.su-newsletter-btn:hover { background: var(--red-d); transform: translateY(-2px); }
.su-newsletter-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.su-newsletter-note {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.55); font-size: .8rem; margin: 14px 0 0;
}
.su-newsletter-note i { color: var(--teal); }
.su-newsletter-msg {
  margin-top: 12px; padding: 12px 16px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 600;
}
.su-newsletter-msg-err { background: rgba(255,80,90,.15); color: #FFD7DA; border: 1px solid rgba(255,80,90,.3); }
.su-newsletter-success {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700; font-size: 1rem;
  background: rgba(28,198,212,.15); border: 1px solid rgba(28,198,212,.35);
  padding: 16px 22px; border-radius: var(--r);
}
.su-newsletter-success i { color: var(--teal); font-size: 1.3rem; }
@media (max-width: 575px) {
  .su-newsletter { padding: 40px 24px; }
  .su-newsletter-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   37. SHARED FORM CONTROLS  (contact + donate)
════════════════════════════════════════════════════════════ */
.su-form-group { margin-bottom: 4px; }
.su-form-group label {
  display: block; font-weight: 700; font-size: .85rem;
  color: var(--navy); margin-bottom: 8px;
}
.su-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  font-size: .92rem; color: var(--text); font-family: inherit;
  background: #FAFBFF; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.su-input::placeholder { color: #A8B2C5; }
.su-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,16,32,.12); background: var(--white); }
textarea.su-input { resize: vertical; min-height: 110px; }

/* Volunteer input/label — global fallback (volunteer.php also styles inline) */
.su-vol-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--g200); border-radius: 10px;
  font-size: .9rem; color: var(--navy); font-family: inherit;
  background: #FAFBFF; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.su-vol-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,16,32,.12); }
.su-vol-label { display: block; font-weight: 700; font-size: .875rem; color: var(--navy); margin-bottom: 8px; }
.su-vol-label .req { color: var(--red); }

/* ── Contact cards ── */
.su-contact-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 28px; text-align: center; height: 100%;
  border: 1.5px solid var(--g200); box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.su-contact-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.su-contact-card-icon {
  width: 60px; height: 60px; border-radius: var(--r-sm); margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
}
.su-contact-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.su-contact-card p { margin-bottom: 4px; color: var(--g600); }
.su-contact-form {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px; border: 1.5px solid var(--g200); box-shadow: var(--sh-sm);
}

/* ════════════════════════════════════════════════════════════
   38. DONATE PAGE
════════════════════════════════════════════════════════════ */
.su-donate-form {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); overflow: hidden;
}
.su-donate-form-header {
  display: flex; align-items: center; gap: 18px;
  padding: 30px 34px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
}
.su-donate-form-icon {
  width: 54px; height: 54px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: var(--sh-red);
}
.su-donate-form-header h3 { color: var(--white); font-weight: 800; margin: 0 0 4px; font-size: 1.35rem; }
.su-donate-form-header p { color: rgba(255,255,255,.72); margin: 0; font-size: .9rem; }
.su-donate-form form { padding: 32px 34px; }

.su-donate-step { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--g100); }
.su-donate-step:last-of-type { border-bottom: none; }
.su-donate-step-label { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.su-donate-step-label h5 { margin: 0; font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.su-donate-step-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; font-family: 'Outfit', sans-serif;
}

/* Amount grid */
.su-amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.su-amount-btn, .su-amount-btn-usd {
  padding: 18px 8px; border: 1.5px solid var(--g200); border-radius: var(--r);
  background: #FAFBFF; color: var(--navy); cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.08rem;
  letter-spacing: -.01em;
  transition: all var(--t) var(--ease);
}
.su-amount-btn:hover, .su-amount-btn-usd:hover {
  border-color: var(--red); color: var(--red); background: var(--red-s); transform: translateY(-2px);
}
.su-amount-btn.active, .su-amount-btn-usd.active {
  background: var(--red); border-color: var(--red); color: var(--white); box-shadow: var(--sh-red);
}
@media (max-width: 420px) { .su-amount-grid { grid-template-columns: repeat(2, 1fr); } }
.su-amount-input-wrap {
  position: relative; display: flex; align-items: center;
  border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  background: #FAFBFF; overflow: hidden;
}
.su-amount-input-wrap:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,16,32,.12); }
.su-currency-symbol {
  padding: 0 16px; font-size: 1.2rem; font-weight: 800; color: var(--navy);
  font-family: 'Outfit', sans-serif; border-right: 1.5px solid var(--g200);
  align-self: stretch; display: flex; align-items: center;
}
.su-amount-input {
  flex: 1; border: none; background: transparent; outline: none;
  padding: 15px 16px; font-size: 1.25rem; font-weight: 700; color: var(--navy);
  font-family: 'Outfit', sans-serif;
}

/* Campaign + payment selectable cards */
/* Selectable cards — the hidden radio is a full-cover transparent click
   target so the click ALWAYS reaches it (no fragile label forwarding). */
.su-campaign-option, .su-payment-option {
  position: relative; display: block; cursor: pointer; margin: 0; height: 100%;
}
.su-campaign-option input, .su-payment-option input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; padding: 0; opacity: 0; cursor: pointer; z-index: 2;
  -webkit-appearance: none; appearance: none;
}
.su-campaign-option input:disabled, .su-payment-option input:disabled { cursor: not-allowed; }
.su-campaign-card {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px; height: 100%;
  padding: 16px 18px; border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  background: #FAFBFF; transition: all var(--t) var(--ease);
}
.su-campaign-card i { font-size: 1.2rem; color: var(--navy-m); flex-shrink: 0; }
.su-campaign-card span { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.su-campaign-option:hover .su-campaign-card { border-color: var(--red); }
.su-campaign-card.selected { border-color: var(--red); background: var(--red-s); box-shadow: var(--sh-sm); }
.su-campaign-card.selected i { color: var(--red); }
.su-payment-card {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px; height: 100%;
  padding: 14px 14px; border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  background: #FAFBFF; transition: all var(--t) var(--ease);
}
.su-payment-card i { font-size: 1.4rem; color: var(--navy-m); flex-shrink: 0; }
.su-payment-card strong { display: block; font-size: .88rem; font-weight: 800; color: var(--navy); }
.su-payment-card small { display: block; font-size: .72rem; color: var(--g400); line-height: 1.3; }
.su-payment-option:hover .su-payment-card { border-color: var(--red); }
.su-payment-card.selected { border-color: var(--red); background: var(--red-s); box-shadow: var(--sh-sm); }

/* Bank details */
.su-bank-details {
  border: 1.5px solid var(--g200); border-radius: var(--r); overflow: hidden;
}
.su-bank-details-header {
  padding: 14px 20px; color: var(--white); font-weight: 700; font-size: .92rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
}
.su-bank-details-body { padding: 20px; background: #FAFBFF; }
.su-bank-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--g200);
}
.su-bank-row:last-of-type { border-bottom: none; }
.su-bank-label { font-size: .85rem; color: var(--g600); font-weight: 600; }
.su-bank-value { font-size: .92rem; color: var(--navy); font-weight: 700; text-align: right; }
.su-acct-num { font-family: 'Outfit', sans-serif; font-size: 1.15rem; letter-spacing: .05em; color: var(--red); }

/* Recurring toggle */
.su-recurring-wrap {
  border: 1.5px solid var(--g200); border-radius: var(--r);
  margin-bottom: 28px; overflow: hidden; transition: border-color var(--t);
}
.su-recurring-wrap.is-active { border-color: var(--red); }
.su-recurring-header {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px; background: #FAFBFF;
}
.su-recurring-header .rr-label { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: .92rem; }
.su-recurring-header .rr-label i { color: var(--red); }
.su-recurring-header .rr-badge {
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: var(--g200); color: var(--g600); padding: 3px 8px; border-radius: var(--r-pill);
}
.su-toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; cursor: pointer; }
.su-toggle-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.su-toggle-knob {
  position: absolute; inset: 0; border-radius: var(--r-pill);
  background: var(--g200); transition: background var(--t);
}
.su-toggle-knob::before {
  content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px;
  background: var(--white); border-radius: 50%; transition: transform var(--t); box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.su-toggle-switch input:checked + .su-toggle-knob { background: var(--red); }
.su-toggle-switch input:checked + .su-toggle-knob::before { transform: translateX(22px); }
.su-recurring-body { padding: 18px 20px; border-top: 1px solid var(--g100); }
.su-recurring-note { font-size: .85rem; color: var(--g600); line-height: 1.7; margin-bottom: 14px; }
.su-freq-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.su-freq-chip {
  padding: 8px 18px; border-radius: var(--r-pill); cursor: pointer;
  border: 1.5px solid var(--g200); background: var(--white);
  font-size: .85rem; font-weight: 700; color: var(--g600); transition: all var(--t) var(--ease);
}
.su-freq-chip:hover { border-color: var(--red); color: var(--red); }
.su-freq-chip.is-selected { background: var(--red); border-color: var(--red); color: var(--white); }

/* Anonymous toggle */
.su-anon-toggle { }
.su-anon-label { display: block; cursor: pointer; margin: 0; }
.su-anon-label input { position: absolute; opacity: 0; pointer-events: none; }
.su-anon-box {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  background: #FAFBFF; transition: all var(--t) var(--ease);
}
.su-anon-box > i { color: var(--navy-m); font-size: 1.1rem; margin-top: 2px; }
.su-anon-box strong { display: block; font-size: .9rem; color: var(--navy); }
.su-anon-box small { display: block; font-size: .78rem; color: var(--g600); line-height: 1.5; margin-top: 2px; }
.su-anon-label input:checked + .su-anon-box { border-color: var(--red); background: var(--red-s); }
.su-anon-label input:checked + .su-anon-box > i { color: var(--red); }

.su-donate-submit { margin-top: 8px; }

/* Donate sidebar */
.su-donate-sidebar { position: sticky; top: 100px; }
.su-donate-sidebar-widget {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--g200); box-shadow: var(--sh-sm); overflow: hidden;
}
.su-donate-sidebar-widget-header {
  padding: 16px 22px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy-m));
}
.su-donate-sidebar-widget-body { padding: 22px; }
.su-donate-sidebar-widget-body p { font-size: .9rem; color: var(--g600); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════
   39. BLOG SINGLE (article) PAGE
════════════════════════════════════════════════════════════ */
.su-post-article {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px; border: 1.5px solid var(--g200); box-shadow: var(--sh-sm);
}
.su-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 24px; }
.su-post-meta-badge {
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--white); padding: 5px 14px; border-radius: var(--r-pill);
}
.su-post-meta-item { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--g600); }
.su-post-meta-item i { color: var(--red); }
.su-post-featured-img { border-radius: var(--r); overflow: hidden; margin-bottom: 28px; box-shadow: var(--sh-sm); }
.su-post-excerpt {
  font-size: 1.1rem; line-height: 1.7; color: var(--navy); font-weight: 600;
  padding: 20px 24px; border-left: 4px solid var(--red);
  background: var(--red-s); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin-bottom: 28px;
}
.su-post-body { font-size: 1rem; line-height: 1.9; color: var(--g600); }
.su-post-body p { margin-bottom: 18px; }
.su-post-gallery { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--g100); }
.su-gallery-thumb { transition: transform var(--t) var(--ease); }
.su-post-footer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--g100);
}
.su-post-back {
  display: inline-flex; align-items: center;
  font-weight: 700; font-size: .9rem; color: var(--navy);
}
.su-post-back:hover { color: var(--red); }
.su-post-share { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; }
.su-post-share-label { font-size: .85rem; font-weight: 700; color: var(--g600); }
.su-share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .95rem; transition: transform var(--t) var(--ease), opacity var(--t);
}
.su-share-btn:hover { transform: translateY(-3px); color: var(--white); opacity: .9; }
.su-share-fb { background: #1877F2; }
.su-share-tw { background: #1DA1F2; }
.su-share-wa { background: #25D366; }

.su-related-posts { }
.su-related-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.su-related-card {
  display: block; background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--g200); overflow: hidden; height: 100%;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.su-related-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.su-related-card img { width: 100%; height: 130px; object-fit: cover; }
.su-related-card span { display: block; padding: 12px 14px 4px; font-size: .85rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.su-related-card small { display: block; padding: 0 14px 14px; font-size: .75rem; color: var(--g400); }

/* Blog-single sidebar */
.su-post-sidebar-donate {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  border-radius: var(--r-lg); padding: 32px 28px; text-align: center;
  color: var(--white); margin-bottom: 28px; box-shadow: var(--sh-md);
}
.su-post-sidebar-donate-icon { font-size: 2.4rem; color: var(--red); margin-bottom: 14px; }
.su-post-sidebar-donate h4 { color: var(--white); font-weight: 800; font-size: 1.25rem; margin-bottom: 10px; }
.su-post-sidebar-donate p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.7; margin-bottom: 22px; }
.su-post-sidebar-donate-btn { width: 100%; justify-content: center; }
.su-post-sidebar-widget {
  background: var(--white); border-radius: var(--r-lg);
  padding: 26px 24px; border: 1.5px solid var(--g200); box-shadow: var(--sh-sm);
  margin-bottom: 28px;
}
.su-post-sidebar-widget-title {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--g100);
}
.su-post-sidebar-recent { display: flex; gap: 14px; align-items: center; padding: 10px 0; }
.su-post-sidebar-recent img { width: 72px; height: 72px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.su-post-sidebar-recent-info a {
  display: block; font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 4px;
}
.su-post-sidebar-recent-info a:hover { color: var(--red); }
.su-post-sidebar-recent-info small { font-size: .75rem; color: var(--g400); }
.su-post-sidebar-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.su-post-cat-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--r-pill);
  border: 1.5px solid var(--g200); font-size: .8rem; font-weight: 700;
  transition: all var(--t) var(--ease);
}
.su-post-cat-pill span { opacity: .65; font-weight: 600; }
.su-post-cat-pill:hover { transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════
   40. BUTTON & BADGE VARIANTS  (shared)
════════════════════════════════════════════════════════════ */
.su-btn-secondary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 100%);
  color: var(--white); box-shadow: var(--sh-sm);
}
.su-btn-secondary:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--sh-md); }
.su-btn-lg { font-size: 1.02rem; padding: 16px 34px; }
.su-badge-orange {
  background: rgba(204,16,32,.12); color: var(--red); border: 1px solid rgba(204,16,32,.3);
}
/* 404 number modifiers + footer wrap */
.su-404-n-4, .su-404-n-4b { background: var(--g-navy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.su-404-nl-wrap { margin-top: 0; }
/* Testimonial info wrapper */
.testi-info { display: flex; flex-direction: column; }

/* ════════════════════════════════════════════════════════════
   41. DONATE PAGE — rebuild / uplift
════════════════════════════════════════════════════════════ */
/* Hero trust strip */
.su-donate-hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px;
}
.su-donate-hero-trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.su-donate-hero-trust i { color: var(--teal); }

/* Form: section intro line */
.su-donate-form-body-note {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 18px; margin: 0 34px 4px; margin-top: 24px;
  background: var(--teal-s); border: 1px solid rgba(28,198,212,.25);
  border-radius: var(--r-sm); font-size: .85rem; color: var(--navy); font-weight: 600;
}
.su-donate-form-body-note i { color: var(--teal-d); }

/* Step description under the step title */
.su-donate-step-label .su-step-desc {
  display: block; width: 100%; font-size: .82rem; font-weight: 500;
  color: var(--g400); padding-left: 42px; margin-top: -6px;
}

/* Sticky live donation summary card */
.su-donate-summary {
  position: relative; overflow: hidden; margin-bottom: 26px;
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dk) 100%);
}
.su-donate-summary::before {
  content: ''; position: absolute; top: -60px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,16,32,.35) 0%, transparent 70%);
  pointer-events: none;
}
.su-donate-summary-head {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 9px;
  padding: 15px 24px; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.su-donate-summary-head i { color: var(--red); }
.su-donate-summary-body { position: relative; z-index: 1; padding: 24px; }
.su-summary-amount {
  font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--white);
  font-size: 2.6rem; line-height: 1; letter-spacing: -.03em; display: flex; align-items: baseline; gap: 4px;
}
.su-summary-cur { font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.su-summary-freq {
  display: inline-block; margin-top: 10px; padding: 4px 12px;
  background: rgba(255,255,255,.1); border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .05em;
}
.su-summary-meta { list-style: none; padding: 0; margin: 20px 0 0; }
.su-summary-meta li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; border-top: 1px solid rgba(255,255,255,.1);
}
.su-summary-meta li span { font-size: .82rem; color: rgba(255,255,255,.55); }
.su-summary-meta li strong { font-size: .85rem; color: var(--white); font-weight: 700; text-align: right; }
.su-summary-secure {
  display: flex; align-items: center; gap: 8px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .76rem; color: rgba(255,255,255,.6);
}
.su-summary-secure i { color: var(--teal); }

/* Clean impact list (replaces inline-styled rows) */
.su-impact-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--g100);
}
.su-impact-row:last-child { border-bottom: none; }
.su-impact-amt {
  background: var(--gradient-primary); color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .8rem;
  padding: 4px 11px; border-radius: var(--r-pill); flex-shrink: 0; white-space: nowrap;
}
.su-impact-txt { color: var(--g600); font-size: .88rem; line-height: 1.5; }

/* Help links */
.su-help-link {
  display: flex; align-items: center; gap: 9px; font-weight: 700;
  font-size: .9rem; padding: 8px 0; word-break: break-word;
}
.su-help-link i { width: 18px; text-align: center; }

@media (max-width: 991px) {
  .su-donate-summary { position: static; }
  .su-donate-form-body-note { margin-left: 20px; margin-right: 20px; }
}

/* ════════════════════════════════════════════════════════════
   42. GALLERY — post cards + modal (ported from base)
════════════════════════════════════════════════════════════ */
/* ── Category Filter Tabs ────────────────────────────────────────────────── */
.bst-gallery-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.bst-gallery-filter-tab {
  padding: 7px 20px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #e0e4f0;
  background: #fff;
  color: #6c757d;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  text-transform: capitalize;
}
.bst-gallery-filter-tab:hover { border-color: #2B3990; color: #2B3990; }
.bst-gallery-filter-tab.active { background: #2B3990; border-color: #2B3990; color: #fff; }
.bst-gallery-filter-tab[data-cat="welfare"].active   { background: #CC1020; border-color: #CC1020; }
.bst-gallery-filter-tab[data-cat="education"].active { background: #28a745; border-color: #28a745; }
.bst-gallery-filter-tab[data-cat="maternal"].active  { background: #dc3545; border-color: #dc3545; }
.bst-gallery-filter-tab[data-cat="shelter"].active   { background: #6f42c1; border-color: #6f42c1; }
.bst-gallery-filter-tab[data-cat="community"].active { background: #17a2b8; border-color: #17a2b8; }

/* ── Gallery Post Cards Grid ─────────────────────────────────────────────── */
.bst-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.bst-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43,57,144,0.08);
  background: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #f0f2f8;
}
.bst-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(43,57,144,0.16);
}
.bst-gallery-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0a0f2b;
}
.bst-gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.bst-gallery-card:hover .bst-gallery-card-media img { transform: scale(1.06); }
.bst-gallery-card-media-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(204,16,32,0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Outfit', sans-serif;
}
.bst-gallery-card-media-count span { display: flex; align-items: center; gap: 3px; }
.bst-gallery-play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(204,16,32,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.bst-gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,57,144,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bst-gallery-card:hover .bst-gallery-card-overlay { opacity: 1; }
.bst-gallery-card-overlay-text {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(204,16,32,0.9);
  padding: 9px 22px;
  border-radius: 24px;
  font-family: 'Outfit', sans-serif;
}
.bst-gallery-card-body { padding: 16px 18px 18px; }
.bst-gallery-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1f3c;
  margin: 6px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Outfit', sans-serif;
}
.bst-gallery-card-desc {
  font-size: 0.82rem;
  color: #6c757d;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}
.bst-gallery-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: #aaa;
  flex-wrap: wrap;
}
.bst-gallery-card-meta span { display: flex; align-items: center; gap: 4px; }

/* Category badges */
.bst-gallery-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: capitalize;
  font-family: 'Outfit', sans-serif;
  background: rgba(43,57,144,0.1);
  color: #2B3990;
}
.bst-gallery-cat-badge.welfare   { background: rgba(204,16,32,0.14); color: #c47200; }
.bst-gallery-cat-badge.education { background: rgba(40,167,69,0.14);  color: #1a7a36; }
.bst-gallery-cat-badge.maternal  { background: rgba(220,53,69,0.12);  color: #b02a37; }
.bst-gallery-cat-badge.shelter   { background: rgba(111,66,193,0.12); color: #6f42c1; }
.bst-gallery-cat-badge.community { background: rgba(23,162,184,0.12); color: #117a8b; }
.bst-gallery-cat-badge.general   { background: rgba(43,57,144,0.1);   color: #2B3990; }

/* ── Gallery Modal ───────────────────────────────────────────────────────── */
#galleryModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,15,43,0.94);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#galleryModal.open { display: flex; }
.gModal-close {
  position: fixed;
  top: 14px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.2s;
}
.gModal-close:hover { background: #CC1020; }
.gModal-wrap {
  display: flex;
  width: 100%;
  max-width: 1060px;
  max-height: 88vh;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: gModalIn 0.22s ease;
}
@keyframes gModalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.gModal-media {
  flex: 0 0 62%;
  background: #0d1234;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.gModal-info {
  flex: 1;
  overflow-y: auto;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.gModal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1f3c;
  margin: 0;
  line-height: 1.3;
  font-family: 'Outfit', sans-serif;
}
.gModal-description {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.gModal-counts { display: flex; gap: 8px; flex-wrap: wrap; }
.gModal-count-badge {
  background: #f0f2f8;
  color: #2B3990;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
}
.gModal-meta {
  font-size: 0.8rem;
  color: #aaa;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.gModal-meta span { display: flex; align-items: center; gap: 4px; }
.gModal-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: #CC1020;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  font-family: 'Outfit', sans-serif;
}
.gModal-donate-btn:hover { background: #A80D18; color: #fff; transform: translateY(-2px); }

/* Swiper inside modal */
#gModalSwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
#gModalSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1234;
  position: relative;
  overflow: hidden;
}
#gModalSwiper .swiper-slide img  { max-width:100%; max-height:100%; object-fit:contain; display:block; }
#gModalSwiper .swiper-slide video { max-width:100%; max-height:100%; display:block; }
#gModalSwiper .swiper-slide iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }
.gModal-video-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gModal-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(204,16,32,0.92);
  border: 3px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.gModal-play-btn:hover { transform: scale(1.1); background: #CC1020; }
.gModal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  font-size: 0.8rem;
  text-align: center;
  z-index: 2;
}
.gModal-swiper-nav .swiper-button-next,
.gModal-swiper-nav .swiper-button-prev {
  color: #fff;
  background: rgba(204,16,32,0.85);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.gModal-swiper-nav .swiper-button-next:hover,
.gModal-swiper-nav .swiper-button-prev:hover { background: #CC1020; }
.gModal-swiper-nav .swiper-button-next::after,
.gModal-swiper-nav .swiper-button-prev::after { font-size: 0.85rem; font-weight: 900; }
.gModal-swiper-nav .swiper-pagination-bullet { background: rgba(255,255,255,0.45); opacity: 1; }
.gModal-swiper-nav .swiper-pagination-bullet-active { background: #CC1020; }

/* ── Gallery 2.0 Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .gModal-wrap { flex-direction: column; max-height: 92vh; }
  .gModal-media { flex: none; height: 260px; min-height: 0; }
  .gModal-info  { padding: 18px 16px; flex: 0 0 auto; overflow-y: auto; max-height: 46vh; }
  .gModal-title { font-size: 1.05rem; }
}
@media (max-width: 600px) {
  .bst-gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bst-gallery-card-desc { display: none; }
  .gModal-media { height: 210px; }
  .gModal-info  { padding: 14px; }
}
@media (max-width: 400px) {
  .bst-gallery-grid { grid-template-columns: 1fr; }
}
