/* ==========================================================================
   ADOPT INITIATIVE - Modern Design System & Stylesheet (v2.3 Pro Balanced)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Palette */
  --primary: #046a58;
  --primary-dark: #034b3e;
  --primary-deep: #02332a;
  --primary-light: #0d8a74;
  --primary-soft: #e8f5f1;
  --primary-gradient: linear-gradient(135deg, #046a58 0%, #034b3e 100%);
  --hero-gradient: linear-gradient(90deg, rgba(2, 40, 33, 0.96) 0%, rgba(4, 80, 68, 0.84) 55%, rgba(4, 106, 88, 0.45) 100%);
  
  /* Accent Colors */
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fef3c7;
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --accent-glow: rgba(245, 158, 11, 0.35);

  /* Neutrals & Surfaces */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --dark-surface: #0b171c;
  --dark-surface-2: #13242b;
  
  /* High-Contrast Typography Colors (WCAG AAA Optimized) */
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;

  /* Typography Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(4, 106, 88, 0.08), 0 3px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 32px -4px rgba(4, 106, 88, 0.12), 0 6px 12px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px -12px rgba(4, 106, 88, 0.2);
  --shadow-glow: 0 0 24px var(--accent-glow);

  /* Balanced Border Radii (Architectural Hierarchy) */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
*, *::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(--text-body);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.handwritten {
  font-family: var(--font-accent);
  font-size: 1.4em;
  color: var(--accent);
  font-weight: 700;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 90px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-tag i {
  color: var(--accent);
}

.badge-tag.badge-accent {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0b171c;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
  color: #000;
}

.btn-emerald {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(4, 106, 88, 0.3);
}

.btn-emerald:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(4, 106, 88, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* ==========================================================================
   1. TOP NOTIFICATION & INFO BAR (Sharp Edge)
   ========================================================================== */
.top-info-bar {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.top-info-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-bar .contact-items {
  display: flex;
  gap: 24px;
}

.top-info-bar .contact-items a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-info-bar .contact-items a:hover {
  color: var(--accent);
}

.top-info-bar .contact-items i {
  color: var(--accent);
}

.top-info-bar .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-info-bar .social-links span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.top-info-bar .social-links a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.top-info-bar .social-links a:hover {
  background: var(--accent);
  color: #0b171c;
  transform: translateY(-2px);
}

/* ==========================================================================
   2. STICKY HEADER & NAVBAR (Sharp Edge)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  transition: var(--transition-normal);
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.main-header .btn-primary {
  background: var(--accent-gradient);
  color: #0b171c !important;
  font-weight: 700;
  padding: 10px 22px;
  font-size: 0.925rem;
  min-height: 42px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
  white-space: nowrap;
}

.main-header .btn-primary:hover {
  background: var(--accent-hover);
  color: #000000 !important;
  transform: translateY(-2px);
}

.phone-quickcall {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.phone-quickcall .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.phone-quickcall .text-wrap span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.phone-quickcall .text-wrap a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.phone-quickcall .text-wrap a:hover {
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-toggle-btn {
  display: none;
  background: var(--bg-alt);
  border: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  min-width: 44px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

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

.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-main);
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   3. HERO BANNER SECTION (Sharp Section Edge)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 640px;
  background: var(--dark-surface);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  touch-action: pan-y;
  border-radius: 0;
}

.hero-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.05);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 23, 28, 0.90) 0%, rgba(11, 23, 28, 0.78) 50%, rgba(4, 106, 88, 0.65) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 5;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 90px 0;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-trust-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Floating Metric Pills */
.hero-floating-pill {
  position: absolute;
  right: 5%;
  bottom: 12%;
  z-index: 12;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatBounce 4s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floating-pill .pill-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-floating-pill .pill-text h4 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1;
}

.hero-floating-pill .pill-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 4px 0 0 0;
  font-weight: 600;
}

/* Hero Controls */
.hero-nav-controls {
  position: absolute;
  right: 5%;
  bottom: 40px;
  z-index: 20;
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-nav-btn,
.hero-prev-btn,
.hero-next-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  outline: none;
  padding: 0;
}

.hero-nav-btn:hover,
.hero-prev-btn:hover,
.hero-next-btn:hover {
  background: var(--accent);
  color: #0b171c;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.hero-nav-btn:active,
.hero-prev-btn:active,
.hero-next-btn:active {
  transform: translateY(0) scale(0.96);
}

/* ==========================================================================
   4. QUICK IMPACT STATS BAR
   ========================================================================== */
.stats-banner {
  margin-top: -40px;
  position: relative;
  z-index: 20;
}

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

.stat-card {
  background: var(--bg-card);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 106, 88, 0.2);
}

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

.stat-card:nth-child(2) .stat-icon { background: #fef3c7; color: #d97706; }
.stat-card:nth-child(3) .stat-icon { background: #ede9fe; color: #7c3aed; }
.stat-card:nth-child(4) .stat-icon { background: #e0f2fe; color: #0284c7; }

.stat-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* ==========================================================================
   5. ABOUT OUR MISSION
   ========================================================================== */
.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images-composition {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  border-radius: var(--radius-lg);
}

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

.about-experience-card {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--primary);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience-card .exp-num {
  font-size: 1.85rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1;
}

.about-experience-card p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 4px 0 0 0;
}

.about-content .section-title {
  text-align: left;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-page);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.pillar-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.pillar-item h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Principles / Values Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.principle-card {
  background: #ffffff;
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 106, 88, 0.2);
}

.principle-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px auto;
  flex-shrink: 0;
}

.principle-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.principle-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ==========================================================================
   6. FLAGSHIP PROGRAMS & CAUSES (Equalized Baseline CTAs)
   ========================================================================== */
.programs-section {
  background: var(--bg-page);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.programs-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.program-card-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.program-card-featured .program-thumb {
  height: 100%;
  min-height: 340px;
}

.program-card-featured .program-body {
  padding: 36px;
  justify-content: center;
}

@media (max-width: 920px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .programs-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .program-card-featured {
    grid-template-columns: 1fr;
  }
  .program-card-featured .program-thumb {
    height: 260px;
    min-height: auto;
  }
  .program-card-featured .program-body {
    padding: 24px 20px;
  }
}

.program-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 106, 88, 0.15);
}

.program-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-card:hover .program-thumb img {
  transform: scale(1.08);
}

.program-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(4, 106, 88, 0.92);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.35;
  min-height: 2.7em;
}

.program-body h3 a:hover {
  color: var(--primary);
}

.program-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex: 1;
}

