/* ============================================================
   SREE SUBHA WELFARE - Complete Design System
   Premium Multi-Page Website Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* === Primary Brand Colors === */
  --orange-50:  #fff7ed;
  --orange-100: #ffedd5;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;

  /* === Neutral Palette === */
  --cream:    #fdf8f2;
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* === Dark Accent === */
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #162952;

  /* === Gradients === */
  --grad-brand:   linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --grad-warm:    linear-gradient(135deg, #fbbf24 0%, #f97316 40%, #ef4444 100%);
  --grad-dark:    linear-gradient(135deg, #0a1628 0%, #162952 100%);
  --grad-overlay: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(249,115,22,0.25) 100%);

  /* === Typography === */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* === Spacing === */
  --container: 1280px;
  --section-y: 100px;

  /* === Radii === */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-full: 9999px;

  /* === Shadows === */
  --shadow-xs:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:     0 4px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl:     0 32px 80px rgba(0,0,0,0.2);
  --shadow-brand:  0 8px 32px rgba(249,115,22,0.35);
  --shadow-brand-lg: 0 16px 48px rgba(249,115,22,0.45);

  /* === Transitions === */
  --ease-fast:  all 0.2s cubic-bezier(0.4,0,0.2,1);
  --ease:       all 0.35s cubic-bezier(0.4,0,0.2,1);
  --ease-slow:  all 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   BASE RESET & GLOBALS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease-fast); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; outline: none; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.display-1 { font-family: var(--font-display); font-size: clamp(52px,6.5vw,88px); font-weight: 900; line-height: 1.0; }
.display-2 { font-family: var(--font-display); font-size: clamp(40px,5vw,68px); font-weight: 800; line-height: 1.05; }
.heading-1  { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 800; line-height: 1.15; }
.heading-2  { font-family: var(--font-display); font-size: clamp(26px,3vw,40px); font-weight: 700; line-height: 1.2; }
.heading-3  { font-family: var(--font-display); font-size: clamp(20px,2.5vw,28px); font-weight: 700; line-height: 1.3; }
.body-lg  { font-size: 18px; line-height: 1.75; }
.body-md  { font-size: 16px; line-height: 1.7; }
.body-sm  { font-size: 14px; line-height: 1.65; }
.label    { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

.text-white   { color: var(--white); }
.text-brand   { color: var(--orange-500); }
.text-dark    { color: var(--gray-900); }
.text-muted   { color: var(--gray-500); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section   { padding: var(--section-y) 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.flex     { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid     { display: grid; }
.col-2    { grid-template-columns: repeat(2, 1fr); }
.col-3    { grid-template-columns: repeat(3, 1fr); }
.col-4    { grid-template-columns: repeat(4, 1fr); }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }

/* ============================================================
   GRADIENT TEXT
   ============================================================ */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SECTION LABELS / EYEBROWS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-500);
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.eyebrow.light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
  animation: blink 1.8s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .heading-2 { margin-bottom: 18px; color: var(--gray-900); }
.section-header .body-lg   { color: var(--gray-500); max-width: 620px; margin: 0 auto; }

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* Primary */
.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
}

/* Secondary */
.btn-secondary {
  background: white;
  color: var(--orange-600);
  border-color: var(--orange-500);
}
.btn-secondary:hover {
  background: var(--orange-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

/* Ghost White */
.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: white;
  transform: translateY(-2px);
}

/* Dark */
.btn-dark {
  background: var(--gray-900);
  color: white;
}
.btn-dark:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--orange-500);
  color: var(--orange-500);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-xl { padding: 22px 52px; font-size: 18px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--grad-brand);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 0;
  position: relative;
  overflow: hidden;
  z-index: 1001;
}
.marquee-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
}
.marquee-star { color: rgba(255,255,255,0.6); font-size: 10px; }
.close-bar {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 20px;
  line-height: 1;
  z-index: 2;
  padding: 4px;
}
.close-bar:hover { color: white; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--grad-brand);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-500);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--r-xs);
  transition: var(--ease-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange-500);
  background: var(--orange-50);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--orange-500);
  border-radius: var(--r-full);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.nav-tel svg { color: var(--orange-500); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 24px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-800);
}
.mobile-nav-link:hover { color: var(--orange-500); }
.mobile-nav-link.active { color: var(--orange-500); }
.mobile-donate-btn { margin-top: 24px; width: 100%; justify-content: center; font-size: 16px; }

