/* =============================================
   Saahas For Animals - Main Stylesheet
   Responsive, mobile-first
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Work+Sans:wght@300;400;500;600&display=swap');

/* === CSS Variables === */
:root {
  --color-yellow: #f8e922;
  --color-black: #000000;
  --color-text: #414242;
  --color-heading: #1a1a1a;
  --color-blue: #3d6ce2;
  --color-bg: #ffffff;
  --color-bg-cream: #FEF9E1;
  --color-bg-light: #F9F0C8;
  --color-border: #e5e5e5;
  --color-grey: #808285;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --container-width: 1440px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
  --header-height: 72px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === Container === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }
@media (min-width: 1440px) { .container { padding: 0 2rem; } }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}
.btn-primary:hover {
  background: #e6d600;
  border-color: #e6d600;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-dark {
  background: var(--color-black);
  color: var(--color-yellow);
  border-color: var(--color-black);
}
.btn-dark:hover {
  background: #222;
  border-color: #222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-yellow);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }

/* === Section Layout === */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-bg-cream { background: var(--color-bg-cream); }
.section-bg-light { background: var(--color-bg-light); }
.section-bg-dark { background: var(--color-black); color: #fff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-grey); font-size: 1.05rem; }

/* === Section Tag === */
.section-tag {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* =============================================
   HEADER - Glassmorphism
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#main-header {
  position: relative;
  /* backdrop-filter lives on ::before so it does NOT create a containing block
     for position:fixed children (the mobile nav overlay) */
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition);
}
#main-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  z-index: -1;
  transition: background var(--transition), backdrop-filter var(--transition);
}

/* Slightly more opaque once user has scrolled */
#main-header.scrolled {
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255,255,255,0.95) inset;
}
#main-header.scrolled::before {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 1.25rem;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.85) inset;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--color-black);
  background: rgba(248, 233, 34, 0.18);
}
.nav-link.active {
  color: var(--color-black);
  background: rgba(248, 233, 34, 0.28);
  font-weight: 600;
}
.nav-link .chevron { width: 10px; height: 10px; transition: transform var(--transition); stroke-width: 2; }
.nav-item.has-dropdown:hover .chevron { transform: rotate(180deg); }
.nav-item.open .chevron { transform: rotate(180deg); }

