/* ==========================================================================
   Creative Kuteer Foundation — Modern Animated Stylesheet
   Color System, Custom Typography, Responsive Layout, Keyframe Animations
   ========================================================================== */

:root {
  /* Exact brand color palette */
  --primary-dark: #4A5D23;
  /* deep olive — headings, footer bg */
  --primary-green: #568203;
  /* leaf green — primary brand color, buttons, section headers */
  --light-green: #eff7e6;
  /* pale mint tint — card backgrounds */
  --earth-brown: #5c4033;
  /* earthy accent, sparingly */
  --gold: #d49b14;
  --gold-bright: #efb528;
  /* accent gold — dividers, highlights, CTAs, hover states */
  --bg-cream: #fbfaf5;
  /* main page background */
  --bg-card: #ffffff;
  --text-dark: #18220c;
  --text-muted: #3a4729;
  --border-light: #d9e6cb;

  /* Additional harmonious utility tokens */
  --shadow-sm: 0 2px 8px rgba(24, 34, 12, 0.06);
  --shadow-md: 0 8px 24px rgba(24, 34, 12, 0.09);
  --shadow-lg: 0 16px 36px rgba(24, 34, 12, 0.14);
  --shadow-gold: 0 8px 25px rgba(239, 181, 40, 0.35);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', 'Manrope', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Eyebrow kicker */
.kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.kicker::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--gold-bright);
}

.kicker-gold {
  color: var(--gold-bright);
}

.kicker-gold::before {
  background-color: var(--gold-bright);
}

/* Section Header Component */
.section-header {
  margin-bottom: 40px;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .kicker::before {
  display: none;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.015em;
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-top: 10px;
}

.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.title-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.title-bar h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.title-bar .rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--border-light), transparent);
}

.title-bar .tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--light-green);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background-color: var(--gold-bright);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(212, 155, 20, 0.28);
}

.btn-gold:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.btn-primary {
  background-color: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(86, 130, 3, 0.28);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(74, 93, 35, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-green {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Ambient Floating Foliage Watermarks
   ========================================================================== */
.ambient-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.ambient-leaf-1 {
  top: 15%;
  left: -40px;
  width: 140px;
  height: 140px;
  animation: floatSlow 14s ease-in-out infinite alternate;
}

.ambient-leaf-2 {
  top: 55%;
  right: -50px;
  width: 160px;
  height: 160px;
  animation: floatSlow 18s ease-in-out infinite alternate-reverse;
}

.ambient-leaf-3 {
  bottom: 8%;
  left: 2%;
  width: 120px;
  height: 120px;
  animation: floatSlow 12s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-24px) rotate(6deg);
  }

  100% {
    transform: translateY(-45px) rotate(-4deg);
  }
}

/* ==========================================================================
   A. Sticky Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 245, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(24, 34, 12, 0.08);
  border-bottom: 1px solid var(--border-light);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-disc {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--gold-bright);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  overflow: hidden;
  padding: 2px;
}

.brand-link:hover .brand-logo-disc {
  transform: rotate(10deg) scale(1.05);
}

.brand-logo-disc img,
.brand-logo-disc svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.1;
  color: #ffffff;
  transition: color 0.3s ease;
}

.brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 2px;
}

.site-header.scrolled .brand-name {
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 0;
}

.site-header.scrolled .nav-item a {
  color: var(--text-dark);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

.nav-item a:hover {
  color: var(--gold-bright);
}

.site-header.scrolled .nav-item a:hover {
  color: var(--primary-green);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  padding: 9px 20px;
  font-size: 0.86rem;
  border-radius: var(--radius-full);
}

.header-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--gold-bright);
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(212, 155, 20, 0.35);
  font-weight: 700;
}

.header-donate-btn .donate-earth-icon {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.header-donate-btn:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.header-volunteer-btn {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.header-volunteer-btn:hover {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.site-header.scrolled .header-volunteer-btn {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: transparent;
}

.site-header.scrolled .header-volunteer-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .mobile-toggle {
  background: var(--light-green);
  border-color: var(--border-light);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header.scrolled .mobile-toggle span {
  background-color: var(--primary-dark);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-cream);
  z-index: 1050;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 12, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.4rem;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.drawer-links a {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-light);
}

.drawer-links a:hover {
  color: var(--primary-green);
  padding-left: 6px;
}

/* ==========================================================================
   B. Hero Section (Image-Free Dynamic Organic Experience)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 100px;
  background: radial-gradient(circle at 50% 12%, #2c5420 0%, #173210 45%, #0b1a07 100%);
}

/* Ambient Moving Aura & Glow Spheres */
.hero-ambient-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatSlowGlow 18s ease-in-out infinite alternate;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 130, 3, 0.5) 0%, transparent 70%);
  top: -100px;
  left: 15%;
}

.hero-glow-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(239, 181, 40, 0.35) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

.hero-glow-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(46, 82, 24, 0.6) 0%, transparent 70%);
  bottom: 0%;
  left: 30%;
  animation-duration: 16s;
}

@keyframes floatSlowGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -25px) scale(1.1);
  }

  100% {
    transform: translate(-25px, 35px) scale(0.95);
  }
}