/* ============================================================
   PAGE HERO BANNER (for inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--grad-dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.page-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 70%);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 40px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--orange-400); }

/* ============================================================
   HERO HOME SECTION
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.6) 55%, rgba(249,115,22,0.15) 100%);
  z-index: 1;
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 60px 0 160px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-full);
  padding: 8px 20px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideDown 0.8s ease 0.2s forwards;
}
.chip-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px,6.5vw,88px);
  line-height: 1.02;
  color: white;
  margin-bottom: 26px;
}
.hero-headline span { display: block; }
.hero-line-1 { opacity: 0; animation: slideUp 0.8s ease 0.3s forwards; }
.hero-line-2 {
  opacity: 0;
  animation: slideUp 0.8s ease 0.45s forwards;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-line-3 { opacity: 0; animation: slideUp 0.8s ease 0.6s forwards; }
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 44px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.75s forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.9s forwards;
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0;
  animation: slideUp 0.8s ease 1.05s forwards;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 36px;
  position: relative;
}
.hstat + .hstat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.hstat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hstat-suf { color: var(--orange-400); }
.hstat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* Hero Controls */
.hero-scroll-btn {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  animation: scrollBounce 2.5s ease infinite;
}
.scroll-wheel {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-ball {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: scrollBall 2s ease infinite;
}
@keyframes scrollBall {
  0%,100% { transform: translateY(0); opacity: 1; }
  80%      { transform: translateY(14px); opacity: 0; }
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-slide-dots {
  position: absolute;
  right: 36px;
  bottom: 52px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.slide-dot.active {
  background: var(--orange-400);
  height: 28px;
}

/* Animations */
@keyframes slideUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: var(--navy-900);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-strip .marquee-track { gap: 0; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.ticker-item .star-icon { color: var(--orange-400); }

/* ============================================================
   CARDS
   ============================================================ */

/* Program Card */
.program-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--ease-slow);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.program-card:hover .program-img img { transform: scale(1.07); }
.program-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.program-card:hover .program-img-overlay { opacity: 1; }
.program-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}
.tag-women   { background: rgba(244,114,182,0.2); color: #f472b6; border: 1px solid rgba(244,114,182,0.4); }
.tag-housing { background: rgba(249,115,22,0.2);  color: var(--orange-400); border: 1px solid rgba(249,115,22,0.4); }
.tag-train   { background: rgba(52,211,153,0.2);  color: #34d399; border: 1px solid rgba(52,211,153,0.4); }
.tag-health  { background: rgba(248,113,113,0.2); color: #f87171; border: 1px solid rgba(248,113,113,0.4); }
.tag-edu     { background: rgba(96,165,250,0.2);  color: #60a5fa; border: 1px solid rgba(96,165,250,0.4); }
.tag-food    { background: rgba(251,191,36,0.2);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.4); }
.program-body {
  padding: 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--orange-50);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--ease);
}
.program-card:hover .program-icon {
  background: var(--grad-brand);
  color: white;
  box-shadow: var(--shadow-brand);
}
.program-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.program-body p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.program-reach {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-500);
  display: flex;
  align-items: center;
  gap: 5px;
}
.program-reach::before {
  content: '•';
  width: 6px; height: 6px;
  color: var(--orange-500);
}
.program-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease-fast);
}
.program-link:hover { color: var(--orange-500); gap: 10px; }