/* Dropdown - glass */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,0.9) inset;
  min-width: 220px;
  padding: 0.75rem 0.5rem 0.5rem;
  padding-top: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  z-index: 200;
  list-style: none;
}
/* Invisible bridge fills the gap between nav link and dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: 8px;
  transition: all var(--transition);
  font-weight: 500;
}
.dropdown a:hover {
  background: rgba(248, 233, 34, 0.22);
  color: var(--color-black);
  padding-left: 1.25rem;
}

/* Header CTAs */
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.header-donate, .header-wishlist { flex-shrink: 0; }
.header-wishlist { padding: 0.6rem 1.1rem; font-size: 0.875rem; color: #fff; }
.header-wishlist:hover { color: #fff; }

.nav-close { display: none; }
.nav-mobile-footer { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--color-black);
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 0.55rem;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.hamburger:focus-visible { outline: 2px solid var(--color-yellow); outline-offset: 2px; }
.hamburger:hover { background: #333; }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 991px) {
  .hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .header-actions { display: none; }
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: calc(var(--header-height) + 0.5rem);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 2rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1100;
  }
  .header-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; border-radius: 0; padding: 0; box-shadow: none; }
  .nav-item { width: 100%; border-bottom: 1px solid var(--color-border); }
  .nav-item:last-child { border-bottom: none; }
  .nav-link { padding: 1rem 0.5rem; font-size: 1rem; width: 100%; justify-content: space-between; }
  .dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none;
    min-width: 0 !important;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: auto !important;
  }
  .nav-item.open .dropdown {
    display: block;
    background: rgba(249, 240, 200, 0.5);
    border-radius: 10px;
    margin: 0.25rem 0;
    padding: 0.4rem;
    width: 100%;
  }
  .dropdown li { width: 100%; }
  .dropdown a {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    color: var(--color-black) !important;
    font-size: 0.95rem;
    display: block;
    width: 100%;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-black);
    z-index: 10;
  }
  .nav-close:hover { background: #e0e0e0; }

  .nav-mobile-footer {
    display: block;
    padding: 1.5rem 0.5rem 0.5rem;
    margin-top: auto;
  }
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer { background: #0f0f0f; color: #ccc; }
.footer-top { background: #0f0f0f; padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand img { height: 60px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; color: #888; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: #aaa;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: #777;
  font-size: 0.875rem;
  transition: all var(--transition);
  padding: 0.2rem 0;
}
.footer-links a:hover { color: var(--color-yellow); padding-left: 0.4rem; }

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.fci-icon {
  width: 32px;
  height: 32px;
  background: #1e1e1e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid #2a2a2a;
}
.fci-label { display: block; font-size: 0.75rem; color: #555; margin-bottom: 0.15rem; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.85rem; color: #999; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--color-yellow); }

.footer-map-col iframe {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  border: none;
  filter: grayscale(20%) brightness(0.85);
}
.footer-bottom { background: #0a0a0a; border-top: 1px solid #1e1e1e; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 0.8rem;
  color: #555;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a, .footer-bottom-inner a { color: #555; }
.footer-bottom-links a:hover, .footer-bottom-inner a:hover { color: var(--color-yellow); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FEF9E1 0%, #F9F0C8 60%, #f8e922 100%);
}
.hero-shape {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: var(--color-yellow);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-content .section-tag { margin-bottom: 1.25rem; }
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero-content h1 span { color: var(--color-blue); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-black);
}
.hero-stat span { font-size: 0.85rem; color: var(--color-grey); }
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 767px) {
  .hero { min-height: auto; padding: 5rem 0 3rem; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 1.5rem; }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--color-black);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; gap: 2rem; } }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-yellow);
}
.stat-item span { color: #ccc; font-size: 0.9rem; margin-top: 0.25rem; display: block; }

/* =============================================
   MISSION / VISION / VALUES
   ============================================= */
.mvv-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}
.mvv-panel {
  position: relative;
  padding: 3rem 2.25rem 2.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.mvv-panel--light { background: #fff; }
.mvv-panel--dark  { background: #111; color: #fff; }
.mvv-panel--yellow { background: var(--color-yellow); }
.mvv-num {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.07;
  color: inherit;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.mvv-panel--dark .mvv-num { opacity: 0.12; color: #fff; }
.mvv-inner { position: relative; z-index: 1; }
.mvv-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
  margin-bottom: 0.6rem;
  display: block;
}
.mvv-panel--dark .mvv-label { opacity: 0.6; }
.mvv-inner h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.mvv-panel--dark h3 { color: #fff; }
.mvv-inner p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0;
}
.mvv-panel--dark p { color: rgba(255,255,255,0.75); opacity: 1; }
@media (max-width: 768px) {
  .mvv-band { grid-template-columns: 1fr; }
  .mvv-panel { min-height: 220px; }
}

/* =============================================
   WHAT WE DO
   ============================================= */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 991px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .programs-grid { grid-template-columns: 1fr; } }
.program-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.program-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.program-card-img img { width: 100%; height: 100%; object-fit: cover; }
.program-card-body { padding: 1.5rem; }
.program-card-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.program-card-body p { color: var(--color-grey); font-size: 0.9rem; margin-bottom: 1rem; }

/* =============================================
   JOURNEY / STATS
   ============================================= */
.journey-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .journey-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } }
.journey-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.journey-num {
  background: var(--color-black);
  color: var(--color-yellow);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.journey-num strong { display: block; font-size: 2.5rem; font-weight: 800; }
.journey-num span { font-size: 0.85rem; color: #ccc; margin-top: 0.25rem; display: block; }
@media (max-width: 480px) {
  .journey-num { padding: 1.25rem 0.75rem; }
  .journey-num strong { font-size: 1.75rem; }
  .journey-num span { font-size: 0.75rem; }
}

/* =============================================
   MEAL PROGRAM / CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--color-yellow);
  border-radius: var(--radius);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 640px) {
  .cta-banner { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
  .cta-banner .btn { width: 100%; justify-content: center; }
}
.cta-banner h2 { color: var(--color-black); margin-bottom: 0.75rem; }
.cta-banner p { color: #333; }

/* =============================================
   CARDS - Generic
   ============================================= */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--color-bg-light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }

/* =============================================
   GRID UTILITIES
   ============================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--color-bg-cream);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--color-grey);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--color-blue); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--color-grey); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Image cover variant */
.page-hero-cover {
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  border-bottom: none;
  padding: 6rem 0 5rem;
  position: relative;
}
.page-hero-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.page-hero-cover .container { position: relative; }
.page-hero-cover .breadcrumb { color: rgba(255,255,255,0.6); }
.page-hero-cover .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero-cover h1 { color: #fff; }
.page-hero-cover p { color: rgba(255,255,255,0.75); }

/* =============================================
   TEAM CARDS
   ============================================= */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
@media (max-width: 1200px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--color-bg-light); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card-body { padding: 1.25rem; }
.team-card-body h4 { margin-bottom: 0.25rem; }
.team-card-body span { font-size: 0.85rem; color: var(--color-grey); }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card-body h3 a:hover { color: var(--color-blue); }
.blog-card-body .meta { font-size: 0.8rem; color: var(--color-grey); margin-bottom: 0.75rem; }
.blog-card-body p { font-size: 0.9rem; color: var(--color-grey); }
.blog-card-tag {
  display: inline-block;
  background: var(--color-bg-light);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* =============================================
   CONTACT / FORM
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem;
}
.contact-info-item .icon {
  width: 48px; height: 48px;
  background: var(--color-yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { color: var(--color-grey); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--color-blue); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(248, 233, 34, 0.2);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* =============================================
   DONATE BANNER
   ============================================= */
.donate-strip {
  background: var(--color-black);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.donate-strip h2 { color: var(--color-yellow); margin-bottom: 0.75rem; }
.donate-strip p { color: #aaa; margin-bottom: 1.75rem; }
.donate-strip .btn { margin: 0 0.5rem; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-yellow { color: var(--color-yellow) !important; }
.text-blue { color: var(--color-blue) !important; }
.text-grey { color: var(--color-grey) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.overflow-hidden { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-up { animation: fadeUp 0.6s ease both; }

/* === Scroll reveal === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   BANK DETAILS BOX
   ============================================= */
.bank-box {
  background: var(--color-bg-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.bank-box h4 { margin-bottom: 1rem; }
.bank-detail { display: flex; gap: 0.75rem; margin-bottom: 0.6rem; font-size: 0.9rem; }
.bank-detail strong { min-width: 130px; color: var(--color-text); }
.bank-detail span { color: var(--color-grey); }

/* =============================================
   BACK TO TOP
   ============================================= */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: none;
  z-index: 500;
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { background: #e6d600; transform: translateY(-3px); }

/* =============================================
   KEN BURNS HERO SLIDESHOW
   ============================================= */
.hero-slideshow-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: transform, opacity;
  animation: kenBurnsCycle 30s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s;   animation-name: kenBurns1; }
.hero-slide:nth-child(2) { animation-delay: 6s;   animation-name: kenBurns2; }
.hero-slide:nth-child(3) { animation-delay: 12s;  animation-name: kenBurns3; }
.hero-slide:nth-child(4) { animation-delay: 18s;  animation-name: kenBurns4; }
.hero-slide:nth-child(5) { animation-delay: 24s;  animation-name: kenBurns5; }

@keyframes kenBurns1 {
  0%   { opacity: 0; transform: scale(1.10) translate(-2%, 1%); }
  4%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.00) translate(0%, 0%); }
  25%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.00) translate(0%, 0%); }
}
@keyframes kenBurns2 {
  0%   { opacity: 0; transform: scale(1.08) translate(2%, -1%); }
  4%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.00) translate(0%, 0%); }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes kenBurns3 {
  0%   { opacity: 0; transform: scale(1.12) translate(-1%, -2%); }
  4%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.00) translate(0%, 0%); }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes kenBurns4 {
  0%   { opacity: 0; transform: scale(1.06) translate(1%, 2%); }
  4%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.00) translate(0%, 0%); }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes kenBurns5 {
  0%   { opacity: 0; transform: scale(1.10) translate(-2%, -1%); }
  4%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.00) translate(0%, 0%); }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 4rem;
  width: 100%;
}
.hero-slideshow-section .hero-content {
  max-width: 640px;
}
.hero-slideshow-section .hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero-slideshow-section .hero-content h1 span {
  color: var(--color-yellow);
}
.hero-slideshow-section .hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.hero-slideshow-section .hero-stat strong {
  color: var(--color-yellow);
  font-size: 2rem;
}
.hero-slideshow-section .hero-stat span {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 767px) {
  .hero-slideshow-section { min-height: auto; }
  .hero-inner { padding-top: 6rem; padding-bottom: 3rem; }
  .hero-slideshow-section .hero-content { max-width: 100%; }
}

/* =============================================
   PHOTO GALLERY (homepage "Moments from the Field")
   ============================================= */
.section-bg-dark { background: #111; }
.gallery-section { padding: 5rem 0; }
.gallery-section .section-header { margin-bottom: 2.5rem; }

.photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}
.photo-gallery .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.photo-gallery .gallery-item:hover img { transform: scale(1.06); }

/* Tall item on the left spans both rows */
.photo-gallery .gallery-item-tall {
  grid-row: span 2;
}
/* Wide item spans two columns */
.photo-gallery .gallery-item-wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-gallery .gallery-item { height: 180px; }
  .photo-gallery .gallery-item-tall { grid-row: span 1; }
  .photo-gallery .gallery-item-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery .gallery-item-wide { grid-column: span 1; }
  .photo-gallery .gallery-item { height: 200px; }
}

/* =============================================
   GAUSHALA SECTION - new layout
   ============================================= */
.gaushala-wrapper {
  grid-template-columns: 1fr 1fr;
}
.gaushala-photo {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gaushala-costs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--color-yellow);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.cost-row:last-child { border-bottom: none; }
.cost-row strong { font-family: var(--font-heading); font-size: 1rem; color: var(--color-black); }

@media (max-width: 768px) {
  .gaushala-wrapper { grid-template-columns: 1fr; }
  .gaushala-photo { height: 260px; }
}

/* =============================================
   BLOG ARTICLE PAGES - new layout
   ============================================= */

/* Full-bleed image hero with title overlaid */
.blog-pg-hero {
  position: relative;
  min-height: 68vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.blog-pg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.12) 100%);
}
.blog-pg-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  max-width: 820px;
}
.blog-pg-hero-inner .breadcrumb { margin-bottom: 1.25rem; }
.blog-pg-hero-inner .breadcrumb,
.blog-pg-hero-inner .breadcrumb a { color: rgba(255,255,255,0.6); }
.blog-pg-hero-inner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.blog-byline {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.blog-byline strong { color: rgba(255,255,255,0.9); }

/* Two-column: article + sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 4rem;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.blog-sidebar-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-cream);
}
.blog-sidebar-card.donate-card {
  background: var(--color-black);
  border-color: var(--color-black);
}
.blog-sidebar-card h5 { font-size: 1rem; margin-bottom: 0.6rem; }
.blog-sidebar-card.donate-card h5 { color: #fff; }
.blog-sidebar-card.donate-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.w-full { width: 100%; justify-content: center; text-align: center; display: block; }

/* Article body typography */
.blog-body h2 {
  font-size: 1.45rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--color-black);
}
.blog-body h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--color-black);
  font-weight: 700;
}
.blog-body p {
  color: var(--color-grey);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.blog-body ul, .blog-body ol {
  color: var(--color-grey);
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
  font-size: 1.05rem;
}
.blog-body li { margin-bottom: 0.4rem; }
.blog-notice {
  background: #fff8e1;
  border-left: 4px solid var(--color-yellow);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}
.blog-callout {
  background: var(--color-bg-cream);
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.blog-callout p { margin-bottom: 0; }
.blog-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-border);
}
.blog-author-box img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.blog-author-initial {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 800;
  flex-shrink: 0;
}
.blog-author-box strong { display: block; font-size: 0.95rem; font-weight: 700; }
.blog-author-box span { font-size: 0.8rem; color: var(--color-grey); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; gap: 3rem; }
  .blog-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .blog-sidebar-card { flex: 1; min-width: 200px; }
}
@media (max-width: 540px) {
  .blog-pg-hero { min-height: 70vw; }
  .blog-sidebar { flex-direction: column; }
  .blog-sidebar-card { min-width: 0; }
}

