/* ==========================================================================
   Sakh'ulwazi Foundation - Modern Design System & Stylesheet
   Tailored for Sakh'ulwazi Foundation (Jabavu, Soweto)
   Brand Colors:
   - Deep Navy: #0e2238 / #162d50
   - Royal Blue: #1d4ed8 / #2563eb
   - Warm Amber / Sun Gold: #f59e0b / #d97706
   - Vibrant Emerald Green: #059669 / #10b981
   ========================================================================== */

:root {
  /* Core Brand Colors */
  --primary-navy: #0e2238;
  --primary-blue: #163860;
  --primary-bright: #2563eb;
  --primary-light: #eff6ff;
  
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-gold-light: #fef3c7;
  
  --accent-emerald: #059669;
  --accent-emerald-hover: #047857;
  --accent-emerald-light: #d1fae5;
  
  --accent-purple: #7c3aed;
  --accent-purple-light: #f3e8ff;
  
  --color-dark: #09131f;
  --color-slate: #334155;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #0e2238 0%, #163860 50%, #1e4b82 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-hero: linear-gradient(175deg, #f0fdf4 0%, #f8fafc 40%, #eff6ff 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  
  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  
  /* Elevations & Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 30px -5px rgba(14, 34, 56, 0.12), 0 10px 15px -5px rgba(14, 34, 56, 0.06);
  --shadow-card-hover: 0 22px 35px -5px rgba(14, 34, 56, 0.15), 0 0 0 1px rgba(245, 158, 11, 0.2);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-slate);
  background-color: var(--color-bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Typography & Shared Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.2;
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-bright);
  background: var(--primary-light);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: #fef08a;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-tag.pulse-tag {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
  animation: pulse-soft 2s infinite;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #163860 0%, #059669 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: var(--color-border);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--primary-bright);
  color: var(--primary-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: #ffffff;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--primary-light);
  color: var(--primary-bright);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebc57;
  border-color: #1ebc57;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-facebook {
  background: #1877f2;
  color: #ffffff;
}

.btn-facebook:hover {
  background: #0d65d9;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-forgood {
  background: #e11d48;
  color: #ffffff;
  font-weight: 700;
}

.btn-forgood:hover {
  background: #be123c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.35);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.pulse-btn {
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.02); }
}

/* ==========================================================================
   Main Header & Navigation (Ultra-Clean, Modern)
   ========================================================================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-slate);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-bright);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.highlight-link {
  color: #dc2626 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dc2626;
  display: inline-block;
  animation: pulse-soft 1.5s infinite;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.drawer-logo {
  height: 42px;
}

.drawer-close {
  background: #f1f5f9;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary-navy);
  cursor: pointer;
}

.mobile-nav-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mobile-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-link i {
  color: var(--accent-gold);
  width: 20px;
}

.drawer-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  background: var(--gradient-hero);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-shapes .shape-1 {
  width: 450px;
  height: 450px;
  background: rgba(245, 158, 11, 0.12);
  top: -100px;
  right: -50px;
}

.hero-bg-shapes .shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(5, 150, 105, 0.1);
  bottom: -150px;
  left: -100px;
}

.hero-bg-shapes .shape-3 {
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.08);
  top: 30%;
  left: 35%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.live-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-slate);
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}

.trust-label {
  display: flex;
  flex-direction: column;
}

.trust-label strong {
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.trust-label span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Hero Visual Stack */
.hero-visual-col {
  position: relative;
}

.hero-card-stack {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.hero-main-card .image-wrapper {
  position: relative;
  height: 440px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 34, 56, 0.8) 100%);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 5;
  transition: transform var(--transition-normal);
}

.floating-badge:hover {
  transform: translateY(-3px);
}

.top-floating {
  top: 1.5rem;
  left: -1rem;
}

.top-floating i {
  font-size: 1.4rem;
  color: var(--primary-bright);
}

.bottom-floating {
  bottom: 1.5rem;
  left: 1.5rem;
}

.bottom-floating i {
  font-size: 1.4rem;
  color: var(--accent-emerald);
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}