/* Cause Card */
.cause-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--ease-slow);
}
.cause-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cause-img { position: relative; height: 210px; overflow: hidden; }
.cause-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cause-card:hover .cause-img img { transform: scale(1.05); }
.cause-progress-bar-outer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 18px 14px;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
}
.cause-pbar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}
.cause-pbar-label .pct { color: white; font-size: 12px; }
.cause-pbar {
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  overflow: hidden;
}
.cause-pbar-fill {
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.cause-body { padding: 24px 26px 28px; }
.cause-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cause-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.cause-body p  { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.cause-raised  {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--gray-500);
  padding: 12px 0; margin-bottom: 16px;
  border-top: 1px dashed var(--gray-200);
  border-bottom: 1px dashed var(--gray-200);
}
.cause-raised strong { color: var(--gray-800); font-weight: 700; }

/* Stat Card */
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 44px 32px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: var(--ease);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-6px); }
.stat-icon { color: var(--orange-400); margin-bottom: 18px; display: flex; justify-content: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 54px; font-weight: 900;
  color: white; line-height: 1;
  display: flex; align-items: flex-end; justify-content: center; gap: 2px;
}
.stat-suf { font-size: 32px; color: var(--orange-400); }
.stat-label { font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 10px; }

/* Team Card */
.team-card {
  text-align: center;
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--ease-slow);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--orange-100);
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 600; color: var(--orange-500); margin-bottom: 14px; }
.team-bio  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease-fast);
}
.social-btn:hover { background: var(--orange-500); border-color: var(--orange-500); color: white; transform: translateY(-2px); }

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  min-width: 100%;
}
.tcard-quote {
  font-size: 100px;
  line-height: 0.8;
  color: var(--orange-100);
  font-family: Georgia, serif;
  position: absolute;
  top: 32px; left: 36px;
  pointer-events: none;
}
.tcard-text {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.tcard-stars { color: var(--orange-400); font-size: 15px; letter-spacing: 2px; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange-100);
}
.tcard-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gray-900); }
.tcard-location { font-size: 13px; color: var(--gray-400); margin-top: 2px; }

/* Timeline */
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: '';
  position: absolute; left: 14px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange-500), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -34px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}