.program-progress-wrap {
  margin-bottom: 20px;
  margin-top: auto;
}

.progress-bar-track {
  height: 8px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.progress-stats span span {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   7. IMPACT SHOWCASE & STORY BANNER
   ========================================================================== */
.impact-banner {
  position: relative;
  background: var(--dark-surface);
  color: #ffffff;
  padding: 90px 0;
  overflow: hidden;
  border-radius: 0;
}

.impact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../wp-content/uploads/2025/07/IMG_6272.jpg') center/cover;
  opacity: 0.2;
  filter: grayscale(30%);
}

.impact-banner .container {
  position: relative;
  z-index: 2;
}

.impact-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.impact-banner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.25;
}

.impact-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

/* ==========================================================================
   8. VOICES OF IMPACT (Testimonials)
   ========================================================================== */
.testimonials-section {
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-page);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  border-color: rgba(4, 106, 88, 0.15);
}

.rating-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.quote-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 22px;
  line-height: 1.6;
  flex: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-meta h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   9. QUICK DONATION WIDGET
   ========================================================================== */
.donation-section,
.donation-widget-section {
  background: var(--bg-page);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.donation-content h2,
.donation-content .section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--text-main) !important;
  margin-bottom: 18px;
  font-weight: 800;
}

.donation-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 24px;
}

.donation-card-box {
  background: #ffffff;
  color: var(--text-main);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.donation-card-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-align: center;
}

.donation-card-box p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.amount-btn {
  padding: 12px 8px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-alt);
  background: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.amount-btn:hover, .amount-btn.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.custom-amount-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-alt);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  outline: none;
  transition: var(--transition-fast);
}

.custom-amount-input:focus {
  border-color: var(--primary);
}

.bank-details-box {
  background: var(--bg-page);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(4, 106, 88, 0.3);
  margin-bottom: 22px;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.bank-detail-row:last-child {
  margin-bottom: 0;
}

.bank-detail-row span:first-child {
  color: var(--text-muted);
}

.bank-detail-row span:last-child {
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   10. LATEST NEWS & FIELD REPORTS
   ========================================================================== */
.news-section {
  background: var(--bg-page);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.news-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

.news-date-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--dark-surface);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.news-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.35;
  min-height: 2.7em;
}

.news-body h3 a:hover {
  color: var(--primary);
}

.news-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: auto;
}

.news-readmore:hover {
  gap: 12px;
  color: var(--accent);
}