/* =============================================
   BLOG META LINE
   ============================================= */
.blog-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* =============================================
   NEWSLETTER GRID & CARDS
   ============================================= */
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.newsletter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.newsletter-card:hover {
  border-color: var(--color-yellow);
  background: var(--color-bg-cream);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.newsletter-month {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
}
.newsletter-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-grey);
  margin-bottom: 0.5rem;
}
.newsletter-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-grey);
}
.newsletter-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-black);
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 1px;
}
@media (max-width: 991px) {
  .newsletter-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .newsletter-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   PROGRAM CARD IMAGE - zoom on hover
   ============================================= */
.program-card-img img {
  transition: transform 0.5s ease;
}
.program-card:hover .program-card-img img {
  transform: scale(1.06);
}

/* =============================================
   WISHLIST PAGE & STRIP
   ============================================= */
.wishlist-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wishlist-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}
.wishlist-hero-img img { width:100%; height:100%; object-fit:cover; }
.wishlist-hero-text h2 { margin-bottom: 1rem; }
.wishlist-hero-text p { color: var(--color-grey); line-height: 1.75; margin-bottom: 0.75rem; }

.wishlist-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.wishlist-cat-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.wishlist-cat-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.wishlist-cat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.wishlist-cat-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.wishlist-cat-card ul { padding-left: 1.1rem; color: var(--color-grey); font-size: 0.9rem; line-height: 1.75; }
.wishlist-cat-card li { margin-bottom: 0.3rem; }