/* Interactive Floating Leaves & Dust Particles Canvas */
.hero-nature-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

/* Pulse Eyebrow */
.hero-badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(24, 34, 12, 0.65);
  border: 1px solid rgba(239, 181, 40, 0.55);
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pulse-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 10px #4ade80, 0 0 20px rgba(74, 222, 128, 0.6);
  animation: pulseIndicator 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseIndicator {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

.hero-badge-eyebrow span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-title {
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: none;
}

.hero-title .highlight {
  color: var(--gold-bright);
  display: inline-block;
  position: relative;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--gold-bright);
  filter: none;
  text-shadow: none;
}

.hero-tagline {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: #f1f7ec;
  max-width: 760px;
  margin: 0 auto 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Bilingual Motto Box */
.hero-motto-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-script-line {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  color: var(--gold-bright);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-marathi-motto {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: #e5f6d7;
  background: rgba(86, 130, 3, 0.28);
  border: 1px solid rgba(162, 219, 74, 0.35);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Hero Impact Capsules (Non-Image Feature) */
.hero-impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 20px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(239, 181, 40, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28), 0 0 15px rgba(239, 181, 40, 0.15);
}

.hero-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
  line-height: 1;
}

.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  color: var(--gold-bright);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.76rem;
  color: #dbead2;
  line-height: 1.25;
}

/* Smooth Curved Wave Base Transition */
.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-wave-bottom svg {
  display: block;
  width: 100%;
  height: 52px;
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(24, 34, 12, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  animation: bounceDown 2s infinite;
  fill: var(--primary-green);
}

@media (max-width: 768px) {
  .hero-impact-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

/* ==========================================================================
   C. Who We Are / Our Mission
   ========================================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card.tinted {
  background: var(--light-green);
  border-color: #d5e4c4;
}

.card-top-accent {
  width: 44px;
  height: 4px;
  background: var(--gold-bright);
  border-radius: 2px;
  margin-bottom: 22px;
}

.about-card h3 {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-card p strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.card-bot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(86, 130, 3, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   D. Our Focus Areas
   ========================================================================== */
.focus-section {
  padding: 40px 0 100px;
  position: relative;
  background-color: var(--bg-cream);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-bright);
}

.focus-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--light-green);
  border: 1px solid #d5e4c4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-green);
  transition: all 0.35s ease;
}

/* Hover rotation bounce and color inversion */
.focus-card:hover .focus-icon-wrap {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: rotate(-10deg) scale(1.12);
}

.focus-card:hover .focus-icon-wrap svg {
  fill: #ffffff;
}

.focus-card h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.focus-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================================
   E. Process Ribbon
   ========================================================================== */
.process-ribbon {
  background: var(--primary-green);
  color: #ffffff;
  padding: 24px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(86, 130, 3, 0.25);
}

.ribbon-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.ribbon-item .ribbon-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.ribbon-arrow {
  color: var(--gold-bright);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.ribbon-highlight {
  color: var(--gold-bright);
  font-weight: 800;
}

/* ==========================================================================
   F. Our Initiatives
   ========================================================================== */
.initiatives-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-cream);
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.init-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.init-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-bright);
}

.init-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #2b3a16;
}

.init-img-wrapper picture,
.init-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}

.init-img-wrapper img {
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.init-card:hover .init-img-wrapper img {
  transform: scale(1.06);
}

.init-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(24, 34, 12, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-bright);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(239, 181, 40, 0.3);
  z-index: 2;
}

.init-body {
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
}

.init-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green);
  border: 1px solid #d5e4c4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.init-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-green);
}

.init-text h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.init-text p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Featured Initiative Wide Card */
.init-card.init-featured {
  grid-column: span 2;
  border: 2px solid var(--gold-bright);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
  position: relative;
}

.init-card.init-featured .init-grid-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.init-card.init-featured .init-img-wrapper {
  aspect-ratio: 4 / 3;
  height: 100%;
  min-height: 280px;
}

.init-card.init-featured .init-img-wrapper img {
  object-position: center center;
}

.init-featured .init-icon {
  background: #fdf1cf;
  border-color: #f5e2ab;
}

.init-featured .init-icon svg {
  fill: var(--gold);
}

.init-featured-badge {
  display: inline-block;
  background: var(--gold-bright);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

/* ==========================================================================
   G. Gallery — Glimpses of Our Initiatives
   ========================================================================== */
.gallery-section {
  padding: 30px 0 100px;
  position: relative;
  background-color: var(--bg-cream);
}

.gallery-band {
  background: var(--primary-green);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-band .region-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #18220c;
  padding: 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #243413;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: brightness(0.95);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.02);
}

.gallery-overlay-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(74, 93, 35, 0.95) 0%, rgba(86, 130, 3, 0.85) 100%);
  color: #ffffff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  transition: var(--transition);
}

.gallery-caption-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-zoom-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ==========================================================================
   H. How You Can Be Part of the Movement
   ========================================================================== */
.movement-section {
  padding: 20px 0 90px;
  position: relative;
  background-color: var(--bg-cream);
}

.movement-panel {
  background: var(--light-green);
  border: 1px solid #d5e4c4;
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.movement-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(86, 130, 3, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.movement-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.movement-header h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary-green);
  white-space: nowrap;
}

