/* ============================================
   PEOPLE & NATURE WELFARE SOCIETY — GLOBAL CSS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --blue-bar: #0d2b5e;
  --blue-nav: #ffffff;
  --blue-primary: #1565c0;
  --blue-light: #42a5f5;
  --blue-pale: #e3f2fd;
  --green: #2e7d32;
  --green-light: #66bb6a;
  --gold: #f9a825;
  --gold-dark: #e65100;
  --white: #ffffff;
  --black: #111111;
  --gray-bg: #f4f7fb;
  --gray-light: #f9fbff;
  --text-dark: #1a1a2e;
  --text-mid: #555566;
  --shadow: 0 4px 30px rgba(21,101,192,0.10);
  --shadow-lg: 0 16px 60px rgba(21,101,192,0.16);
  --radius: 16px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); overflow-x: hidden; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--blue-bar);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 200;
}
.top-bar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.top-bar-left a, .top-bar-left span { color: #a8d4ff; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.top-bar-left a:hover { color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.top-bar-right span { color: rgba(255,255,255,0.4); }
.top-bar-right a { color: #a8d4ff; font-size: 15px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s; }
.top-bar-right a:hover { background: var(--gold); color: #111; }

/* ---- NAVBAR ---- */
nav {
  background: var(--blue-nav);
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  position: sticky; top: 0; z-index: 150;
  overflow: visible;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; position: relative;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21,101,192,0.3);
}
.logo-text .org-name { font-family: 'Playfair Display', serif; font-size: 15.5px; font-weight: 800; color: var(--black); line-height: 1.15; }
.logo-text .org-tag { font-size: 11px; color: var(--blue-primary); font-weight: 600; margin-top: 1px; }

/* ── DESKTOP NAV ── */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--black); font-weight: 500; font-size: 14.5px;
  padding: 8px 15px; border-radius: 7px; transition: all 0.22s;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--blue-primary); color: #fff; }
.nav-links > li > a .dd-arrow {
  font-size: 10px; transition: transform 0.25s; margin-left: 2px;
}
.nav-links > li:hover > a .dd-arrow { transform: rotate(180deg); }
.nav-links li.donate-li > a {
  background: var(--gold); color: var(--black);
  font-weight: 700; padding: 10px 22px; margin-left: 8px;
  border-radius: 8px; box-shadow: 0 4px 16px rgba(249,168,37,0.35);
}
.nav-links li.donate-li > a:hover { background: var(--gold-dark); color: #fff; }

/* ── DROPDOWN MENU ── */
.dropdown {
  position: absolute; top: 100%; left: 0;
  padding-top: 10px; /* bridge gap so mouse doesn't lose hover */
  background: transparent;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  z-index: 200; min-width: 220px;
}
.dropdown-inner {
  background: #fff; border-radius: 12px;
  box-shadow: 0 12px 48px rgba(13,43,94,0.18);
  padding: 8px 0;
  border: 1px solid rgba(21,101,192,0.08);
  position: relative;
}
.dropdown-inner::before {
  content: ''; position: absolute; top: -6px; left: 22px;
  width: 12px; height: 12px; background: #fff;
  transform: rotate(45deg); border-left: 1px solid rgba(21,101,192,0.08);
  border-top: 1px solid rgba(21,101,192,0.08);
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; color: var(--text-dark); font-size: 14px; font-weight: 500;
  transition: all 0.18s; text-decoration: none; border-radius: 0;
}
.dropdown a i { width: 18px; text-align: center; color: var(--blue-primary); font-size: 13px; }
.dropdown a:hover { background: var(--blue-pale); color: var(--blue-primary); padding-left: 24px; }
.dropdown .dd-divider { height: 1px; background: #f0f4fc; margin: 6px 12px; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; cursor: pointer; padding: 8px 10px;
  background: none; border: 2px solid transparent; border-radius: 8px;
  z-index: 160; transition: all 0.25s; align-items: center; justify-content: center;
}
.hamburger:hover { border-color: var(--blue-pale); background: var(--blue-pale); }
.hamburger .fa-bars, .hamburger .fa-times {
  font-size: 20px; color: var(--black); transition: all 0.25s;
}
.hamburger .fa-times { display: none; }
.hamburger.open .fa-bars { display: none; }
.hamburger.open .fa-times { display: block; color: var(--blue-primary); }

/* ── MOBILE ACCORDION MENU ── */
.mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  max-height: calc(100vh - 76px);
  background: #fff;
  overflow-y: auto;
  z-index: 148;
  padding: 0 0 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  border-top: 2px solid var(--blue-pale);
}
.mobile-menu.open { display: block; }