/* Homepage wishlist strip */
.wishlist-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-bg-cream);
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
}
.wishlist-strip-icon { font-size: 2.5rem; flex-shrink: 0; }
.wishlist-strip-text { flex: 1; }
.wishlist-strip-text h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.wishlist-strip-text p { color: var(--color-grey); font-size: 0.95rem; margin: 0; }

@media (max-width: 991px) {
  .wishlist-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .wishlist-hero-img { height: 280px; }
  .wishlist-categories { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wishlist-categories { grid-template-columns: 1fr; }
  .wishlist-strip { flex-direction: column; text-align: center; padding: 1.5rem; }
  .wishlist-strip .btn { width: 100%; justify-content: center; }
}

/* =============================================
   WISHLIST - HOMEPAGE FULL SECTION
   ============================================= */
.wishlist-home-section {
  background: #111;
  padding: 5rem 0;
}
.wishlist-home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.wishlist-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.wishlist-home-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.wishlist-home-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-yellow);
  transform: translateY(-3px);
}
.whc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.wishlist-home-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.wishlist-home-card ul {
  list-style: none;
  padding: 0;
}
.wishlist-home-card li {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wishlist-home-card li:last-child { border-bottom: none; }
.wishlist-home-footer {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
@media (max-width: 991px) {
  .wishlist-home-grid { grid-template-columns: repeat(2, 1fr); }
  .wishlist-home-header { flex-direction: column; }
}
@media (max-width: 540px) {
  .wishlist-home-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WISHLIST PRODUCT CARDS
   ============================================= */
.wishlist-how-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.wishlist-how-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.wishlist-step-num {
  width: 36px; height: 36px;
  background: var(--color-black);
  color: var(--color-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.wishlist-how-step strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.wishlist-how-step p { color: var(--color-grey); font-size: 0.875rem; margin: 0; }

.wl-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.wl-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #f8f8f8;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}
.wl-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.3s ease;
}
.wl-card:hover .wl-img { transform: scale(1.05); }
.wl-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all var(--transition);
}
.wl-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.wl-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  color: var(--color-heading);
}
.wl-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-black);
}
.wl-btn { margin-top: auto; justify-content: center; text-align: center; }

