/* ============================================================
   PARVEEN MEMORIAL WELFARE ORGANIZATION
   Complete Multi-Page Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --beige:       #F5EFE6;
  --blue:        #2F4858;
  --blue-dark:   #1e3141;
  --blue-light:  #3d5f76;
  --gold:        #D4A373;
  --gold-dark:   #B8894E;
  --gold-tint:   #FBF5EE;
  --charcoal:    #2B2B2B;
  --green:       #7A9E7E;
  --green-dark:  #5e8462;
  --white:       #FFFFFF;
  --soft-black:  #1a2733;
  --gray-light:  #f8f5f1;
  --border:      #e8ddd0;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 6px 24px rgba(212,163,115,0.35);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:  80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Spacing ---------- */
.section-pad    { padding: 104px 0; }
.section-pad-sm { padding: 56px 0; }

/* ---------- Backgrounds ---------- */
.bg-beige     { background-color: var(--beige); }
.bg-blue      { background-color: var(--blue); }
.bg-white     { background-color: var(--white); }
.bg-gold-tint { background-color: var(--gold-tint); }
.bg-gray      { background-color: var(--gray-light); }

/* ---------- Text Helpers ---------- */
.text-white      { color: var(--white) !important; }
.text-white-soft { color: rgba(255,255,255,0.72) !important; }
.text-gold       { color: var(--gold) !important; }
.text-blue       { color: var(--blue) !important; }
.text-center     { text-align: center; }

/* ---------- Section Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label-gold { color: var(--gold); }
.label-white { color: rgba(255,255,255,0.6); }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 22px;
}

.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 68px;
}

.section-sub {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
}

/* ---------- Divider ---------- */
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px auto 0;
}
.divider-left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,72,88,0.32);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-sm  { padding: 10px 26px; font-size: 0.85rem; }
.btn-lg  { padding: 18px 44px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: rgba(212,163,115,0.15);
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--blue);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}
.announcement-bar a {
  color: var(--gold);
  font-weight: 600;
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-bar a:hover { color: #f0c080; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 28px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* All pages: always solid white navbar */
.home-page .navbar,
.inner-page .navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 28px rgba(0,0,0,0.08);
}

/* Push content down on home page (fixed nav) */
.home-page { padding-top: 0; }

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-acronym {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.logo-full {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--gold) !important; }
.nav-link.active { font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1707286380312-ad352aa56cde?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  background-color: var(--blue);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,25,35,0.40) 0%,
    rgba(15,25,35,0.60) 55%,
    rgba(15,25,35,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 26px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-chevron {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.55);
  border-bottom: 2px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 1; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 0.4; }
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  height: 360px;
  background: var(--blue);
  background-image: url('https://images.unsplash.com/photo-1773227055656-ec329ce9adac?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,32,42,0.78) 0%, rgba(47,72,88,0.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: #f0c080; }
.breadcrumb-sep { opacity: 0.5; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-hero-line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   HOME: STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--blue);
  padding: 0;
}
.stats-strip-inner {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   HOME: ABOUT PREVIEW
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--white);
  padding: 22px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.05em;
}
.about-text { padding-right: 12px; }
.about-body {
  font-size: 1rem;
  color: #595959;
  line-height: 1.88;
  margin-bottom: 18px;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

/* ============================================================
   WHO WE HELP
   ============================================================ */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.help-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 28px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.help-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--blue);
}
.help-icon {
  width: 50px;
  height: 50px;
  color: var(--gold);
  margin-bottom: 20px;
}
.help-icon svg { width: 100%; height: 100%; }
.help-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.35;
}
.help-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
}

/* ============================================================
   SERVICES GRID (home preview + services page)
   ============================================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.service-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,163,115,0.4);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}
.service-icon { width: 50px; height: 50px; margin-bottom: 20px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* Services page — light version of service cards */
.service-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.service-card-light:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-light .service-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--gold-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card-light .service-icon-wrap svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.service-card-light h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card-light p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.78;
}
.service-tag {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ============================================================
   IMPACT COUNTERS
   ============================================================ */
.impact-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 56px;
}
.counter-card { flex: 1; padding: 60px 40px; text-align: center; }
.counter-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.counter-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.counter-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.counter-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }

.impact-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--blue);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.transformation { overflow: hidden; }
.transformation-panels { display: flex; height: 560px; }
.transform-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px 52px;
  transition: flex 0.5s var(--ease);
}
.transform-panel:hover { flex: 1.15; }
.panel-before {
  background-image: url('https://images.unsplash.com/photo-1767779734121-c8b36457d07e?auto=format&fit=crop&w=960&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(25%) brightness(0.82);
}
.panel-after {
  background-image: url('https://images.unsplash.com/photo-1729838705348-2a67b61c640f?auto=format&fit=crop&w=960&q=80');
  background-size: cover;
  background-position: center top;
}
.panel-overlay { position: absolute; inset: 0; pointer-events: none; }
.overlay-dark { background: linear-gradient(to top, rgba(15,25,35,0.82) 0%, rgba(15,25,35,0.15) 70%); }
.overlay-warm { background: linear-gradient(to top, rgba(170,100,40,0.65) 0%, rgba(170,100,40,0.08) 70%); }
.panel-label { position: relative; z-index: 2; color: var(--white); }
.label-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.before-tag { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.38); }
.after-tag  { background: var(--gold); color: var(--white); }
.panel-label h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.panel-label p { font-size: 0.93rem; opacity: 0.82; line-height: 1.65; max-width: 260px; }
.transformation-caption { background: var(--blue); text-align: center; padding: 30px 24px; }
.transformation-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
}

/* ============================================================
   GET INVOLVED (shared)
   ============================================================ */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.involve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 36px 44px;
  text-align: center;
  border: 1px solid #f0e8de;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.involve-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.involve-card-featured { border: 2px solid var(--blue); position: relative; }
.involve-card-featured::before {
  content: 'Most Impactful';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.involve-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.involve-icon { width: 38px; height: 38px; }
.involve-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.involve-card p {
  font-size: 0.94rem;
  color: #666;
  line-height: 1.78;
  margin-bottom: 28px;
}

/* ============================================================
   QUOTE STRIP
   ============================================================ */
.quote-strip { background: var(--blue); padding: 76px 24px; }
.quote-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.55;
  opacity: 0.45;
  flex-shrink: 0;
  user-select: none;
}
.quote-mark-close { align-self: flex-end; }
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--white);
  line-height: 1.42;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,163,115,0.14);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,163,115,0.32);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-size: 0.93rem;
  font-style: italic;
  color: #575757;
  line-height: 1.82;
  margin-bottom: 26px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--blue); }