.timeline-year { font-size: 12px; font-weight: 700; color: var(--orange-500); letter-spacing: 1px; margin-bottom: 6px; }
.timeline-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.timeline-text { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* Feature List */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  background: white;
  transition: var(--ease);
}
.feature-item:hover { box-shadow: var(--shadow-sm); border-color: var(--orange-100); }
.feature-icon-box {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--orange-50);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}
.feature-item:hover .feature-icon-box { background: var(--orange-500); color: white; }
.feature-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.feature-text  { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open { border-color: var(--orange-200,#fed7aa); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: var(--gray-800);
  gap: 12px;
  transition: var(--ease);
}
.faq-question:hover { color: var(--orange-500); }
.faq-item.open .faq-question { color: var(--orange-500); background: var(--orange-50); }
.faq-chevron {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
  color: var(--gray-400);
  font-size: 14px;
}
.faq-item.open .faq-chevron { background: var(--orange-500); border-color: var(--orange-500); color: white; transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  background: white;
  transition: var(--ease-fast);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: white;
  box-shadow: var(--shadow-brand);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(249,115,22,0.8);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: white;
  opacity: 0; transition: var(--ease);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span { font-size: 13px; font-weight: 600; }

/* ============================================================
   DONATE FORM
   ============================================================ */
.donate-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
}
.donate-tabs {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--r-md);
  padding: 5px;
  margin-bottom: 28px;
}
.donate-tab {
  flex: 1;
  padding: 12px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--ease);
}
.donate-tab.active {
  background: white;
  color: var(--orange-500);
  box-shadow: var(--shadow-xs);
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.amount-opt {
  padding: 14px 10px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-700);
  background: white;
  transition: var(--ease-fast);
  cursor: pointer;
  text-align: center;
}
.amount-opt:hover, .amount-opt.active {
  border-color: var(--orange-500);
  color: var(--orange-500);
  background: var(--orange-50);
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--gray-800);
  background: white;
  transition: var(--ease-fast);
}
.form-input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-input::placeholder { color: var(--gray-400); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.donate-submit {
  width: 100%;
  padding: 18px;
  background: var(--grad-brand);
  color: white;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-brand);
  transition: var(--ease);
  cursor: pointer;
  border: none;
}
.donate-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand-lg); }
.donate-secure {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-100); }
.contact-icon-wrap {
  width: 48px; height: 48px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.contact-info-card p { font-size: 15px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ============================================================
   TRUST/PARTNER SECTION
   ============================================================ */
.partner-logo-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  font-size: 13px; font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: var(--ease);
  cursor: default;
}
.partner-logo-card:hover { color: var(--orange-500); border-color: var(--orange-200,#fed7aa); box-shadow: var(--shadow-sm); transform: translateY(-3px); }

/* ============================================================
   SOCIAL LINKS
   ============================================================ */
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease-fast);
}
.social-link:hover { background: var(--orange-500); border-color: var(--orange-500); color: white; transform: translateY(-3px); }

/* ============================================================
   NEWSLETTER / CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--grad-brand);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-strip::after {
  content: '';
  position: absolute;
  right: 60px; bottom: -120px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-strip-text { position: relative; z-index: 1; }
.cta-strip-text h2 { font-family: var(--font-display); font-size: clamp(22px,3vw,34px); font-weight: 800; color: white; margin-bottom: 8px; }
.cta-strip-text p { font-size: 16px; color: rgba(255,255,255,0.8); }
.cta-strip-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }
.cta-strip .btn-ghost-white { flex-shrink: 0; }

/* ============================================================
   NEWSLETTER FORM (Footer)
   ============================================================ */
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 16px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  color: white;
  font-size: 14px;
  transition: var(--ease-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--orange-400); background: rgba(249,115,22,0.08); }
.newsletter-btn {
  padding: 12px 20px;
  background: var(--grad-brand);
  color: white;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  transition: var(--ease-fast);
  cursor: pointer; border: none;
}
.newsletter-btn:hover { filter: brightness(1.12); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); }
.footer-top { padding: 80px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
}
.footer-about { }
.footer-logo { margin-bottom: 22px; }
.footer-logo .logo-name { color: white; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.footer-badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange-400);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--ease-fast); }
.footer-links a:hover { color: var(--orange-400); padding-left: 4px; }
.footer-newsletter-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-newsletter-col p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 28px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease-fast);
}
.footer-social a:hover { background: var(--orange-500); border-color: var(--orange-500); color: white; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-inner p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: var(--ease-fast); }
.footer-bottom-links a:hover { color: var(--orange-400); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: var(--ease);
  border: none; cursor: pointer;
}
#back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-4px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-left.revealed, .reveal-right.revealed { transform: translateX(0); }

/* ============================================================
   HOME PAGE SPECIFIC — About Preview
   ============================================================ */