/* Category badges */
.wl-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
}
.wl-badge-medical { background: #e8f4fd; color: #1a6fa8; }
.wl-badge-medicine { background: #fdeaea; color: #a81a1a; }
.wl-badge-food { background: #e8f5e9; color: #2e7d32; }
.wl-badge-cat { background: #f3e5f5; color: #7b1fa2; }
.wl-badge-hygiene { background: #fff3e0; color: #e65100; }
.wl-badge-equip { background: #f5f5f5; color: #424242; }

@media (max-width: 1100px) { .wl-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
  .wl-grid { grid-template-columns: repeat(2,1fr); }
  .wishlist-how-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) { .wl-grid { grid-template-columns: 1fr; } }

/* ── Podcast / Video section - alternating rows ─────────────── */
.pod-rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}
.pod-row { display: block; }

/* The actual 2-col grid lives inside the body */
.pod-accordion-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pod-row--flip .pod-accordion-body {
  direction: rtl;
}
.pod-row--flip .pod-accordion-body > * {
  direction: ltr;
}
.pod-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.pod-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.pod-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pod-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b8960c;
  background: #fffbe6;
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  width: fit-content;
}
.pod-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-heading);
  margin: 0;
}
.pod-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-grey);
  margin: 0;
}
@media (max-width: 860px) {
  .pod-accordion-body { grid-template-columns: 1fr; direction: ltr; gap: 1.25rem; }
  .pod-rows { gap: 0; }
}