.movement-header .rule {
  flex: 1;
  height: 2px;
  background: #c8dbb7;
}

.movement-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  margin-bottom: 40px;
}

.movement-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.tick-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(86, 130, 3, 0.25);
  transition: transform 0.3s ease;
}

.movement-item:hover .tick-badge {
  transform: scale(1.15) rotate(10deg);
  background: var(--gold-bright);
}

.tick-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.6s ease-out;
}

.movement-item.in-view .tick-badge svg {
  stroke-dashoffset: 0;
}

.movement-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px dashed #c8dbb7;
}

/* ==========================================================================
   I. Impact Counters
   ========================================================================== */
.impact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #243413 0%, var(--primary-dark) 100%);
  color: #ffffff;
  position: relative;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.impact-card {
  padding: 20px 10px;
  position: relative;
}

.impact-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.impact-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #eff7e6;
}

.impact-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ==========================================================================
   J. Contact / Footer
   ========================================================================== */
.site-footer {
  background: var(--primary-dark);
  color: #ffffff;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.site-footer p,
.footer-col p,
.footer-tagline {
  color: #f0f7ea !important;
  opacity: 0.95;
}

.site-footer a {
  color: #f0f7ea;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.site-footer strong {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col h5::after {
  content: '';
  height: 1px;
  width: 30px;
  background: var(--gold-bright);
  opacity: 0.5;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #f0f7ea;
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item a:hover {
  color: var(--gold-bright);
}

/* QR Code Block with Pulsing Ring */
.qr-block-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-box-wrap {
  position: relative;
  display: inline-block;
  padding: 10px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.qr-box-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-md) + 6px);
  border: 2px solid var(--gold-bright);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.9;
    box-shadow: 0 0 0 0 rgba(239, 181, 40, 0.6);
  }

  70% {
    transform: scale(1.04);
    opacity: 0.3;
    box-shadow: 0 0 20px 8px rgba(239, 181, 40, 0);
  }

  100% {
    transform: scale(1);
    opacity: 0.9;
    box-shadow: 0 0 0 0 rgba(239, 181, 40, 0);
  }
}

.qr-svg {
  width: 120px;
  height: 120px;
  display: block;
}

.qr-caption {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  margin-top: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-btn:hover {
  background: var(--gold-bright);
  color: var(--primary-dark);
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold-bright);
}

.connect-handle {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  margin-top: 8px;
}

.connect-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Bilingual Closing Strip */
.closing-punch-strip {
  background: var(--gold-bright);
  color: var(--primary-dark);
  padding: 16px 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.closing-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.closing-en {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.closing-mr {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #312503;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 12, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.lightbox-caption-bar {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--gold-bright);
  color: var(--text-dark);
}

/* ==========================================================================
   Volunteer Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 12, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.modal-close-btn:hover {
  background: var(--gold-bright);
}

.modal-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(86, 130, 3, 0.15);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Floating Action Button (Scroll to top & WhatsApp) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.float-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background: #20ba59;
}

.float-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.back-to-top {
  background: var(--primary-dark);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-bright);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Stagger Delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qr-block-center {
    grid-column: span 2;
    order: 3;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .header-action .header-volunteer-btn {
    display: none;
  }

  .header-action .header-donate-btn {
    display: inline-flex;
    padding: 7px 15px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .mobile-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .init-card.init-featured {
    grid-column: span 1;
  }

  .init-card.init-featured .init-grid-inner {
    grid-template-columns: 1fr;
  }

  .movement-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .movement-panel {
    padding: 32px 24px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .impact-card:nth-child(2)::after {
    display: none;
  }

  .ribbon-flex {
    justify-content: center;
    text-align: center;
  }

  .ribbon-arrow {
    display: none;
  }

  .closing-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card::after {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .qr-block-center {
    grid-column: span 1;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Dedicated About Page Styles (Multi-Page Site Setup)
   ========================================================================== */

/* A. About Page Hero (~50vh) */
.about-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 85px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-river.webp') center 35% / cover no-repeat;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
}

.page-breadcrumb a {
  color: var(--gold-bright);
}

.page-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* B. Our Story Section */
.story-section {
  padding: 95px 0 75px;
  position: relative;
  background-color: var(--bg-cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.story-media {
  position: relative;
}

.story-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-light);
  position: relative;
  background: #ffffff;
}

.story-img-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-card:hover img {
  transform: scale(1.03);
}

.story-floating-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: rgba(24, 34, 12, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  max-width: 250px;
}

.story-floating-badge .badge-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.story-floating-badge .badge-text {
  font-family: 'Sora', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

.story-narrative .story-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.65;
  margin-bottom: 16px;
}

.story-narrative p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.story-narrative p strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.story-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.story-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light-green);
  border: 1px solid #d5e4c4;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

/* C. Mission & Vision Section Container */
.mission-vision-section {
  padding: 40px 0 85px;
  background-color: var(--bg-cream);
  position: relative;
}

