/* ============================================================
   VOV – La Voix des Veuves et des Orphelins
   Main Stylesheet  |  Mobile-first · PHP-ready
   ============================================================ */

/* ── 1. CSS Variables ──────────────────────────────────────── */
:root {
  --primary:        #0d47a1;
  --primary-light:  #1976d2;
  --primary-dark:   #082f6e;
  --accent:         #e91e63;
  --accent-light:   #f48fb1;
  --accent-dark:    #c2185b;
  --gold:           #f59e0b;
  --dark:           #111827;
  --dark-2:         #1f2937;
  --dark-3:         #374151;
  --gray:           #6b7280;
  --gray-light:     #9ca3af;
  --border:         #e5e7eb;
  --bg-light:       #f9fafb;
  --bg-section:     #f0f4ff;
  --white:          #ffffff;
  --success:        #16a34a;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-full:    9999px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:         0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.14);
  --transition:     .3s cubic-bezier(.4,0,.2,1);
  --font:           'Inter', 'Segoe UI', sans-serif;
  --container:      1200px;
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark-3);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── 4. Layout Utilities ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Section Headings */
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-title {
  margin-bottom: 1rem;
  color: var(--dark);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
}
.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-lead { margin: 0 auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(233,30,99,.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,30,99,.4);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
}
.btn-gold:hover {
  background: #d97706;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }

/* ── 6. Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: .4rem; }
.topbar-item svg { flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: .75rem; }
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  transition: var(--transition);
  font-size: .85rem;
}
.topbar-social a:hover { background: var(--accent); }

/* ── 7. Navigation ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.nav-logo-text .org-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.nav-logo-text .org-sub {
  font-size: .7rem;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.2;
}

/* SVG logo fallback */
.logo-svg-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-svg-wrap span {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--bg-section);
}
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
  padding: .5rem;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: .55rem .9rem;
  font-size: .88rem;
  color: var(--dark-3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--bg-section); color: var(--primary); }
.nav-link .chevron {
  display: inline-block;
  width: 12px; height: 12px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform var(--transition);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* ── 8. Hero / Page Banner ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/WhatsApp\ Image\ 2026-05-20\ at\ 16.35.53\ \(3\).jpeg');
  background-size: cover;
  background-position: center top;
  filter: brightness(.45) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,71,161,.75) 0%,
    rgba(8,47,110,.4) 50%,
    rgba(233,30,99,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 750px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}
.hero-lead {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page Banner (inner pages) */
.page-banner {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1565c0 100%);
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin-bottom: .75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .5; }

/* ── 9. Quick Stats Bar ────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  margin: -3rem auto 0;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: .5rem; }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .82rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: .3rem;
  display: block;
}

/* ── 10. Cards ─────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-body { padding: 1.5rem; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.service-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.05);
}
.service-card:hover .service-icon span { filter: brightness(0) invert(1); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--dark); }
.service-card p { font-size: .9rem; color: var(--gray); margin: 0; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  transition: var(--transition);
}
.service-card:hover .card-link { color: var(--accent); gap: .5rem; }

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--radius-full);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: var(--gray-light);
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.blog-meta span { display: flex; align-items: center; gap: .3rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .6rem; line-height: 1.4; }
.blog-card h3 a { color: var(--dark); transition: var(--transition); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: .88rem; color: var(--gray); flex: 1; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
}
.read-more {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
}
.read-more:hover { color: var(--accent); gap: .5rem; }

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--bg-section);
  transition: var(--transition);
}
.team-card:hover .team-photo { border-color: var(--primary); }
.team-photo-placeholder {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 800;
}
.team-card h4 { margin-bottom: .25rem; }
.team-role {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.team-card p { font-size: .88rem; color: var(--gray); margin: 0; }
.team-socials {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.team-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.team-socials a:hover { background: var(--primary); color: var(--white); }

/* Cause / Donation Cards */
.cause-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cause-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cause-card-img { aspect-ratio: 4/3; overflow: hidden; }
.cause-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cause-card:hover .cause-card-img img { transform: scale(1.06); }
.cause-card-body { padding: 1.5rem; }
.cause-card h4 { margin-bottom: .5rem; }
.cause-card p { font-size: .88rem; color: var(--gray); margin-bottom: 1rem; }
.progress-wrap { margin-bottom: 1rem; }
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: .4rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width 1s ease;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray);
}

/* ── 11. About Section ─────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 130px;
}
.about-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-badge .badge-text { font-size: .8rem; font-weight: 600; opacity: .9; }
.about-content { display: flex; flex-direction: column; justify-content: center; }
.check-list { margin-top: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .7rem;
  margin-top: .1rem;
}

/* ── 12. Impact Counter Section ────────────────────────────── */
.impact-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.impact-item { color: var(--white); }
.impact-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .4rem;
  color: var(--white);
}
.impact-num span { color: var(--accent-light); }
.impact-label {
  font-size: .88rem;
  opacity: .8;
  font-weight: 500;
}
.impact-icon { font-size: 2rem; margin-bottom: .75rem; opacity: .7; }