/* ── Mobile accordion for podcast rows ─────────────────────── */
.pod-accordion-trigger { display: none; }

@media (max-width: 860px) {
  .pod-rows { gap: 0; border: 1.5px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }

  .pod-accordion-item { display: block; border-bottom: 1.5px solid var(--color-border); }
  .pod-accordion-item:last-child { border-bottom: none; }

  .pod-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: #fff;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
  }
  .pod-accordion-trigger .pod-label { flex-shrink: 0; }
  .pod-accordion-title {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
  }
  .pod-accordion-chevron {
    width: 20px; height: 20px;
    flex-shrink: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-right: 4px;
    color: var(--color-grey);
    position: relative;
    top: -3px;
  }
  .pod-accordion-trigger[aria-expanded="true"] .pod-accordion-chevron {
    transform: rotate(-135deg);
    top: 3px;
  }

  .pod-accordion-body {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1.25rem 1.5rem;
    background: #fafafa;
  }
  .pod-accordion-body .pod-text .pod-label { display: none; }
  .pod-accordion-open .pod-accordion-body { display: flex; }

  .pod-row, .pod-row--flip { display: block; }
}

/* =============================================
   INSTAGRAM REELS SECTION
   ============================================= */
.insta-section { background: #0a0a0a; padding: 4rem 0; }
.insta-section .section-header { margin-bottom: 2rem; }
.insta-section .section-header h2 { color: #fff; }
.insta-section .section-tag {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border: none;
}
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  text-decoration: none;
  transition: color var(--transition);
}
.insta-handle:hover { color: #fff; }

/* Horizontal scroll track */
.insta-scroll-wrap { position: relative; }
.insta-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.insta-scroll::-webkit-scrollbar { display: none; }

/* Each reel card */
.insta-reel {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  background: #1a1a1a;
  cursor: pointer;
}
@media (min-width: 768px)  { .insta-reel { flex: 0 0 220px; } }
@media (min-width: 1200px) { .insta-reel { flex: 0 0 240px; } }

.insta-reel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.5s ease; display: block;
}
.insta-reel:hover img { transform: scale(1.05); }

.insta-reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: space-between; padding: 0.75rem;
}
.insta-reel-top { display: flex; justify-content: flex-end; }
.insta-play-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.insta-play-icon svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }
.insta-reel-handle { font-size: 0.7rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.insta-reel-caption {
  font-size: 0.78rem; color: rgba(255,255,255,0.9); line-height: 1.35; margin-top: 0.2rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* CTA row */
.insta-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-insta:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; }
.btn-insta svg { width: 18px; height: 18px; fill: #fff; }

/* Instagram reel modal */
.insta-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.insta-modal.open { opacity: 1; visibility: visible; }
.insta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.insta-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.insta-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  line-height: 1;
}
.insta-modal-close:hover { background: rgba(255,255,255,0.15); }
.insta-modal-embed {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-modal-embed iframe {
  width: 100%;
  border: none;
  min-height: 580px;
  display: block;
}
.insta-modal-placeholder {
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.insta-modal-placeholder svg { margin-bottom: 1rem; opacity: 0.4; }

/* make reel cards look clickable */
.insta-reel { text-decoration: none; color: inherit; }

/* =============================================
   VOLUNTEER FORM PAGE
   ============================================= */
.vol-entail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.vol-entail-list {
  list-style: none;
  margin-top: 1rem;
}
.vol-entail-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-grey);
}
.vol-entail-list li:last-child { border-bottom: none; }
.vol-entail-list li::before {
  content: '→';
  color: var(--color-yellow);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 860px) { .vol-entail { grid-template-columns: 1fr; } }

/* ---- Urgent fundraiser card ---- */

/* Vertical tab - bottom right */
.urgent-tab {
  position: fixed;
  right: 5.5rem;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-black);
  color: #fff;
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  z-index: 8999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transition: background 0.2s, padding 0.2s;
}
.urgent-tab:hover { background: #222; padding-bottom: 0.9rem; }
.urgent-tab-dot {
  width: 8px;
  height: 8px;
  background: #e53e3e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.4s infinite;
}
.urgent-tab-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

/* Popup card - bottom right above the tab */
.urgent-card {
  position: fixed;
  bottom: calc(48px + 0.75rem);
  right: 5.5rem;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 9000;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s ease;
}
.urgent-card.urgent-card--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.urgent-card-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.urgent-card-close:hover { background: rgba(0,0,0,0.75); }
.urgent-card-img-wrap {
  position: relative;
  height: 190px;
  background: #111;
  overflow: hidden;
}
.urgent-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.urgent-slide--active { opacity: 1; }
.urgent-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #e53e3e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
}
.urgent-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.urgent-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: background 0.3s; }
.urgent-dot--active { background: #fff; }
.urgent-card-body { padding: 1.1rem 1.25rem 1.35rem; }
.urgent-card-name { font-size: 1rem; font-weight: 800; color: var(--color-black); margin-bottom: 0.4rem; }
.urgent-card-story { font-size: 0.8rem; color: var(--color-grey); line-height: 1.6; margin-bottom: 0.85rem; }
.urgent-card-need { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1rem; padding-bottom: 0.85rem; border-bottom: 1px solid #f0f0f0; }
.urgent-amount { font-size: 1.5rem; font-weight: 900; color: var(--color-black); line-height: 1; }
.urgent-amount span { font-size: 0.85rem; font-weight: 600; color: var(--color-grey); }
.urgent-label { font-size: 0.78rem; color: var(--color-grey); }
.urgent-donate-btn { font-size: 0.85rem; padding: 0.65rem 1rem; border-radius: 999px; justify-content: center; margin-bottom: 0.5rem; }

@media (max-width: 480px) {
  .urgent-card { right: 0.75rem; left: 0.75rem; width: auto; bottom: calc(48px + 0.75rem); }
  .urgent-tab { right: 4rem; }
}

/* ---- Vaccination pillars ---- */
.vacc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.vacc-pillar {
  position: relative;
  background: var(--color-black);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  overflow: hidden;
}
.vacc-pillar-num {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.vacc-pillar-icon { font-size: 2.25rem; display: block; margin-bottom: 1.25rem; }
.vacc-pillar h3 { color: var(--color-yellow); font-size: 1.15rem; margin-bottom: 0.65rem; }
.vacc-pillar p { color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.75; margin: 0; }
@media (max-width: 768px) { .vacc-pillars { grid-template-columns: 1fr; } }

/* ---- Volunteer form layout ---- */
.vol-form-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .vol-form-layout { grid-template-columns: 1fr; } }

/* Sticky sidebar */
.vol-form-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--color-black);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  color: #fff;
}
.vol-form-sidebar h3 { color: var(--color-yellow); font-size: 1.2rem; margin-bottom: 0.5rem; }
.vol-form-sidebar p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.5rem; }
.vol-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vol-progress-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.vol-progress-step.active { color: #fff; }
.vol-progress-step.done  { color: rgba(255,255,255,0.5); }
.vol-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.vol-progress-step.active .vol-step-dot {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #000;
}
.vol-progress-step.done .vol-step-dot {
  background: rgba(255,255,255,0.15);
  border-color: transparent;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 900px) { .vol-form-sidebar { position: static; } .vol-progress { flex-direction: row; flex-wrap: wrap; } }

/* Form card */
.vol-form-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  overflow: hidden;
}