/* D. Our Values Section */
.values-section {
  padding: 85px 0;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* E. Our Journey / Timeline */
.timeline-section {
  padding: 95px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 20px 0;
}

.timeline-stem {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-green) 0%, var(--gold-bright) 50%, var(--primary-green) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  display: flex;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-card {
  width: calc(50% - 40px);
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.timeline-item:nth-child(odd) .timeline-card {
  transform: translateX(-35px);
}

.timeline-item:nth-child(even) .timeline-card {
  transform: translateX(35px);
}

.timeline-item.in-view .timeline-card {
  opacity: 1;
  transform: translateX(0);
}

.timeline-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md);
  border-color: var(--gold-bright);
}

.timeline-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(to right, var(--primary-green), var(--gold-bright));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translate(-50%, -50%) scale(0.6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 0 0 5px rgba(239, 181, 40, 0.22);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.timeline-item.in-view .timeline-node {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.timeline-node svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-green);
}

.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.timeline-year-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-green);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid #d5e4c4;
}

.timeline-confirm-tag {
  font-size: 0.68rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #a46f04;
  background: #fff8e6;
  border: 1px dashed #eec260;
  padding: 3px 8px;
  border-radius: 4px;
}

.timeline-card h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.timeline-loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 14px;
}

.timeline-loc-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* G. Action-Oriented Closing CTA Band */
.about-cta-band {
  background: var(--gold-bright);
  color: var(--primary-dark);
  padding: 44px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.about-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.about-cta-content h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  color: var(--primary-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.about-cta-content p {
  font-size: 1rem;
  font-weight: 600;
  color: #3b2c05;
}

.about-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Dark Button Utility for Gold Backgrounds */
.btn-dark {
  background-color: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 34, 12, 0.25);
}

.btn-dark:hover {
  background-color: #1a250c;
  color: var(--gold-bright);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(24, 34, 12, 0.35);
}

.btn-outline-dark {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  background: transparent;
  font-weight: 700;
}

.btn-outline-dark:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive adjustments for About Page components */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-img-card img {
    height: 380px;
  }

  .story-floating-badge {
    right: 12px;
    bottom: 14px;
  }
}