.mob-nav-item { border-bottom: 1px solid #f0f4fc; }
.mob-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; color: var(--black); font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.mob-nav-link:hover, .mob-nav-link.active { color: var(--blue-primary); background: var(--blue-pale); }
.mob-nav-link .mob-arrow {
  font-size: 11px; color: var(--text-mid); transition: transform 0.3s;
}
.mob-nav-item.open .mob-arrow { transform: rotate(180deg); }

/* Accordion sub-menu */
.mob-sub {
  display: none; background: var(--gray-bg);
  border-top: 1px solid #e8eef8;
}
.mob-nav-item.open .mob-sub { display: block; }
.mob-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px 12px 36px;
  color: var(--text-mid); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.18s;
  border-bottom: 1px solid #eef2f8;
}
.mob-sub a:last-child { border-bottom: none; }
.mob-sub a i { color: var(--blue-primary); font-size: 13px; width: 16px; text-align: center; }
.mob-sub a:hover { color: var(--blue-primary); background: #fff; padding-left: 42px; }

/* Mobile donate button */
.mob-donate {
  display: block; margin: 20px 20px 0;
  background: var(--gold); color: #111 !important;
  font-weight: 700 !important; text-align: center;
  padding: 14px 20px !important; border-radius: 10px;
  font-size: 15px !important;
  box-shadow: 0 4px 18px rgba(249,168,37,0.35);
}
.mob-donate:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 99999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  /* Ensure visible above everything including mobile nav overlay */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (max-width: 768px) {
  .wa-float { bottom: 20px; right: 16px; z-index: 99999; }
  .wa-btn { width: 52px; height: 52px; }
  .wa-btn i { font-size: 26px; }
  .wa-bubble { max-width: 200px; font-size: 12.5px; padding: 12px 14px; }
}
.wa-bubble {
  background: #fff; border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-size: 13.5px; color: var(--text-dark); line-height: 1.5;
  max-width: 230px; position: relative;
  animation: waBubbleIn 0.4s cubic-bezier(0.22,1,0.36,1);
  border: 1px solid #e8eef8;
  display: none;
}
.wa-bubble.show { display: block; }
.wa-bubble::after {
  content: ''; position: absolute; bottom: -8px; right: 22px;
  width: 14px; height: 14px; background: #fff;
  transform: rotate(45deg); border-right: 1px solid #e8eef8; border-bottom: 1px solid #e8eef8;
}
.wa-bubble strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--text-dark); }
.wa-bubble span { color: var(--text-mid); }
@keyframes waBubbleIn { from{opacity:0;transform:translateY(10px) scale(0.95)} to{opacity:1;transform:none} }

.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  position: relative; overflow: visible;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-btn i { font-size: 30px; color: #fff; }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 70%{transform:scale(1.35);opacity:0} 100%{opacity:0} }
.wa-close {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #e53935; color: #fff; border: none; cursor: pointer;
  font-size: 10px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2); line-height: 1;
}

/* ---- PAGE HERO ---- */
.page-hero {
  height: 420px; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,43,94,0.82) 0%, rgba(21,101,192,0.65) 50%, rgba(46,125,50,0.50) 100%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 900; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 14px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.6; }

/* ---- SECTION HELPERS ---- */
.section { padding: 88px 28px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.bg-gray { background: var(--gray-bg); }
.bg-white { background: #fff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block; background: var(--blue-pale); color: var(--blue-primary);
  font-size: 11.5px; font-weight: 700; padding: 5px 16px; border-radius: 20px;
  margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 800; color: var(--text-dark);
  margin-bottom: 14px;
}
.section-header p { color: var(--text-mid); font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.75; }
.section-divider {
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--green));
  margin: 18px auto 0;
}

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 9px; font-weight: 700; font-size: 15px; transition: all 0.3s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.btn-gold { background: var(--gold); color: #111; box-shadow: 0 4px 18px rgba(249,168,37,0.4); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,168,37,0.4); }
.btn-blue { background: var(--blue-primary); color: #fff; }
.btn-blue:hover { background: var(--blue-bar); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.75); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #1b5e20; transform: translateY(-2px); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-bar) 0%, var(--blue-primary) 55%, var(--green) 100%);
  padding: 55px 28px;
}
.stats-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat-item { color: #fff; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-plus { color: var(--gold-dark); }
.stat-label { font-size: 14px; opacity: 0.85; margin-top: 6px; font-weight: 500; }

/* ---- PROGRAM CARDS ---- */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.program-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); transition: all 0.35s; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card .card-img { width: 100%; height: 210px; object-fit: cover; }
.program-card .card-body { padding: 26px; }
.program-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; margin-bottom: 14px; flex-shrink: 0; }
.program-card h3 { font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
.program-card p { color: var(--text-mid); font-size: 14px; line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--blue-primary); font-weight: 600; font-size: 14px; }
.card-link:hover { color: var(--green); }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-bar) 0%, var(--blue-primary) 55%, var(--green) 100%);
  padding: 90px 28px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 900; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT FORM ---- */