/* Each section */
.vol-form-section {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.vol-form-section:last-of-type { border-bottom: none; }
@media (max-width: 600px) { .vol-form-section { padding: 1.5rem; } }

.vol-section-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-yellow);
}
.vol-section-num {
  width: 36px;
  height: 36px;
  background: var(--color-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.vol-section-header h3 { font-size: 1.05rem; margin: 0; }

/* Input overrides inside form */
.vol-form-wrap .form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.45rem;
}
.vol-form-wrap .form-group input,
.vol-form-wrap .form-group textarea,
.vol-form-wrap .form-group select {
  border-color: #e8e8e8;
  border-radius: 10px;
  background: #fafafa;
  font-size: 0.95rem;
}
.vol-form-wrap .form-group input:focus,
.vol-form-wrap .form-group textarea:focus,
.vol-form-wrap .form-group select:focus {
  background: #fff;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) { .form-row, .form-row.cols-3 { grid-template-columns: 1fr; } }

/* Day pills */
.check-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.check-group.days { gap: 0.5rem; }
.check-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--color-black);
  cursor: pointer; flex-shrink: 0;
}
.check-group.days .check-item {
  background: #f5f5f5;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
}
.check-group.days .check-item input { display: none; }
.check-group.days .check-item:has(input:checked) {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #000;
}