.about-mosaic { position: relative; height: 560px; }
.mosaic-main {
  position: absolute; top: 0; left: 0;
  width: 68%; height: 84%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mosaic-main img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-sub {
  position: absolute; bottom: 0; right: 0;
  width: 48%; height: 52%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.mosaic-sub img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-badge {
  position: absolute;
  bottom: 56%; right: 42%;
  transform: translate(50%, 50%);
  background: var(--grad-brand);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-brand-lg);
  white-space: nowrap;
  z-index: 2;
}
.mosaic-badge-num { font-family: var(--font-display); font-size: 42px; font-weight: 900; line-height: 1; }
.mosaic-badge-num sup { font-size: 20px; }
.mosaic-badge-label { font-size: 12px; font-weight: 600; opacity: 0.85; margin-top: 4px; }
.mosaic-award {
  position: absolute; top: 20px; right: 0;
  background: white;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.mosaic-award-icon { font-size: 28px; }
.mosaic-award strong { display: block; font-size: 13px; font-weight: 700; color: var(--gray-900); }
.mosaic-award span  { font-size: 11px; color: var(--gray-400); }

/* ============================================================
   PARALLAX IMPACT SECTION
   ============================================================ */
.impact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--navy-900);
}
.impact-pattern {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 36px 36px;
}
.impact-glow-left {
  position: absolute; left: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.impact-glow-right {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* ============================================================
   VIDEO/STORY SECTION
   ============================================================ */
.video-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.video-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(249,115,22,0.35) 100%);
}
.video-content { position: relative; z-index: 2; color: white; }
.video-title { font-family: var(--font-display); font-size: clamp(36px,5vw,62px); font-weight: 900; color: white; margin-bottom: 20px; }
.video-title span { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.video-sub { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 48px; }
.play-btn {
  display: inline-flex; flex-direction: column; align-items: center; gap: 20px;
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer;
}
.play-circle {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(249,115,22,0.5);
  animation: ripplePulse 2.2s ease infinite;
  transition: var(--ease);
}
.play-btn:hover .play-circle { transform: scale(1.1); }
@keyframes ripplePulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  70%  { box-shadow: 0 0 0 28px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* ============================================================
   PROGRESS BAR (skills/mission)
   ============================================================ */
.skill-bar { margin-bottom: 22px; }
.skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.skill-name { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.skill-pct  { font-size: 14px; font-weight: 700; color: var(--orange-500); }
.skill-track { height: 8px; background: var(--gray-100); border-radius: var(--r-full); overflow: hidden; }
.skill-fill {
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   CERTIFICATION BADGES
   ============================================================ */
.cert-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.cert-badge:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cert-icon { font-size: 28px; flex-shrink: 0; }
.cert-name  { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--gray-900); }
.cert-desc  { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ============================================================
   FORM SUCCESS MESSAGE
   ============================================================ */
.form-success-msg {
  display: none;
  padding: 14px 18px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: var(--r-md);
  color: #15803d;
  font-size: 14px; font-weight: 600;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
}
.form-success-msg.show { display: flex; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hstat { padding: 16px 24px; }
}

@media (max-width: 900px) {
  :root { --section-y: 72px; }

  /* Nav mobile */
  .nav-links { display: none; }
  .nav-tel   { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .col-4 { grid-template-columns: repeat(2, 1fr); }
  .col-3 { grid-template-columns: repeat(2, 1fr); }

  /* About mosaic */
  .about-mosaic { height: 360px; }
  .mosaic-award { display: none; }
  .mosaic-badge { padding: 14px 18px; }
  .mosaic-badge-num { font-size: 30px; }

  /* CTA Strip */
  .cta-strip { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-strip-actions { justify-content: center; }

  /* Testimonial */
  .testimonial-card { padding: 36px 28px; }
  .tcard-text { font-size: 16px; }

  /* Hero stats */
  .hero-stats-bar { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-y: 56px; }
  .container { padding: 0 18px; }

  .col-2, .col-3, .col-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .page-hero { padding: 72px 0 56px; }
  .page-hero h1 { font-size: 32px; }

  .hero-body { padding: 40px 0 120px; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .donate-card { padding: 28px 22px; }
  .cta-strip { padding: 32px 24px; }
  .cta-strip-actions { flex-direction: column; width: 100%; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .about-mosaic { height: 280px; }
  .mosaic-main { width: 78%; height: 86%; }
  .mosaic-sub { width: 52%; height: 50%; }
  .mosaic-badge { padding: 10px 14px; }
  .mosaic-badge-num { font-size: 26px; }

  .amount-grid { grid-template-columns: repeat(2, 1fr); }

  .stat-num { font-size: 42px; }
  .hstat { padding: 14px 18px; }
  .hstat-num { font-size: 28px; }
}