.testimonial-author span  { font-size: 0.77rem; color: #aaa; }

/* ============================================================
   ABOUT PAGE — TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
  opacity: 0.3;
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 44px;
  position: relative;
}
.timeline-marker {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,163,115,0.4);
  z-index: 1;
}
.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 8px;
}
.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.timeline-content p { font-size: 0.9rem; color: #666; line-height: 1.72; }

/* ============================================================
   ABOUT PAGE — MISSION/VISION/VALUES
   ============================================================ */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: all 0.3s var(--ease);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-card:nth-child(1) { border-bottom-color: var(--gold); }
.mvv-card:nth-child(2) { border-bottom-color: var(--blue); }
.mvv-card:nth-child(3) { border-bottom-color: var(--green); }
.mvv-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.mvv-icon svg { width: 32px; height: 32px; }
.mvv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.mvv-card p { font-size: 0.9rem; color: #666; line-height: 1.78; }

/* About demographics */
.demographics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.demo-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.demo-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.demo-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-icon svg { width: 24px; height: 24px; color: var(--gold); }
.demo-content h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.demo-content p { font-size: 0.875rem; color: #666; line-height: 1.68; }

/* Partners grid */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.partner-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.partner-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.partner-card p { font-size: 0.78rem; color: #999; line-height: 1.55; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.status-alert {
  background: linear-gradient(135deg, var(--gold-tint), #fff9f0);
  border: 1px solid rgba(212,163,115,0.35);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}
.alert-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alert-icon svg { width: 24px; height: 24px; color: white; }
.alert-text h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.alert-text p { font-size: 0.9rem; color: #666; line-height: 1.65; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-card-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border);
}
.project-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.project-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
  margin-bottom: 10px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status-planning {
  background: #FFF4E6;
  color: #B8894E;
}
.status-research {
  background: #EAF0FF;
  color: #2F4858;
}
.status-design {
  background: #EBF5EC;
  color: #5e8462;
}
.project-card-body { padding: 24px 28px 32px; }
.project-card-body p { font-size: 0.88rem; color: #666; line-height: 1.78; margin-bottom: 20px; }

/* Pipeline phase bar */
.project-phases {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}
.phase {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.phase.active { background: var(--gold); }
.phase.done   { background: var(--green); }

.phase-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.phase-label {
  font-size: 0.6rem;
  color: #bbb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phase-label.active { color: var(--gold); }

/* Events section */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  display: flex;
  gap: 20px;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.event-date {
  flex-shrink: 0;
  text-align: center;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  height: fit-content;
}
.event-date .month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.event-date .day {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.event-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.event-info p { font-size: 0.85rem; color: #777; line-height: 1.65; }
.event-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ============================================================
   GET INVOLVED PAGE
   ============================================================ */
.donation-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.donation-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.donation-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.tier-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.tier-btn:hover, .tier-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.donation-custom {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  max-width: 280px;
  background: var(--white);
  transition: border-color 0.25s;
}
.donation-custom:focus-within { border-color: var(--gold); }
.currency-prefix {
  padding: 12px 18px;
  background: var(--beige);
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
  border-right: 2px solid var(--border);
}
.donation-custom input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.impact-preview {
  background: var(--beige);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.impact-preview-icon { font-size: 1.5rem; }
.impact-preview p { font-size: 0.88rem; color: var(--blue); font-weight: 500; line-height: 1.55; }
.impact-preview strong { color: var(--gold); }

/* Volunteer steps */
.vol-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vol-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.vol-step:hover { transform: translateY(-4px); }
.vol-step-number {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}
.vol-step h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.vol-step p { font-size: 0.82rem; color: #777; line-height: 1.65; }

/* Partner types */
.partner-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-type-card {
  background: var(--blue);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.partner-type-card:hover { background: var(--blue-dark); transform: translateY(-4px); }
.partner-type-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.partner-type-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.partner-type-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 32px;
  line-height: 1.65;
}

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

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,163,115,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.contact-info-card:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-info-text h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  transition: color 0.2s;
}
.contact-info-text a:hover { color: var(--gold); }

.social-connect h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.social-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--border);
  color: var(--charcoal);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-btn svg { width: 16px; height: 16px; }
.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; color: white; }
.social-btn.instagram:hover { background: #E4405F; border-color: #E4405F; color: white; }
.social-btn.whatsapp:hover  { background: #25D366; border-color: #25D366; color: white; }
.social-btn.twitter:hover   { background: #000;    border-color: #000;    color: white; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item:hover { transform: translateX(4px); }
.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.faq-item p { font-size: 0.875rem; color: #666; line-height: 1.72; }

/* ============================================================
   CTA STRIP (bottom of inner pages)
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}
.cta-strip p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--soft-black); color: rgba(255,255,255,0.7); padding-top: 84px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-logo .logo-acronym { display: block; font-size: 2rem; margin-bottom: 18px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 270px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.social-link svg { width: 17px; height: 17px; }

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.footer-links-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.footer-contact-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 26px 28px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: center; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.52);
  transition: background 0.3s, transform 0.3s;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--soft-black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: var(--soft-black);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image img { height: 420px; }
  .about-text { padding-right: 0; }
  .about-badge { bottom: -20px; right: 20px; }

  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-card { flex: 0 0 calc(50% - 12px); }
  .mvv-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .vol-steps { grid-template-columns: repeat(2, 1fr); }
  .partner-types-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-quick-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .volunteer-spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .service-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-photo-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .proj-photo-tall { display: none; }
  .proj-photo-col { flex-direction: row; }
  .proj-photo-item { height: 200px; }
  .impact-story-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-column: 1 / 3; grid-row: auto; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .demographics-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHOTO STRIP (About page horizontal scroll)
   ============================================================ */
.photo-strip-section { padding: 56px 0; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 240px;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.photo-strip-item:hover img { transform: scale(1.08); }

.photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47,72,88,0.92) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 28px 16px 14px;
  text-transform: uppercase;
}

/* ============================================================
   VOLUNTEER SPOTLIGHT CARDS (About page)
   ============================================================ */
.volunteer-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vol-spot-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.vol-spot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.vol-spot-photo {
  height: 200px;
  overflow: hidden;
}
.vol-spot-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--ease);
}
.vol-spot-card:hover .vol-spot-photo img { transform: scale(1.06); }

.vol-spot-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.vol-spot-body h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 700;
}
.vol-spot-role {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.vol-spot-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
  font-style: italic;
}

/* ============================================================
   SERVICE PHOTO CARDS (Services page)
   ============================================================ */
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-photo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.svc-photo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.svc-photo-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-photo-card:hover .svc-photo-img img { transform: scale(1.07); }

.svc-photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.svc-tag-featured { background: var(--gold); }

.svc-photo-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-photo-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.3;
}
.svc-photo-body p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.75;
  flex: 1;
}
.svc-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.svc-link:hover { color: var(--gold-dark); }

/* ============================================================
   PROJECT PHOTO GRID (Projects page)
   ============================================================ */
.proj-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  height: 660px;
}

.proj-photo-tall { grid-row: 1; }

.proj-photo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proj-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  flex: 1;
}
.proj-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.proj-photo-item:hover img { transform: scale(1.07); }

.proj-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47,72,88,0.92) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 28px 16px 14px;
  text-transform: uppercase;
}

/* ============================================================
   DONOR IMPACT STORY CARDS (Get Involved page)
   ============================================================ */
.impact-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.impact-story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.impact-story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.impact-story-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.impact-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.impact-story-card:hover .impact-story-img img { transform: scale(1.07); }

.impact-story-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.impact-story-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.impact-story-body h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.3;
}
.impact-story-body p {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.75;
}

/* ============================================================
   IMAGE BANNER STRIP
   ============================================================ */
.img-banner-strip {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1773227059522-acc3ae46abdc?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
}

.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,72,88,0.88) 0%, rgba(212,163,115,0.55) 100%);
}