/* Interest area chips */
.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.interest-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  background: #fafafa;
}
.interest-chip input { display: none; }
.interest-chip:has(input:checked) {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #fff;
}

/* Radio pill buttons */
.radio-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.radio-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  background: #fafafa;
}
.radio-pill input { display: none; }
.radio-pill:has(input:checked) {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #fff;
}

/* Conditional fields */
.conditional-field { display: none; margin-top: 0.75rem; }
.conditional-field.visible { display: block; }

/* Required asterisk */
.req { color: #e74c3c; margin-left: 2px; }

/* Terms */
.terms-check {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fafafa;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
}
.terms-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--color-black);
  margin-top: 2px; flex-shrink: 0;
}
.terms-check label { font-size: 0.88rem; color: var(--color-grey); line-height: 1.6; }

/* Submit area */
.vol-submit-row {
  padding: 2rem 2.5rem;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.vol-submit-row .btn {
  min-width: 220px;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
}
.vol-submit-row p { font-size: 0.82rem; color: var(--color-grey); margin: 0; }

/* Success */
.vol-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}
.vol-success .success-icon {
  width: 72px; height: 72px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.vol-success h3 { margin-bottom: 0.75rem; }
.vol-success p { color: var(--color-grey); max-width: 380px; margin: 0 auto; }

/* Volunteer photos grid */
.vol-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 900px) { .vol-photos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .vol-photos-grid { grid-template-columns: repeat(2, 1fr); } }
.vol-photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.vol-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vol-photo-item:hover img { transform: scale(1.06); }

/* QR CTA block */
.vol-qr-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--color-black);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  color: #fff;
}
.vol-qr-block img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}
.vol-qr-text h3 { color: var(--color-yellow); margin-bottom: 0.5rem; }
.vol-qr-text p { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
@media (max-width: 640px) {
  .vol-qr-block { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
  .vol-qr-block img { width: 120px; height: 120px; }
}
}