/* ==========================================================================
   11. RICH MODERN FOOTER (Sharp Section Frame)
   ========================================================================== */
.site-footer {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0 0;
  position: relative;
  border-radius: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about img {
  height: 46px;
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--accent);
  color: #0b171c;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 1.1rem;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  background: transparent;
  padding: 0;
  border: none;
}

.footer-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #ffffff;
  outline: none;
  min-width: 0;
  font-size: 16px;
  transition: var(--transition-fast);
}

.footer-newsletter-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  background: var(--accent);
  color: #0b171c;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  min-height: 44px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.footer-newsletter-form button:hover {
  background: #ffffff;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--accent);
  color: #0b171c;
  transform: translateY(-4px);
}

/* ==========================================================================
   12. SUBPAGE COMMON BANNER & BREADCRUMBS (Sharp Section Frame)
   ========================================================================== */
.page-banner {
  position: relative;
  background: var(--dark-surface);
  color: #ffffff;
  padding: 70px 0;
  overflow: hidden;
  text-align: center;
  border-radius: 0;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(20%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-banner-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* ==========================================================================
   13. TEAM MEMBER CARDS (Unified Portrait Framing)
   ========================================================================== */
.team-section-group {
  margin-bottom: 50px;
}

.team-section-group:last-child {
  margin-bottom: 0;
}

.team-group-title {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.team-group-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
  text-align: center;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 106, 88, 0.2);
}

.team-avatar-wrap {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: var(--bg-alt);
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover .team-avatar-wrap img {
  transform: scale(1.08);
}

.team-card-body {
  padding: 20px 16px;
}

.team-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ==========================================================================
   14. GALLERY FILTER, GRID & LIGHTBOX
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 8px 18px;
  min-height: 40px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 23, 28, 0.88) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

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

.gallery-card-overlay h5 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.gallery-card-overlay span {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 28, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   15. CONTACT PAGE STYLING (Refined 8px - 16px Radii)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-box {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-normal);
}

.contact-card-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 106, 88, 0.2);
}

.contact-card-box .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-box h5 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-card-box p, .contact-card-box a {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-card-box a:hover {
  color: var(--primary);
}

.contact-form-panel {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.contact-form-panel p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-alt);
  background: var(--bg-page);
  font-size: 16px;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(4, 106, 88, 0.08);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 50px;
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   16. SINGLE ARTICLE & FIELD REPORT LAYOUT
   ========================================================================== */
.article-section {
  background: var(--bg-page);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.article-main-content {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-feature-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta-bar i {
  color: var(--primary);
}

.article-content h2, .article-content h3 {
  margin: 32px 0 16px 0;
  color: var(--text-main);
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 22px;
}

.article-quote-box {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.article-photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.article-photo-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.article-photo-gallery-grid img:hover {
  transform: scale(1.03);
}

/* Sidebar Styling */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-alt);
}

.sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.quick-facts-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--bg-alt);
  font-size: 0.9rem;
}

.quick-facts-list li:last-child {
  border-bottom: none;
}

.quick-facts-list span:first-child {
  color: var(--text-muted);
}

.quick-facts-list span:last-child {
  font-weight: 700;
  color: var(--text-main);
}