.floating-badge strong {
  font-size: 0.88rem;
  color: var(--primary-navy);
}

.floating-badge span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero-stat-floating-box {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: #ffffff;
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  z-index: 6;
  min-width: 210px;
}

.stat-number-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.4rem;
}

.stat-number-box .number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-number-box .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-slate);
}

.stat-progress-bar {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.stat-progress-bar .stat-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Impact Counter Ticker Strip
   ========================================================================== */

.counter-strip {
  background: #ffffff;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.stat-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-icon-wrapper.blue {
  background: #eff6ff;
  color: var(--primary-bright);
}

.stat-icon-wrapper.green {
  background: #ecfdf5;
  color: var(--accent-emerald);
}

.stat-icon-wrapper.amber {
  background: #fffbeb;
  color: var(--accent-gold);
}

.stat-icon-wrapper.teal {
  background: #f0fdfa;
  color: #0d9488;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
}

.stat-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-slate);
  margin-top: 0.15rem;
}

.stat-sub {
  font-size: 0.725rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Key Programs and Services (Redesigned & Highlighted)
   ========================================================================== */

.programs-section {
  background: var(--color-bg-light);
}

.programs-grid-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.program-card-large {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  transition: all var(--transition-normal);
}

.program-card-large.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.program-card-large.reverse .program-media {
  order: 2;
}

.program-card-large.reverse .program-info-body {
  order: 1;
}

.program-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.program-media {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.program-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.program-card-large:hover .program-img-real {
  transform: scale(1.04);
}

.program-badge-floating {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.program-badge-floating.blue { background: rgba(37, 99, 235, 0.92); }
.program-badge-floating.green { background: rgba(5, 150, 105, 0.92); }
.program-badge-floating.amber { background: rgba(217, 119, 6, 0.92); }
.program-badge-floating.purple { background: rgba(124, 58, 237, 0.92); }

.program-info-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.pillar-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-bright);
  display: block;
  margin-bottom: 0.35rem;
}

.pillar-label.green-text { color: var(--accent-emerald); }
.pillar-label.amber-text { color: var(--accent-gold-hover); }
.pillar-label.purple-text { color: var(--accent-purple); }

.program-heading {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.program-desc {
  font-size: 0.975rem;
  color: var(--color-slate);
  margin-bottom: 1.35rem;
  line-height: 1.65;
}

.program-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.highlight-item {
  font-size: 0.875rem;
  color: var(--primary-navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-item i {
  color: var(--accent-emerald);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.program-action {
  margin-top: auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-image-collage {
  position: relative;
}

.about-img-main {
  width: 88%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-img-sub-wrap {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.about-img-sub {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-experience-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.about-experience-card .years {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.about-experience-card .desc {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-stats-mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-stat .num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.mini-stat .label {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.about-action-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Urgent Needs & Wishlist Section
   ========================================================================== */

.urgent-needs-section {
  background: var(--color-bg-light);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.need-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.need-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245, 158, 11, 0.3);
}

.need-card.featured {
  background: #ffffff;
  border: 2px solid rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow-md);
}

.need-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.need-badge.urgent {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.need-badge.food {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.need-badge.tech {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.need-badge.volunteer {
  background: #faf5ff;
  color: #9333ea;
  border: 1px solid #e9d5ff;
}

.need-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.need-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.need-meta {
  display: flex;
  flex-direction: column;
}

.need-meta .category {
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-bright);
  letter-spacing: 0.05em;
}

.need-meta .loc {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.need-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.need-desc {
  font-size: 0.95rem;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.need-progress-wrap {
  margin-bottom: 1.75rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-slate);
}

.progress-labels .highlight {
  color: var(--accent-gold-hover);
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.need-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* Forgood Banner */
.forgood-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-xl);
}

.forgood-banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
}

.banner-icon {
  font-size: 2.5rem;
  color: #f43f5e;
}

.forgood-banner h4 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.forgood-banner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-section {
  background: #ffffff;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-slate);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 34, 56, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.cap-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.cap-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Facebook follow box */
.fb-follow-box {
  background: #f0f6ff;
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid #bfdbfe;
  flex-wrap: wrap;
}

.fb-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fb-text i {
  font-size: 2.75rem;
  color: #1877f2;
}

.fb-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.fb-text p {
  font-size: 0.9rem;
  color: var(--color-slate);
}

/* ==========================================================================
   Donation & Banking Details Section
   ========================================================================== */

.donate-section {
  background: var(--gradient-brand);
  color: #ffffff;
  position: relative;
}

.donate-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.text-white {
  color: #ffffff !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.impact-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-row {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.metric-amount {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-gold);
  min-width: 90px;
}

.metric-desc {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.95);
}

.trust-box-white {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--accent-emerald);
}

.trust-box-white h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-box-white p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Banking Card */
.banking-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: var(--color-slate);
  box-shadow: var(--shadow-xl);
}

.banking-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.banking-card-header i {
  font-size: 2rem;
  color: var(--primary-bright);
}

.banking-card-header h3 {
  font-size: 1.35rem;
  color: var(--primary-navy);
}

.banking-card-header span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.bank-details-table {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.bank-row {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--color-border);
}

.bank-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.bank-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.copyable {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-bright);
}

.copyable:hover {
  text-decoration: underline;
}

.donate-options-divider {
  text-align: center;
  position: relative;
  margin: 1.25rem 0;
}

.donate-options-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.donate-options-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.08em;
}

.bank-notice {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

/* ==========================================================================
   Volunteer & Pledge Section
   ========================================================================== */

.volunteer-section {
  background: #ffffff;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.volunteer-roles {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.role-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--color-bg-light);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.role-pill:hover {
  border-color: var(--primary-bright);
  background: #ffffff;
  transform: translateX(5px);
}

.role-pill i {
  color: var(--accent-gold);
  font-size: 1.15rem;
}

.volunteer-form-wrap {
  background: var(--color-bg-light);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.action-form .form-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.action-form .form-subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

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

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--color-slate);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  display: none;
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */

.contact-section {
  background: var(--color-bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.info-text p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 0.35rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-bright);
}

.card-link.green-link {
  color: var(--accent-emerald);
}

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: #ecfdf5;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Map Column */
.map-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
}

.map-header i {
  font-size: 1.5rem;
  color: var(--primary-bright);
}

.map-header div {
  display: flex;
  flex-direction: column;
}

.map-header strong {
  color: var(--primary-navy);
}

.map-header span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.map-iframe-container {
  flex-grow: 1;
  min-height: 380px;
}

.map-footer-links {
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   Modal Dialog
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 19, 31, 0.75);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  z-index: 10;
  animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-slate);
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.modal-header h3 {
  font-size: 1.3rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 48px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 3px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-sdgs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sdg-mini-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  color: #a7f3d0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--accent-gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list li i {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
}

.footer-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social-row a:hover {
  background: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.75rem 0;
  font-size: 0.85rem;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-pill-badge, .hero-cta-group, .hero-trust-row {
    justify-content: center;
  }

  .hero-card-stack {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .program-card-large, .program-card-large.reverse {
    grid-template-columns: 1fr;
  }

  .program-card-large.reverse .program-media {
    order: 1;
  }

  .program-card-large.reverse .program-info-body {
    order: 2;
  }

  .program-media {
    height: 280px;
  }

  .about-grid, .donate-wrapper, .volunteer-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-collage {
    max-width: 540px;
    margin: 0 auto;
  }

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

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .needs-grid {
    grid-template-columns: 1fr;
  }

  .program-highlights-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .forgood-banner {
    flex-direction: column;
    text-align: center;
  }

  .forgood-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .fb-follow-box {
    flex-direction: column;
    text-align: center;
  }

  .fb-text {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .floating-badge {
    position: static;
    margin-top: 1rem;
  }

  .hero-stat-floating-box {
    position: static;
    margin-top: 1rem;
  }
}