.img-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.img-banner-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.img-banner-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

@media (max-width: 768px) {
  .img-banner-strip { height: 360px; background-attachment: scroll; }
}

/* ============================================================
   SPONSOR A GRANDPARENT SECTION
   ============================================================ */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sponsor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.sponsor-photo-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.sponsor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.sponsor-card:hover .sponsor-photo-wrap img { transform: scale(1.06); }

.sponsor-age-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.sponsor-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sponsor-body h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}
.sponsor-loc {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}
.sponsor-story {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 8px;
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-large {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery-item-large img { height: 100%; min-height: 400px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47,72,88,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Quick Connect Strip */
.contact-quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-quick-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-quick-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-quick-icon svg { width: 18px; height: 18px; }

.contact-quick-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-quick-info strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-quick-info span {
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-quick-info small {
  font-size: 0.75rem;
  color: #888;
}

/* Main Contact Grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.form-group .req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,163,115,0.15);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-check-group { flex-direction: row; align-items: flex-start; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-note {
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  margin-top: -8px;
}

.form-success {
  text-align: center;
  padding: 32px 24px;
  background: #f0faf2;
  border-radius: var(--radius-md);
  border: 2px solid var(--green);
  margin-top: 8px;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.form-success h3 { color: var(--green-dark); margin-bottom: 8px; font-family: var(--font-serif); }
.form-success p { color: #4a7a4e; font-size: 0.93rem; }

/* Info Column */
.contact-map-placeholder {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.map-pin-animate { animation: pinBounce 2s ease-in-out infinite; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.contact-info-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  font-size: 0.88rem;
  color: #555;
}
.office-hours-grid span:nth-child(odd) { font-weight: 500; color: var(--charcoal); }
.office-hours-grid .closed { color: #c0392b; font-style: italic; }

.social-links-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--beige);
  transition: all 0.25s var(--ease);
}
.social-link-contact:hover {
  background: var(--gold-tint);
  color: var(--gold);
  transform: translateX(4px);
}

.contact-refer-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  color: white;
  text-align: center;
}
.refer-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.contact-refer-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.contact-refer-card p { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.7; }

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
}

/* Emergency Strip */
.contact-emergency-strip {
  background: #fff3cd;
  border-top: 3px solid #e6ac00;
  border-bottom: 3px solid #e6ac00;
  padding: 20px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.emergency-icon { font-size: 2rem; flex-shrink: 0; }
.emergency-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: #5a4000;
}
.emergency-text strong { font-size: 1rem; color: #3d2b00; display: block; }

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section-pad { padding: 72px 0; }
  .section-intro { margin-bottom: 44px; }

  .announcement-bar { font-size: 0.75rem; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 28px;
    gap: 2px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { color: var(--charcoal); padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero { background-attachment: scroll; }
  .stats-strip-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .cards-grid-4 { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 100%; }
  .involve-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .vol-steps { grid-template-columns: 1fr 1fr; }
  .partner-types-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .impact-counters { flex-direction: column; border-radius: var(--radius-md); }
  .counter-divider { width: 60px; height: 1px; }
  .counter-card { padding: 44px 24px; }

  .transformation-panels { flex-direction: column; height: auto; }
  .transform-panel { height: 320px; padding: 40px 32px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-quick-strip { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .volunteer-spotlight-grid { grid-template-columns: 1fr; }
  .service-photo-grid { grid-template-columns: 1fr; }
  .proj-photo-grid { grid-template-columns: 1fr; height: auto; }
  .proj-photo-tall { display: block; height: 260px; }
  .proj-photo-col { flex-direction: column; }
  .proj-photo-item { height: 220px; flex: none; }
  .impact-story-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: auto; grid-row: auto; }
  .gallery-item img { height: 220px; }
  .gallery-item-large img { min-height: 220px; }
  .contact-form-wrap { padding: 32px 24px; }
  .donation-section { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .whatsapp-float { bottom: 20px; right: 18px; }
  .back-to-top { right: 18px; bottom: 92px; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 290px; }
  .quote-mark { display: none; }
  .involve-card-featured::before { display: none; }
  .vol-steps { grid-template-columns: 1fr; }
  .partner-types-grid { grid-template-columns: 1fr; }
  .donation-tiers { gap: 8px; }
  .tier-btn { padding: 10px 18px; font-size: 0.875rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