/* ── 13. CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 60%, #f06292 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23ffffff' stroke-width='.5' stroke-opacity='.1'/%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 14. Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: .1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { font-style: italic; color: var(--dark-3); margin-bottom: 1.5rem; font-size: .95rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-section);
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-location { font-size: .8rem; color: var(--gray); }

/* ── 15. Donation / Forms ──────────────────────────────────── */
.donation-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.donation-box h3 { margin-bottom: .5rem; }
.donation-box p { color: var(--gray); margin-bottom: 1.75rem; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.amount-btn {
  padding: .75rem .5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-3);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--primary);
  background: var(--bg-section);
  color: var(--primary);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--dark-2);
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,71,161,.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-control::placeholder { color: var(--gray-light); }
select.form-control { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--dark-3);
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--primary);
}

/* Donation types tabs */
.don-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-light);
  padding: .35rem;
  border-radius: var(--radius);
}
.don-tab {
  flex: 1;
  padding: .6rem .5rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.don-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.don-tab:hover:not(.active) { color: var(--primary); }

/* ── 16. Partners / Logos ──────────────────────────────────── */
.partners-strip {
  background: var(--bg-light);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-strip .section-tag { display: block; text-align: center; margin-bottom: 1.5rem; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner-logo {
  opacity: .45;
  transition: var(--transition);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-2);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.partner-logo:hover { opacity: 1; color: var(--primary); }

/* ── 17. Newsletter ────────────────────────────────────────── */
.newsletter-section {
  background: var(--bg-section);
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-text h3 { margin-bottom: .4rem; }
.newsletter-text p { color: var(--gray); margin: 0; }
.newsletter-form {
  display: flex;
  gap: .5rem;
  min-width: 340px;
  flex: 1;
  max-width: 460px;
}
.newsletter-form .form-control {
  flex: 1;
  border-radius: var(--radius-full);
  padding-left: 1.25rem;
}

/* ── 18. Footer ────────────────────────────────────────────── */
footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .org-name { color: var(--white); font-size: 1.2rem; }
.footer-brand p { font-size: .88rem; margin: 1rem 0; opacity: .75; line-height: 1.7; }
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .65rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links li + li { margin-top: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--white); padding-left: .25rem; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  font-size: .88rem;
  margin-bottom: .75rem;
  align-items: flex-start;
}
.footer-contact-item svg { flex-shrink: 0; opacity: .6; margin-top: 2px; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── 19. Misc Components ───────────────────────────────────── */
/* Badge */
.badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge-primary { background: var(--bg-section); color: var(--primary); }
.badge-accent  { background: #fce4ec; color: var(--accent); }
.badge-success { background: #e8f5e9; color: var(--success); }

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span { font-size: .82rem; color: var(--gray-light); white-space: nowrap; }

/* Alert */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.alert-info { background: #e3f2fd; color: #0d47a1; border-left: 4px solid var(--primary); }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid var(--success); }
.alert-warning { background: #fff8e1; color: #e65100; border-left: 4px solid var(--gold); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 3rem;
}
.page-item {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.page-item:hover, .page-item.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Tags cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  display: inline-block;
  padding: .3rem .8rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .8rem;
  color: var(--gray);
  transition: var(--transition);
  cursor: pointer;
}
.tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  background: var(--white);
}
.accordion-header:hover { background: var(--bg-light); }
.accordion-header.open { background: var(--bg-section); color: var(--primary); }
.accordion-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: .75rem;
}
.accordion-header.open .accordion-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.accordion-body.open { display: block; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: .3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-date { font-size: .8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.timeline-title { font-weight: 700; margin-bottom: .4rem; }
.timeline-text { font-size: .88rem; color: var(--gray); }

/* ── 20. Back to top ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  font-size: 1.1rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ── 21. Utility classes ───────────────────────────────────── */
.bg-primary { background: var(--primary) !important; }
.bg-accent  { background: var(--accent)  !important; }
.bg-light   { background: var(--bg-light)!important; }
.bg-section { background: var(--bg-section)!important; }
.bg-dark    { background: var(--dark-2)  !important; }
.text-primary { color: var(--primary) !important; }
.text-accent  { color: var(--accent)  !important; }
.text-gray    { color: var(--gray)    !important; }
.text-muted   { color: var(--gray-light)!important; }
.fw-bold  { font-weight: 700; }
.fw-black { font-weight: 900; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-100 { width: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: var(--radius-full); }

/* ── 22. Animations ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.visible { opacity: 1; }

/* Delay helpers */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── 23. Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2rem 0; }

  /* Nav */
  .topbar { display: none; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(360px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    overflow-y: auto;
    transition: right var(--transition);
    z-index: 900;
    gap: 0;
  }
  .nav-menu.open { right: 0; }
  .nav-link {
    width: 100%;
    padding: .8rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
  }
  .nav-hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 800;
    display: none;
  }
  .nav-overlay.open { display: block; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-top: .25rem;
    display: none;
    padding: .25rem 0;
  }
  .nav-dropdown.open { display: block; }

  /* Layouts */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats-bar { margin: -2rem auto 0; padding: 1.5rem; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { min-width: 100%; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { right: .5rem; bottom: 1rem; }
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .donation-box { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 1.25rem 1rem; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .impact-num { font-size: 2.2rem; }
  .don-tabs { flex-wrap: wrap; }
  .pagination { flex-wrap: wrap; }
}

/* ── 24. Print ─────────────────────────────────────────────── */
@media print {
  .navbar, .topbar, .cta-banner, footer, .back-to-top { display: none !important; }
  body { color: #000; }
  a { color: #000; }
}
