/* ============================================================
   ZCCI — Zambia Community Care Initiative
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  --green:        #3aaa5c;
  --green-dark:   #2d8f4e;
  --green-darker: #1f6638;
  --green-light:  #edf8f2;
  --gold:         #f0a828;
  --gold-dark:    #cb8c10;
  --dark:         #243447;
  --dark-2:       #2f4560;
  --text:         #3c4a56;
  --text-light:   #718096;
  --light:        #f5f7f6;
  --white:        #ffffff;
  --border:       #e4e9e7;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --transition:   0.3s ease;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ── 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);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p  { margin-bottom: 1rem; }

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section     { padding: 5.5rem 0; }
.section-sm  { padding: 3rem 0; }
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }

/* ── Section Labels ────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.label-green { background: var(--green-light); color: var(--green-dark); }
.label-gold  { background: #fef3d8; color: var(--gold-dark); }
.label-white { background: rgba(255,255,255,0.15); color: var(--white); }

.section-title    { margin-bottom: 0.625rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,176,22,0.35);
}
.btn-secondary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60,184,100,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.05rem; }

/* ── Icons ─────────────────────────────────────────────── */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke-width: 1.75;
}
.icon-lg { width: 1.4em; height: 1.4em; }
.team-card-avatar.initials {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.375rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 0.875rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-icon { background: var(--green-dark); transform: scale(1.05); }
.nav-logo-text .name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo-text .name { color: var(--dark); }
.nav-logo-text .tagline {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo-text .tagline { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links a:hover { background: var(--light); color: var(--green-dark); }
.nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a.active { color: var(--green-dark); font-weight: 600; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 4px 16px rgba(248,176,22,0.4) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile fullscreen menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .mobile-cta {
  margin-top: 1.25rem;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 1rem 3rem !important;
  border-radius: 100px;
  font-size: 1.1rem !important;
  font-weight: 700;
}
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  line-height: 1;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(26,43,60,0.78) 0%, rgba(33,52,69,0.72) 45%, rgba(26,50,40,0.82) 100%),
    url("/images/zcci.jpeg") center / cover no-repeat;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(60,184,100,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.625rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero h1 .accent { color: var(--gold); }
.hero > .container > .hero-content > p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-grow 2s ease-in-out infinite;
}
@keyframes scroll-grow {
  0%   { height: 0;   opacity: 1; }
  100% { height: 40px; opacity: 0; }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* ── Impact Stats Strip ────────────────────────────────── */
.stats-section { background: var(--white); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.stat-card:nth-child(1)::after { background: var(--green); }
.stat-card:nth-child(2)::after { background: var(--gold); }
.stat-card:nth-child(3)::after { background: #3b82f6; }
.stat-card:nth-child(4)::after { background: #8b5cf6; }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-emoji { font-size: 2rem; margin-bottom: 0.875rem; display: block; }
.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Programs Section ──────────────────────────────────── */
.programs-section { background: var(--light); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.program-card-img .program-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform 0.5s ease;
}
.program-card-img.health-bg    { background: linear-gradient(135deg, #e0f7f0, #b2f0d8); }
.program-card-img.edu-bg       { background: linear-gradient(135deg, #e8f0fe, #c5d8fc); }
.program-card-img.community-bg { background: linear-gradient(135deg, #fef9e7, #fde6aa); }
.program-card:hover .program-visual { transform: scale(1.1); }
.program-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: white;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
}
.program-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-card h3 { margin-bottom: 0.625rem; }
.program-card p  { color: var(--text-light); font-size: 0.93rem; flex: 1; }
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 1.125rem;
  transition: var(--transition);
}
.program-link:hover { gap: 0.75rem; }

/* ── About Snippet ─────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 160px;
}
.about-float-card .float-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.about-float-card .float-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.about-badge-top {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--green);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-top .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-top .badge-text {
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.about-content h2   { margin-bottom: 1.25rem; }
.about-content p    { color: var(--text-light); line-height: 1.8; }
.about-values-mini  { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin: 2rem 0; }
.value-mini {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-mini:hover { border-color: var(--green); }
.value-mini-icon {
  width: 34px; height: 34px;
  background: var(--green-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.value-mini h4 {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.value-mini p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

/* ── News / Facebook Feed ──────────────────────────────── */
.news-section { background: var(--light); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img {
  height: 195px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a4a6b, #1e3a52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.fb-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  width: 28px; height: 28px;
  background: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 0.85rem;
  z-index: 1;
}
.news-card-body {
  padding: 1.375rem 1.375rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.78rem;
}
.news-source {
  color: #1877f2;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.news-date { color: var(--text-light); }
.news-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.news-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-footer {
  padding: 0.875rem 1.375rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-engagement {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.news-engagement span { display: flex; align-items: center; gap: 0.3rem; }
.news-read-more { font-size: 0.8rem; font-weight: 700; color: var(--green); }

/* Loading & empty states */
.news-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: var(--text-light);
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.news-empty { grid-column: 1 / -1; text-align: center; padding: 3rem; color: var(--text-light); }

/* ── Get Involved ──────────────────────────────────────── */
.get-involved {
  background: linear-gradient(140deg, #1a3d28 0%, #1e4830 50%, #243447 100%);
  position: relative;
  overflow: hidden;
}
.get-involved::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(58,170,92,0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.get-involved::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(240,168,40,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.involved-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.involved-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}
.involved-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.involved-card:hover .involved-icon { background: var(--green); }
.involved-card h3 { color: white; margin-bottom: 0.625rem; }
.involved-card p  { color: rgba(255,255,255,0.62); font-size: 0.93rem; margin-bottom: 1.75rem; }

/* ── Testimonial ───────────────────────────────────────── */
.testimonial-section {
  background: var(--green-light);
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.55;
  font-style: italic;
  position: relative;
}
.open-quote {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--green);
  line-height: 0;
  vertical-align: -2.5rem;
  font-style: normal;
  margin-right: 0.1em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.testimonial-info p  { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner { background: var(--green); padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 0.875rem; }
.cta-banner p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: #1e2e3c;
  color: rgba(255,255,255,0.72);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 270px;
  margin: 1.25rem 0 1.5rem;
}
.footer-social { display: flex; gap: 0.625rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--green); transform: translateY(-2px); }
.footer h4 {
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.625rem; }
.footer ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 0.875rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1rem;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Inner Page Hero ───────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(140deg, rgba(26,43,60,0.82) 0%, rgba(33,52,69,0.78) 50%, rgba(26,50,40,0.86) 100%),
    url("/images/zcci.jpeg") center / cover no-repeat;
  padding: 8.5rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: white; position: relative; z-index: 1; }
.page-hero p  {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0.875rem auto 0;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a    { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .cur { color: rgba(255,255,255,0.65); }

/* ── About Inner Page ──────────────────────────────────── */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mv-card.mission::before { background: var(--green); }
.mv-card.vision::before  { background: var(--gold); }
.mv-card-icon { font-size: 2.5rem; margin-bottom: 1.125rem; display: block; }
.mv-card h3   { margin-bottom: 0.875rem; }
.mv-card p    { color: var(--text-light); line-height: 1.8; margin: 0; }

.values-section { background: var(--light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card-icon { font-size: 2.5rem; margin-bottom: 0.875rem; display: block; }
.value-card h4   { font-size: 1rem; margin-bottom: 0.4rem; }
.value-card p    { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ── Team Page ─────────────────────────────────────────── */
.team-section { background: var(--light); }
.team-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  margin-bottom: 4rem;
  box-shadow: var(--shadow);
}
.team-featured-img {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 9rem;
  min-height: 460px;
}
.team-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.team-featured-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-role-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.team-featured-body h2 { margin-bottom: 1.125rem; }
.team-featured-body p  { color: var(--text-light); line-height: 1.8; margin-bottom: 0.875rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 1.75rem; }
.credential {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.35rem 0.875rem;
  font-size: 0.78rem;
  font-weight: 500;
}
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.125rem;
  overflow: hidden;
}
.team-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3   { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card-role { color: var(--green); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p    { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ── Contact Page ──────────────────────────────────────── */
.contact-section { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.875rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-card p  { font-size: 0.93rem; font-weight: 500; margin: 0; }
.contact-card a  { color: var(--green); }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-card h3  { margin-bottom: 0.375rem; }
.form-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(60,184,100,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  background: var(--green-light);
  border: 1px solid var(--green);
  color: var(--green-dark);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  display: none;
  margin-bottom: 1rem;
}

/* ── Donate Page ───────────────────────────────────────── */
.donate-section { background: var(--light); }
.donate-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.donate-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.donate-form-card h2 { margin-bottom: 0.625rem; }
.donate-form-card > p { color: var(--text-light); margin-bottom: 2rem; }
.freq-tabs {
  display: flex;
  background: var(--light);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.5rem;
}
.freq-tab {
  flex: 1;
  padding: 0.625rem;
  text-align: center;
  background: none;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text-light);
}
.freq-tab.active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.amount-btn {
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
  color: var(--text);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}
.donate-impact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 6rem;
}
.donate-impact-card h3 { margin-bottom: 1.25rem; }
.impact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.impact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  background: var(--light);
  border-radius: var(--radius-sm);
}
.impact-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-heading);
  min-width: 56px;
}
.impact-desc { font-size: 0.875rem; color: var(--text); line-height: 1.4; }
.trust-items { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.trust-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── News/Blog Page ────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: var(--white);
  border: 2px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ── Animations ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .programs-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap    { max-width: 480px; margin: 0 auto; }
  .about-badge-top   { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid       { grid-template-columns: repeat(3, 1fr); }
  .team-featured     { grid-template-columns: 1fr; }
  .team-featured-img { min-height: 280px; font-size: 6rem; }
  .team-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .donate-grid       { grid-template-columns: 1fr; }
  .donate-impact-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .programs-grid   { grid-template-columns: 1fr; }
  .news-grid       { grid-template-columns: 1fr; }
  .get-involved-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid    { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; gap: 1rem; text-align: center; }
  .team-cards-grid { grid-template-columns: 1fr; }
  .section         { padding: 4rem 0; }
  .about-float-card { right: 0; }
  .hero-stats      { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .stats-grid   { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .amount-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn          { justify-content: center; }
}