@media (max-width: 768px) {
  .timeline-stem {
    left: 22px;
    transform: none;
  }

  .timeline-node {
    left: 22px;
  }

  .timeline-card {
    width: calc(100% - 54px);
    margin-left: 54px !important;
    margin-right: 0 !important;
    text-align: left !important;
    transform: translateX(25px);
  }

  .timeline-item {
    justify-content: flex-start !important;
    margin-bottom: 36px;
  }

  .about-cta-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .about-cta-buttons {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   Dedicated Donate Page Styles (Multi-Page Site Setup)
   ========================================================================== */

/* A. Donate Page Hero (~50vh, Dark Olive Overlay on Community Action) */
.donate-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 85px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-community.webp') center 40% / cover no-repeat;
}

/* B. Why Donate Section */
.why-donate-section {
  padding: 70px 0 30px;
  background-color: var(--bg-cream);
  position: relative;
}

.why-donate-lead {
  max-width: 820px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
}

.why-donate-lead strong {
  color: var(--primary-green);
}

.allocation-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.allocation-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.allocation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.allocation-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.allocation-icon svg {
  width: 24px;
  height: 24px;
}

.allocation-card h4 {
  font-size: 1.02rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.allocation-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* C & D. Main Donation Box & Amount Selector */
.donate-main-section {
  padding: 40px 0 90px;
  background-color: var(--bg-cream);
  position: relative;
}

.donation-box-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.donation-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.donation-box-header {
  text-align: center;
  margin-bottom: 32px;
}

.donation-box-header h3 {
  font-size: 1.65rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.donation-box-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Frequency Toggle Switch (One-Time vs Monthly) */
.donation-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.donation-toggle {
  display: inline-flex;
  background: var(--light-green);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 5px;
  gap: 6px;
  position: relative;
}

.toggle-btn {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 26px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.toggle-btn.active {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(86, 130, 3, 0.3);
}

.toggle-btn:not(.active):hover {
  color: var(--primary-dark);
}

/* Preset Amount Selector Cards */
.amount-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.amount-card {
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 14px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 142px;
  position: relative;
}

.amount-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.amount-card.selected {
  border-color: var(--primary-green);
  background-color: var(--light-green);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(86, 130, 3, 0.16);
}

.amount-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-bright);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.amount-headline {
  margin-top: 6px;
}

.amount-figure {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.amount-frequency-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.amount-impact-desc {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-muted);
  margin-top: 10px;
  border-top: 1px dashed rgba(86, 130, 3, 0.2);
  padding-top: 8px;
}

.amount-card.selected .amount-impact-desc {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Custom Amount Input Row */
.custom-amount-wrapper {
  background: #fbfaf5;
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.custom-amount-wrapper.focused {
  border-color: var(--primary-green);
  background: var(--light-green);
}

.custom-label-group {
  display: flex;
  flex-direction: column;
}

.custom-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.custom-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.custom-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  width: 220px;
  transition: var(--transition);
}

.custom-input-group:focus-within {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(86, 130, 3, 0.15);
}

.custom-prefix {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-right: 6px;
}

.custom-input-field {
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  outline: none;
}

.custom-input-field::placeholder {
  font-size: 0.88rem;
  font-weight: 500;
  color: #9aa88c;
}

/* Impact Summary Strip inside Box */
.donation-summary-strip {
  background: var(--light-green);
  border-left: 4px solid var(--primary-green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.donation-summary-icon {
  color: var(--primary-green);
  flex-shrink: 0;
}

.donation-summary-text {
  font-size: 0.92rem;
  color: var(--primary-dark);
  line-height: 1.45;
}

.donation-summary-text strong {
  color: var(--primary-green);
}

/* Big Gold Donate Submit Button */
.btn-donate-now {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  background-color: var(--gold-bright);
  color: var(--text-dark);
  box-shadow: 0 6px 22px rgba(212, 155, 20, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.btn-donate-now:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-donate-now svg {
  transition: transform 0.3s ease;
}

.btn-donate-now:hover svg {
  transform: scale(1.2);
}

.donation-guarantee-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* E. Other Ways to Give Section */
.alt-giving-section {
  padding: 85px 0;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.alt-giving-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.alt-give-card {
  background: var(--bg-cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.alt-give-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alt-give-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
  background: #ffffff;
}

.alt-give-card:hover::before {
  opacity: 1;
}

.alt-give-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #d5e4c4;
}

.alt-give-icon svg {
  width: 28px;
  height: 28px;
}

.alt-give-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.alt-give-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.alt-give-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.alt-give-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--primary-green);
  transition: gap 0.2s ease, color 0.2s ease;
}

.alt-give-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* F. Trust & Transparency Section */
.trust-section {
  padding: 85px 0 75px;
  background-color: var(--bg-cream);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.trust-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 24px;
  height: 24px;
}

.trust-content h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.trust-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.trust-disclaimer-note {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #8c6a0c;
  background: #fff8e8;
  padding: 4px 8px;
  border-radius: 4px;
  border-left: 3px solid var(--gold-bright);
}

/* Donation Placeholder Gateway Modal */
.donation-placeholder-modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 12, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.donation-placeholder-modal.open {
  opacity: 1;
  visibility: visible;
}

.donation-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--border-light);
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.donation-placeholder-modal.open .donation-modal-card {
  transform: translateY(0) scale(1);
}

.modal-icon-disc {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid var(--primary-green);
}

.modal-icon-disc svg {
  width: 32px;
  height: 32px;
}

.donation-modal-card h3 {
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.donation-modal-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.modal-selected-summary {
  background: var(--bg-cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-summary-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.modal-summary-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-green);
}

.dev-gateway-callout {
  background: #fff8e8;
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.82rem;
  color: #694d03;
  text-align: left;
  margin-bottom: 22px;
  line-height: 1.45;
}

.dev-gateway-callout code {
  font-weight: 700;
  color: var(--primary-dark);
}

.modal-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Responsive Rules for Donate Page */
@media (max-width: 900px) {
  .amount-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .allocation-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .alt-giving-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .donation-card-box {
    padding: 28px 20px;
  }

  .allocation-highlights {
    grid-template-columns: 1fr;
  }

  .custom-amount-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-input-group {
    width: 100%;
  }

  .amount-figure {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   Dedicated Get Involved Page Styles (Multi-Page Site Setup)
   ========================================================================== */

/* A. Get Involved Hero (~50vh) */
.involved-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 85px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-youth.webp') center 30% / cover no-repeat;
}

/* B. Ways to Get Involved Grid */
.ways-involved-section {
  padding: 75px 0 85px;
  background-color: var(--bg-cream);
  position: relative;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.way-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.way-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.way-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.way-card:hover::before {
  opacity: 1;
}

.way-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #d5e4c4;
}

.way-card-icon svg {
  width: 26px;
  height: 26px;
}

.way-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.way-card h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.way-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

.way-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--primary-green);
  transition: gap 0.2s ease, color 0.2s ease;
}

.way-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* C. Volunteer Registration Form Section */
.volunteer-form-section {
  padding: 85px 0 95px;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.volunteer-form-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.volunteer-page-card {
  background: var(--light-green);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.volunteer-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.volunteer-form-header h3 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.volunteer-form-header p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

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

.form-field-group {
  margin-bottom: 22px;
}

.form-field-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-field-label .required-star {
  color: #c93b2b;
}

.form-input-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.form-input-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3.5px rgba(86, 130, 3, 0.18);
  background: #ffffff;
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.custom-checkbox-label:hover {
  border-color: var(--primary-green);
}

.custom-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary-green);
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.custom-checkbox-label input[type="checkbox"]:checked+span {
  color: var(--primary-green);
}

/* Radio Group */
.radio-options-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.custom-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.custom-radio-label:hover {
  border-color: var(--primary-green);
}

.custom-radio-label input[type="radio"] {
  accent-color: var(--primary-green);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-volunteer-page-submit {
  width: 100%;
  padding: 15px 28px;
  font-size: 1.05rem;
  background-color: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(86, 130, 3, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.btn-volunteer-page-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 93, 35, 0.38);
}

.form-privacy-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Success Card when form is submitted */
.volunteer-success-banner {
  display: none;
  background: #ffffff;
  border: 2px solid var(--primary-green);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  margin-top: 20px;
}

.volunteer-success-banner.visible {
  display: block;
}

.success-icon-disc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon-disc svg {
  width: 32px;
  height: 32px;
}

/* D. Upcoming Drives / Events Section */
.upcoming-drives-section {
  padding: 85px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.upcoming-drives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.drive-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.drive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.drive-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.drive-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--light-green);
  color: var(--primary-green);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.drive-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.drive-card h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.drive-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 12px;
}

.drive-location svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.drive-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 18px;
}

.drive-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--primary-dark);
  transition: var(--transition);
}

.drive-action-link:hover {
  color: var(--primary-green);
  gap: 10px;
}

/* E. FAQ Accordion Section */
.faq-section {
  padding: 85px 0 95px;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
}

.faq-container {
  max-width: 840px;
  margin: 36px auto 0;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: var(--primary-green);
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: 0 4px 16px rgba(86, 130, 3, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: color 0.25s ease;
  gap: 16px;
}

.faq-item.active .faq-question {
  color: var(--primary-green);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--primary-green);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Responsive Rules for Get Involved Page */
@media (max-width: 900px) {
  .ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .upcoming-drives-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-page-card {
    padding: 30px 20px;
  }

  .form-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .radio-options-row {
    flex-direction: column;
  }
}

/* ==========================================================================
   Dedicated Contact Page Styles (Multi-Page Site Setup)
   ========================================================================== */

/* A. Contact Hero (~42vh, shorter functional hero) */
.contact-page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 125px 0 75px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-river.webp') center 40% / cover no-repeat;
}

/* B. Main Contact Section (Two-Column Layout) */
.contact-section,
.contact-main-section {
  padding: 70px 0 85px;
  background-color: var(--bg-cream);
  position: relative;
}

.contact-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: start;
}

/* Left Column: Contact Details Card (Light green tinted) */
.contact-details-card {
  background: var(--light-green);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.contact-card-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(86, 130, 3, 0.12);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.contact-card-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: var(--font-marathi-heading), serif;
  line-height: 1.3;
}

.contact-card-lead,
.contact-card-subtitle {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Contact Details List */
.contact-detail-list,
.contact-channels-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail-row,
.contact-channel-item {
  list-style: none !important;
  display: flex !important;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon,
.channel-icon-disc {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--primary-green);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-detail-icon svg,
.channel-icon-disc svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  fill: currentColor;
  display: block;
}

.contact-detail-text,
.channel-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-text .label {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-detail-text .val {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  line-height: 1.4;
}

.contact-detail-text .val-phone,
.contact-detail-text .val-email {
  color: var(--primary-green);
  transition: color 0.2s ease;
}

.contact-detail-text .val-phone:hover,
.contact-detail-text .val-email:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.confirm-badge {
  display: inline-block;
  background: #fff8e8;
  color: #a46f04;
  border: 1px solid #ebd9aa;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* WhatsApp Direct Chat Button */
.btn-whatsapp-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  margin-top: 8px;
  transition: var(--transition);
}

.btn-whatsapp-chat svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
  display: block;
}

.btn-whatsapp-chat:hover {
  background-color: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.38);
}

/* Social Media Channels Row */
.contact-social-wrap {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(86, 130, 3, 0.15);
}

.contact-social-wrap .social-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.social-icon-btn svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: currentColor;
  display: block;
}

.social-icon-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(86, 130, 3, 0.25);
}

/* Right Column: Contact Form Card (White Card) */
.contact-form-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--primary-green);
  border: 1px solid #d5e4c4;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.form-title {
  font-size: 1.65rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-family: var(--font-marathi-heading), serif;
  line-height: 1.25;
}