.sidebar-cta-box {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.sidebar-cta-box h4 {
  color: #ffffff;
  border: none;
  padding: 0;
  margin-bottom: 12px;
}

.sidebar-cta-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* ==========================================================================
   16. COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .section-spacing { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .programs-grid-2col { grid-template-columns: 1fr; gap: 24px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .donation-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .article-layout { grid-template-columns: 1fr; gap: 36px; }
  .article-sidebar { position: static; }
  .hero-floating-pill, .hero-nav-controls { display: none; }
}

/* Medium Tablets & Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section-spacing { padding: 50px 0; }
  .section-title-wrap { margin-bottom: 36px; }
  
  .article-main-content { padding: 24px 18px; }
  .article-feature-img { height: 260px; }
  .article-photo-gallery-grid { grid-template-columns: 1fr; }
  
  /* Topbar & Nav */
  .top-info-bar { display: none; }
  .nav-menu, .phone-quickcall { display: none; }
  .header-actions .btn { display: none; }
  .mobile-toggle-btn { display: flex; align-items: center; justify-content: center; }
  .navbar-brand img { height: 38px; }

  /* Hero */
  .hero-section { min-height: 520px; }
  .hero-content { padding: 60px 0; text-align: left; }
  .hero-cta-group { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-group .btn { width: 100%; }

  /* Grids Stack to 1 Column on Mobile */
  .stats-banner { margin-top: 0; padding-top: 30px; }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat-card { padding: 18px 16px; }
  
  .about-img-secondary { display: none; }
  .about-experience-card {
    position: static;
    display: inline-block;
    margin-top: 14px;
    padding: 12px 20px;
  }
  .about-pillars { grid-template-columns: 1fr; gap: 12px; }
  
  .principles-grid { grid-template-columns: 1fr; gap: 18px; }
  .principle-card { padding: 28px 20px; }
  
  .programs-grid, .programs-grid-2col { grid-template-columns: 1fr; gap: 20px; }
  .program-body h3 { min-height: auto; }
  
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-body h3 { min-height: auto; }
  
  .team-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Donation Card */
  .donation-card-box { padding: 24px 16px; }
  .amount-presets { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bank-detail-row { font-size: 0.8rem; }

  /* Forms & Subpages */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-panel { padding: 24px 18px; }
  .map-container { height: 280px; margin-top: 36px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form button { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* Small Screen Phones (max-width: 480px) */
@media (max-width: 480px) {
  .btn { padding: 12px 20px; font-size: 0.95rem; }
  .section-title { font-size: 1.85rem; }
  .hero-desc { font-size: 1rem; }
  .amount-btn { font-size: 0.9rem; padding: 10px 4px; }
}

/* ==========================================================================
   17. MODERN ANIMATION & MICRO-INTERACTION SUITE
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Dynamic Progress Bar Animation */
.progress-bar-fill {
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gallery Filtering Transitions */
.gallery-card {
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle Shimmer & Magnetic Button Hover */
.btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

/* ==========================================================================
   18. NEW SECTIONS (FOUNDER DIRECTIVES & WORK PILLARS)
   ========================================================================== */

/* 4 Main Areas of Work Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.pillar-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 106, 88, 0.18);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 12px;
  font-weight: 700;
}

.pillar-card p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Why ADOPT Began Section */
.why-began-section {
  background: #ffffff;
  border-top: 1px solid var(--bg-alt);
  border-bottom: 1px solid var(--bg-alt);
}

.why-began-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-began-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-began-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.why-began-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-began-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* 5 Pathways: How You Can Get Involved */
.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.get-involved-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-normal);
  text-align: left;
}

.get-involved-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 106, 88, 0.2);
}

.get-involved-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.get-involved-card h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.get-involved-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.get-involved-card .btn {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.875rem;
}

/* Be Part of the ADOPT Community (Prominent Newsletter Hub) */
.community-hub-section {
  background: var(--dark-surface);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.community-hub-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(4, 106, 88, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.community-hub-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.community-hub-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #ffffff;
  margin-bottom: 14px;
}

.community-hub-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 30px;
}

.community-hub-form {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.community-hub-form input {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
}

.community-hub-form input:focus {
  border-color: var(--primary);
}

/* Featured Campaign Card: Help Us Support 100 Girls */
.campaign-card-featured {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-soft);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  margin-bottom: 40px;
}

.campaign-featured-thumb {
  position: relative;
  min-height: 320px;
}

.campaign-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

/* Voices From Our Community: Authentic Volunteer Quote Cards */
.volunteer-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.volunteer-voice-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.volunteer-voice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 106, 88, 0.18);
}

.volunteer-voice-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}

.volunteer-voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--bg-alt);
}

.volunteer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary-soft);
  border: 2px solid var(--primary);
}

.volunteer-voice-info h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 2px;
  font-weight: 700;
}

.volunteer-voice-info span {
  font-size: 0.825rem;
  color: var(--primary);
  font-weight: 600;
}

/* Responsive queries for new components */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .get-involved-grid { grid-template-columns: repeat(3, 1fr); }
  .volunteer-voices-grid { grid-template-columns: 1fr; gap: 20px; }
  .campaign-card-featured { grid-template-columns: 1fr; }
  .why-began-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .get-involved-grid { grid-template-columns: 1fr; }
  .community-hub-form { grid-template-columns: 1fr; }
  .campaign-featured-body { padding: 24px 20px; }
  .campaign-featured-thumb { min-height: 240px; }
}


/* ==========================================================================
   RESPONSIVE GRID UTILITIES & MOBILE STACKING
   ========================================================================== */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.volunteer-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .volunteer-roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .partner-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .team-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .volunteer-roles-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .partner-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .principle-card {
    padding: 28px 20px !important;
  }
  .principles-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