.contact-form-box { background: #fff; border-radius: 20px; padding: 42px; box-shadow: var(--shadow-lg); }
.contact-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 2px solid #e4e9f0;
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14.5px;
  transition: border-color 0.3s; outline: none; background: var(--gray-light); color: var(--text-dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue-primary); background: #fff; }
.form-group textarea { height: 130px; resize: none; }
.submit-btn {
  width: 100%; padding: 15px; border: none; cursor: pointer; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-primary), var(--green));
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.submit-btn:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,101,192,0.3); }

/* ---- CONTACT INFO ---- */
.contact-info-grid { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-bar));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 19px;
}
.contact-item h4 { font-weight: 700; font-size: 14px; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: var(--text-mid); font-size: 14px; line-height: 1.65; }
.contact-item a:hover { color: var(--blue-primary); }

/* ---- TEAM CARDS ---- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card { background: #fff; border-radius: var(--radius); padding: 34px 22px; text-align: center; box-shadow: var(--shadow); transition: all 0.35s; }
.team-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.team-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--blue-light); }
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue-primary); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }
.team-social { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-pale); color: var(--blue-primary); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all 0.3s; }
.team-social a:hover { background: var(--blue-primary); color: #fff; }

/* ---- GALLERY GRID ---- */
.gallery-masonry { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-masonry .g-item { overflow: hidden; border-radius: 12px; }
.gallery-masonry .g-item.tall { grid-row: span 2; }
.gallery-masonry .g-item.wide { grid-column: span 2; }
.gallery-masonry .g-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.55s; cursor: zoom-in; }
.gallery-masonry .g-item:hover img { transform: scale(1.06); }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card { background: var(--gray-bg); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: all 0.3s; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-quote { font-size: 40px; color: var(--blue-light); line-height: 1; margin-bottom: 12px; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testi-card p { color: var(--text-mid); font-size: 14.5px; line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-light); }
.testi-author .name { font-weight: 700; font-size: 14px; }
.testi-author .designation { font-size: 12px; color: var(--blue-primary); }

/* ---- FOOTER ---- */
footer { background: var(--blue-bar); }
.footer-main { max-width: 1240px; margin: 0 auto; padding: 72px 28px 44px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); color: #111; }
.footer-col h4 { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.12); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { color: var(--gold); font-size: 12px; width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 28px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; }
.footer-bottom em { color: var(--gold); font-style: italic; }

/* ---- IMPACT CARDS ---- */
.impact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.impact-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.impact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.impact-card img { width: 100%; height: 260px; object-fit: cover; }
.impact-body { padding: 26px; }
.impact-body .tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-primary); background: var(--blue-pale); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.impact-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.impact-body p { color: var(--text-mid); font-size: 14px; line-height: 1.75; }

/* ---- ABOUT LAYOUT ---- */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gold); color: #111; padding: 18px 22px; border-radius: 14px;
  text-align: center; font-weight: 800; box-shadow: 0 8px 30px rgba(249,168,37,0.4);
}
.about-img-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; display: block; }
.about-img-badge .lbl { font-size: 12px; display: block; }
.about-text .section-badge { margin-bottom: 12px; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3vw,2.6rem); font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.check-item i { color: var(--green); font-size: 16px; }

/* ---- DONATE PAGE ---- */
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn { padding: 16px 10px; border: 2px solid #e4e9f0; border-radius: 10px; text-align: center; cursor: pointer; font-weight: 700; font-size: 1.1rem; color: var(--blue-primary); background: #fff; transition: all 0.25s; }
.amount-btn:hover, .amount-btn.selected { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }
.impact-pill { display: flex; align-items: center; gap: 14px; background: #fff; padding: 18px; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 14px; }
.impact-pill .icon-wrap { width: 48px; height: 48px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; flex-shrink: 0; }
.impact-pill .amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--blue-primary); }
.impact-pill .desc { font-size: 13px; color: var(--text-mid); margin-top: 2px; }

/* ---- VOLUNTEER ---- */
.vol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.vol-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.vol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vol-card img { width: 100%; height: 210px; object-fit: cover; }
.vol-body { padding: 24px; }
.vol-body h3 { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.vol-body p { color: var(--text-mid); font-size: 13.5px; line-height: 1.75; }
.vol-tag { display: inline-block; background: var(--blue-pale); color: var(--blue-primary); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-2col { gap: 40px; }
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .vol-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-2col { grid-template-columns: 1fr; }
  .about-img-badge { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .gallery-masonry { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry .g-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .vol-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2,1fr); }
  .top-bar-left .hide-sm { display: none; }
}