.form-subtitle {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 26px;
}

/* Form Styling & Controls */
.styled-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.styled-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.styled-contact-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.styled-contact-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: 'Sora', sans-serif;
  display: block;
}

.styled-contact-form label .required {
  color: #d9381e;
  font-weight: 700;
}

.styled-contact-form label .optional {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.styled-contact-form input[type="text"],
.styled-contact-form input[type="email"],
.styled-contact-form input[type="tel"],
.styled-contact-form select,
.styled-contact-form textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 12px 16px !important;
  border: 1.5px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  background: #ffffff !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--text-dark) !important;
  transition: all 0.25s ease !important;
  outline: none !important;
}

.styled-contact-form input[type="text"]:focus,
.styled-contact-form input[type="email"]:focus,
.styled-contact-form input[type="tel"]:focus,
.styled-contact-form select:focus,
.styled-contact-form textarea:focus {
  border-color: var(--primary-green) !important;
  box-shadow: 0 0 0 3.5px rgba(86, 130, 3, 0.18) !important;
}

.styled-contact-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5D23' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
  cursor: pointer !important;
}

.styled-contact-form textarea {
  resize: vertical !important;
  min-height: 120px !important;
  line-height: 1.5 !important;
}

.btn-submit-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background-color: var(--primary-green) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 14px rgba(86, 130, 3, 0.28) !important;
  margin-top: 6px;
  width: fit-content;
}

.btn-submit-contact:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(12, 51, 24, 0.35) !important;
}

.btn-submit-contact svg {
  width: 18px !important;
  height: 18px !important;
}

/* Success Banner State */
.contact-success-banner {
  display: none;
  background: var(--light-green);
  border: 2px solid var(--primary-green);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

.contact-success-banner.visible {
  display: block !important;
}

.contact-success-banner .success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(86, 130, 3, 0.3);
}

.contact-success-banner .success-icon svg {
  width: 28px !important;
  height: 28px !important;
}

.contact-success-banner h3 {
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-family: var(--font-marathi-heading), serif;
}

.contact-success-banner p {
  color: var(--text-dark);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.contact-success-banner .note-comment {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 10px;
  border-radius: 4px;
}

/* C. Map & Location Block */
.contact-map-section,
.map-section {
  padding: 0 0 85px;
  background-color: var(--bg-cream);
  position: relative;
}

.map-card-wrap {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.map-header-info,
.map-header-bar {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 16px;
}

.map-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--primary-green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.map-title {
  font-size: 1.35rem;
  color: var(--primary-dark);
  font-family: var(--font-marathi-heading), serif;
  margin-bottom: 4px;
}

.map-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.map-action-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.map-client-notice {
  font-size: 0.78rem;
  font-weight: 700;
  color: #a46f04;
  background: #fff8e8;
  border: 1px solid #ebd9aa;
  padding: 6px 12px;
  border-radius: 6px;
}

.map-frame-container,
.map-iframe-holder {
  width: 100%;
  height: 380px;
  position: relative;
}

.map-frame-container iframe,
.map-iframe-holder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* D. QR Code Feature Box on Contact Page */
.contact-qr-section {
  padding: 75px 0 85px;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.contact-qr-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--light-green);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow-sm);
}

.qr-glow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pulse-ring-ambient {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 12px;
  border: 2px solid var(--primary-green);
  animation: pulseGlow 2.5s infinite ease-out;
  pointer-events: none;
}

.qr-svg-large {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  padding: 8px;
  display: block;
}

.qr-info-content {
  flex: 1;
}

.qr-eyebrow {
  display: inline-block;
  background: rgba(86, 130, 3, 0.15);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.qr-heading {
  font-size: 1.55rem;
  color: var(--primary-dark);
  font-family: var(--font-marathi-heading), serif;
  margin-bottom: 8px;
}

.qr-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.qr-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qr-chip {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Responsive Rules for Contact Page */
@media (max-width: 900px) {
  .contact-grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-qr-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }

  .qr-meta-chips {
    justify-content: center;
  }

  .btn-submit-contact {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .contact-details-card,
  .contact-form-card {
    padding: 30px 20px;
  }

  .styled-contact-form .form-group-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Dedicated Initiatives Page Styles (Multi-Page Site Setup)
   ========================================================================== */

/* A. Hero */
.initiatives-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 85px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-community.webp') center 40% / cover no-repeat;
}

/* B. Initiatives Section & Alternating Rows */
.initiatives-detail-section {
  padding: 85px 0 95px;
  background-color: var(--bg-cream);
  position: relative;
}

.initiatives-rows-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.initiative-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: stretch;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.initiative-row:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(86, 130, 3, 0.35);
}

/* Alternating reversed row */
.initiative-row.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.initiative-row.reverse .initiative-image-col {
  order: 2;
}

.initiative-row.reverse .initiative-content-col {
  order: 1;
}

/* Flagship / Featured Initiative Row (Return Gift to Earth) */
.initiative-row.flagship {
  border: 2.5px solid var(--gold-bright);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf6 100%);
  box-shadow: 0 12px 36px rgba(212, 155, 20, 0.16);
  position: relative;
}

.initiative-row.flagship:hover {
  box-shadow: 0 16px 44px rgba(212, 155, 20, 0.24);
  transform: translateY(-3px);
}

/* Image Column */
.initiative-image-col {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.initiative-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.initiative-row:hover .initiative-image-col img {
  transform: scale(1.04);
}

.initiative-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(24, 34, 12, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-bright);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(239, 181, 40, 0.4);
  z-index: 2;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Content Column */
.initiative-content-col {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.initiative-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-green);
  border: 1px solid #d5e4c4;
  color: var(--primary-green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.flagship-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff8e8;
  border: 1.5px solid var(--gold);
  color: #8c6a0c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.initiative-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: var(--font-marathi-heading), serif;
  line-height: 1.25;
}

.initiative-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.5;
  margin-bottom: 16px;
}

.initiative-description {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 22px;
}

.initiative-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.initiative-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.initiative-detail-bullet {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.initiative-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Responsive Rules */
@media (max-width: 960px) {

  .initiative-row,
  .initiative-row.reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .initiative-row.reverse .initiative-image-col {
    order: 1;
  }

  .initiative-row.reverse .initiative-content-col {
    order: 2;
  }

  .initiative-image-col {
    min-height: 280px;
    max-height: 320px;
  }

  .initiative-content-col {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Focus Areas Page Styles (Multi-Page Site Setup)
   ========================================================================== */

/* A. Focus Areas Hero (~50vh) */
.focus-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 85px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-river.webp') center 35% / cover no-repeat;
}

/* C. Why These Four? Systemic Connective Section */
.why-four-section {
  padding: 85px 0 90px;
  background: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.why-four-card {
  background: linear-gradient(135deg, #f8fbf5 0%, #ffffff 100%);
  border: 2px solid #dbe8cf;
  border-radius: var(--radius-lg);
  padding: 50px 45px;
  box-shadow: 0 10px 30px rgba(86, 130, 3, 0.08);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.why-four-header {
  max-width: 780px;
  margin: 0 auto 35px;
}

.why-four-header h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: var(--primary-dark);
  font-family: var(--font-marathi-heading), serif;
  margin-bottom: 16px;
}

.why-four-header p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.system-loop-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 35px 0 40px;
}

.system-step-box {
  background: #ffffff;
  border: 1.5px solid #d5e4c4;
  border-radius: var(--radius-md);
  padding: 22px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.system-step-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.system-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.system-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.system-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.system-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.why-four-cta-wrap {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .system-loop-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-four-card {
    padding: 32px 20px;
  }
}

/* ==========================================================================
   Dedicated Gallery Page Styles & Lightbox Component
   ========================================================================== */

/* A. Gallery Page Hero (~50vh) */
.gallery-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding: 135px 0 85px;
  background: linear-gradient(135deg, rgba(11, 26, 7, 0.90) 0%, rgba(23, 50, 16, 0.88) 50%, rgba(44, 84, 32, 0.85) 100%),
    url('../assets/gallery-community.webp') center 40% / cover no-repeat;
}

/* B. Gallery Content Section */
.gallery-page-section {
  padding: 80px 0 100px;
  background-color: var(--bg-cream);
  position: relative;
}

/* Filter Pill Buttons Row */
.gallery-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 48px;
  max-width: 900px;
}

.gallery-filter-pill {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  background: #ffffff;
  color: var(--primary-dark);
  border: 1.5px solid #d5e4c4;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.gallery-filter-pill:hover {
  background: var(--light-green);
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-filter-pill.active {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 6px 18px rgba(86, 130, 3, 0.35);
  transform: translateY(-1px);
}

/* Responsive Photo Grid */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (min-width: 1280px) {
  .gallery-full-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .gallery-full-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-filter-wrap {
    gap: 8px;
    margin-bottom: 32px;
  }

  .gallery-filter-pill {
    padding: 8px 16px;
    font-size: 0.76rem;
  }
}

/* Gallery Photo Tile */
.gallery-tile {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.35s ease, filter 0.35s ease;
  aspect-ratio: 4 / 3;
}

.gallery-tile.tile-hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.gallery-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(24, 34, 12, 0.16);
  border-color: rgba(86, 130, 3, 0.4);
}

.gallery-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-tile:hover .gallery-tile-img {
  transform: scale(1.06);
}

/* Category Badge in Corner */
.gallery-tile-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(24, 34, 12, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-bright);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(239, 181, 40, 0.4);
  z-index: 3;
  pointer-events: none;
}

/* Bottom Overlay Bar with Caption */
.gallery-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(16, 32, 10, 0.94) 0%, rgba(16, 32, 10, 0.7) 70%, transparent 100%);
  color: #ffffff;
  padding: 38px 18px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
  transition: background 0.3s ease;
}

.gallery-tile:hover .gallery-tile-overlay {
  background: linear-gradient(0deg, rgba(11, 26, 7, 0.98) 0%, rgba(24, 48, 14, 0.85) 75%, transparent 100%);
}

.gallery-tile-info {
  flex: 1;
}

.gallery-tile-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 4px;
}

.gallery-tile-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-tile-sub svg {
  width: 12px;
  height: 12px;
  fill: var(--gold-bright);
  flex-shrink: 0;
}

.gallery-tile-zoom {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.gallery-tile:hover .gallery-tile-zoom {
  background: var(--gold-bright);
  color: var(--primary-dark);
  border-color: var(--gold-bright);
  transform: scale(1.1);
}

/* ==========================================================================
   Full-Screen Lightbox Component
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 6, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  position: relative;
  max-width: 1080px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap {
  position: relative;
  max-height: 75vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: #000000;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-meta-bar {
  width: 100%;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  padding: 0 8px;
}

.lightbox-meta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lightbox-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.lightbox-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.lightbox-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* Lightbox Controls */
.lightbox-close-btn {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.lightbox-close-btn:hover {
  background: var(--gold-bright);
  color: var(--primary-dark);
  border-color: var(--gold-bright);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24, 34, 12, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.lightbox-nav-btn:hover {
  background: var(--gold-bright);
  color: var(--primary-dark);
  border-color: var(--gold-bright);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -24px;
}

.lightbox-next {
  right: -24px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close-btn {
    top: -42px;
    right: 0;
  }

  .lightbox-title {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Compact Focus Areas Intro Grid (Strategic Pillars on initiatives.html)
   ========================================================================== */
.initiatives-focus-intro {
  padding: 65px 0 35px;
  background: #fbfaf5;
  position: relative;
}

.focus-pillars-header {
  margin-bottom: 34px;
}

.focus-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.focus-pillar-card {
  background: #ffffff;
  border: 1.5px solid #d5e4c4;
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.focus-pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.focus-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef6e8;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.focus-pillar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.focus-pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 991px) {
  .focus-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .focus-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .initiatives-focus-intro {
    padding: 50px 0 24px;
  }
}