/* ---------- BASE STYLES & VARIABLES ---------- */
:root {
  /* Dynamic Color Palette */
  --green: #2d5a27;
  /* Forest Green */
  --green-dark: #1e3d1a;
  --green-pale: #f1f8f0;
  --blue: #0077b6;
  /* Sky Blue */
  --gold: #ffd000;
  /* Sunlight Gold */
  --gold-dark: #e6bc00;
  --white: #ffffff;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --bg-soft: #f8f9fa;
  /* Soft Sand */
  --bg-nature: #f1f8f0;
  /* Nature Pale Green */

  /* Typography */
  --font-head: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --base-font-size: 1.05rem;
  /* Increased from default */
  --h1-size: clamp(3rem, 10vw, 5.5rem);
  --h2-size: clamp(2.2rem, 6vw, 3rem);
  --h3-size: clamp(1.5rem, 4vw, 2rem);

  /* UI Elements */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --section-padding: 3.5rem 0;
  /* Reduced from 4rem/6rem */
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.15s;
}

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

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--base-font-size);
  color: var(--text);
  line-height: 1.7;
  /* Slightly increased for readability */
  background-color: var(--white);
  overflow-x: hidden;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
}

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

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- REUSABLE COMPONENTS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(45, 90, 39, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--green);
}

.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-gold-solid:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--green);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--green);
  cursor: pointer;
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.text-green {
  color: var(--green);
}

.text-gold {
  color: var(--gold-dark);
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ---------- NAVBAR (LOGO LEFT & MENU RIGHT) ---------- */

/* --- Navbar entrance animation keyframes --- */
@keyframes nav-slide-down {
  0% {
    opacity: 0;
    transform: translate(-50%, -150%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes nav-logo-fade {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

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

@keyframes nav-link-fade {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }

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

@keyframes nav-btn-pop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }

  60% {
    opacity: 1;
    transform: scale(1.08) translateY(0);
  }

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

.navbar {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 1rem;
  /* Entrance animation */
  animation: nav-slide-down 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  top: 25px; /* Same as default */
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  transition: height 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled .nav-container {
  height: 115px;
}

.nav-brand {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  margin-left: -2.5rem; /* Pull logo to the extreme left corner */
  /* margin-right removed so flexbox can calculate naturally */
  /* Logo entrance animation */
  animation: nav-logo-fade 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.logo-img-main, .logo-img {
  height: 200px; /* Actual height increase instead of transform */
  max-height: none !important;
  width: auto;
  object-fit: contain;
  transition: all 0.35s ease;
  image-rendering: -webkit-optimize-contrast;
}

.navbar.scrolled .logo-img-main, .navbar.scrolled .logo-img {
  height: 175px; /* Actual height increase instead of transform */
}

.nav-tagline {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 1400px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 1250px) {
  .nav-links {
    gap: 1.25rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600; /* Regular weight; only Plant a Tree is bold */
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  /* Staggered entrance — nth-child delays applied in animation below */
  opacity: 0;
  animation: nav-link-fade 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered delays for each nav link */
.nav-links .nav-link:nth-child(1) {
  animation-delay: 0.30s;
}

.nav-links .nav-link:nth-child(2) {
  animation-delay: 0.38s;
}

.nav-links .nav-link:nth-child(3) {
  animation-delay: 0.46s;
}

.nav-links .nav-link:nth-child(4) {
  animation-delay: 0.54s;
}

.nav-links .nav-link:nth-child(5) {
  animation-delay: 0.62s;
}

.nav-links .nav-link:nth-child(6) {
  animation-delay: 0.70s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #5aad52);
  transition: width 0.35s ease, left 0.35s ease;
  border-radius: 2px;
}

/* Hover State — underline expands from centre, background glow */
.nav-link:hover {
  color: var(--green) !important;
  background: rgba(45, 90, 39, 0.06);
}

.nav-link:hover::after {
  width: 80%;
  left: 10%;
}

/* Active State */
.nav-link.active {
  color: var(--green) !important;
  background: rgba(45, 90, 39, 0.04);
}

.nav-link.active::after {
  width: 80%;
  left: 10%;
}

/* --- Dropdown Menu --- */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-align: left;
}

.dropdown-item:hover {
  background: var(--green-pale);
  color: var(--green);
  padding-left: 2rem;
}

/* --- Refined Donate CTA --- */
.btn-donate-nav {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 0.8rem 2.2rem !important;
  border-radius: 50px;
  font-family: var(--font-body) !important;
  font-weight: 900 !important;
  font-size: 1.05rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  -webkit-text-stroke: 0.5px currentColor;
  box-shadow: 0 6px 22px rgba(255, 208, 0, 0.4) !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  width: fit-content !important;
  height: auto !important;
  /* Pop-in entrance animation */
  opacity: 0;
  animation: nav-btn-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards;
  position: relative;
  overflow: hidden;
}

.btn-donate-nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-donate-nav:hover::after {
  left: 150%;
}

.btn-donate-nav:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 14px 35px rgba(255, 208, 0, 0.6) !important;
}

.btn-donate-nav:active {
  transform: translateY(0) scale(0.98) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  grid-column: 3;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Navbar media queries moved to bottom for better maintenance */

/* ---------- HERO (WITH BACKGROUND IMAGE) ---------- */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  /* Better for this specific image */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(15, 18, 15, 0.7) 0%,
      rgba(15, 18, 15, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 1000px;
  padding: 0 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border: none !important;
  text-align: center;
  margin-top: 0 !important;
  margin-bottom: 2rem;
}

#home .hero-title, 
#home .hero-title *,
#home .hero-mission-desc {
  background-color: transparent !important;
  background-image: none !important;
}

#home {
  background-image: url('../images/hero_home_v3.jpg') !important;
  background-size: cover;
  background-position: center;
}

#home.standard-hero::before {
  display: none !important;
}

.hero-main-name {
  display: block !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #FFFFFF !important;
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Multi-layered shadow for extreme readability on bright/busy backgrounds */
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-sub-name {
  display: block !important;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: #D4EDC3 !important; /* Fresh Eco-Green */
  margin-top: 0.5rem !important;
  padding-left: 0.5em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-mission-desc {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #F8F6F1 !important; /* Premium Off-White */
  max-width: 950px;
  margin: 3rem auto 0;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: 0.015em;
}

.hero-highlight-text {
  color: #CFE8B0 !important;
  font-weight: 600;
}

.hero-title-accent {
  color: var(--gold);
  text-shadow: none;
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: #E9F5E3 !important; /* Soft Nature Mint */
  max-width: 850px;
  margin: 0 auto 3.5rem;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-donate-hero {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg,
      #ffd000,
      #ff8c00);
  /* Attractive Gold-to-Orange */
  color: var(--white);
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-donate-hero:hover {
  background: linear-gradient(45deg, #ff8c00, #ffd000);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.5);
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  opacity: 0.8;
  animation: fadeIn 2s ease-in-out;
}

.scroll-indicator p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.scroll-indicator i {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--white);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes bounce {

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

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 0.8;
    transform: translate(-50%, 0);
  }
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--green);
}

/* ---------- MODERN HERO V2 (GLASSMORPHISM) ---------- */
.hero-v2 {
  position: relative;
  min-height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content-inner {
  max-width: 1000px;
  text-align: center;
  position: relative;
}

.hero-tagline-new {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-join-hero {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--green-dark);
  padding: 1.5rem 5rem;
  /* Larger padding */
  border-radius: 50px;
  font-weight: 950;
  /* Heavier font */
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow:
    0 10px 40px rgba(255, 208, 0, 0.5),
    0 0 0 0 rgba(255, 208, 0, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  animation: pulse-gold 2s infinite;
  /* Attention-grabbing pulse */
}

.btn-join-hero:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
  animation: none;
}

@keyframes pulse-gold {
  0% {
    box-shadow:
      0 10px 40px rgba(255, 208, 0, 0.5),
      0 0 0 0 rgba(255, 208, 0, 0.4);
  }

  70% {
    box-shadow:
      0 10px 40px rgba(255, 208, 0, 0.5),
      0 0 0 20px rgba(255, 208, 0, 0);
  }

  100% {
    box-shadow:
      0 10px 40px rgba(255, 208, 0, 0.5),
      0 0 0 0 rgba(255, 208, 0, 0);
  }
}

.hero-content-v2 {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

/* Glass card styles removed as per request */

.hero-v2 .hero-title {
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-v2 .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-v2 {
    padding: 0 2rem;
  }

  .hero-v2 {
    min-height: 90vh;
  }
}


/* ---------- STORY SECTION ---------- */
.story-section {
  padding: var(--section-padding);
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.story-badge-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-badge-float i {
  font-size: 2.5rem;
  color: var(--green);
}

.story-badge-float span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--dark);
}

.story-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ---------- MODERN SOLUTION SECTION ---------- */
.solution-section {
  padding: var(--section-padding);
  background: radial-gradient(circle at top left, #f9fbf9, #ffffff);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-16.569 13.431-30 30-30v60c-16.569 0-30-13.431-30-30zM0 30C0 13.431 13.431 0 30 0v60C13.431 60 0 46.569 0 30z' fill='%232d5a27' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.solution-card {
  grid-column: span 2;
  background: var(--white);
  padding: 2.5rem;
  /* Slightly more compact */
  border-radius: 30px;
  border: 1px solid rgba(45, 90, 39, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  text-align: left;
  display: flex;
  /* Side-by-side */
  align-items: flex-start;
  gap: 1.5rem;
}

.solution-card:last-child {
  grid-column: 2 / span 2;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(45, 90, 39, 0.1);
  border-color: rgba(45, 90, 39, 0.2);
}

.solution-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(45, 90, 39, 0.1);
  z-index: -1;
  opacity: 1;
}

.solution-icon-box {
  width: 64px;
  /* Smaller as per reference */
  height: 64px;
  flex-shrink: 0;
  /* Prevent shrinking */
  background: var(--green-pale);
  color: var(--green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0;
  /* Removed for horizontal layout */
  transition: var(--transition);
}

.solution-card:hover .solution-icon-box {
  background: var(--green);
  color: var(--white);
  transform: rotate(5deg) scale(1.1);
}

.solution-card h3 {
  font-size: 1.7rem;
  /* Adjusted for better horizontal fit */
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  line-height: 1.25;
  font-weight: 800;
}

.solution-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.solution-closing {
  margin-top: 5rem;
  text-align: center;
  padding: 2.5rem;
  background: var(--green-pale);
  border-radius: 20px;
  border-left: 8px solid var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* ---------- IMPACT CARDS (HORIZONTAL) ---------- */
.impact-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.impact-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.impact-card-content {
  flex: 1;
}

.impact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.2;
}

.impact-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .impact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .impact-icon-box {
    margin-bottom: 1.5rem;
  }
}

.solution-closing p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin: 0;
  font-weight: 700;
}

@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-card {
    grid-column: span 1;
    padding: 2.5rem 2rem;
  }

  .solution-card:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .solution-card {
    flex-direction: column;
    /* Stack on mobile */
    gap: 1rem;
  }
}

/* ---------- INITIATIVES SECTION ---------- */
.initiatives-section {
  padding: 3rem 0 0;
  background: var(--white);
  position: relative;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.initiative-card {
  background: var(--bg-soft);
  padding: 4rem 3rem;
  border-radius: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.initiative-card:hover {
  background: var(--white);
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.initiative-icon {
  width: 90px;
  height: 90px;
  background: var(--white);
  color: var(--green);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.initiative-card:hover .initiative-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.initiative-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 800;
}

.initiative-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .initiatives-section {
    padding: 6rem 0;
  }
  
  .initiatives-grid {
    grid-template-columns: 1fr;
  }
  
  .initiative-card {
    padding: 3rem 2rem;
  }
}

/* ---------- IMPACT MAP ---------- */
.map-section {
  padding: var(--section-padding);
}

.map-counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.map-counter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.map-counter:last-child {
  border-right: none;
}

.map-counter i {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.map-counter span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--dark);
}

.map-counter small {
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-pins-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
}

.map-pin-info {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.map-pin-info i {
  color: var(--green);
}

/* ---------- WHY SECTION ---------- */
.why-section {
  padding: 8rem 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.why-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr; 
  gap: 2.5rem;
  align-items: center;
}

.why-text-side {
  text-align: left;
}

.why-intro-line {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.25rem !important;
  margin-bottom: 2rem !important;
  display: block;
}

.why-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.stat-card {
  background: var(--white);
  padding: 1.8rem 2.2rem;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  width: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(45, 90, 39, 0.08);
  border-color: var(--green-pale);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-info {
  flex-grow: 1;
}

.stat-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 800;
}

.stat-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.why-image-side {
  position: relative;
  z-index: 1;
  display: flex;
}

.why-img-modern {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: block;
}

.why-img-modern:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(45, 90, 39, 0.12);
}

.impact-img-full {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1200px) {
  .impact-img-full {
    width: 100%;
    margin-right: 0;
    border-radius: 30px;
  }
}

@media (max-width: 992px) {
  .why-section {
    background: #ffffff;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-img-modern {
    width: 100%;
    height: auto;
    min-height: 400px;
    aspect-ratio: 4 / 3;
  }

  .why-image {
    order: -1;
    justify-content: center;
  }

  .image-experience-tag {
    left: 1rem;
    top: 1rem;
  }
}

.why-solution {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.solution-icon.green {
  background: #e8f5e9;
  color: var(--green);
}

.solution-icon.blue {
  background: #e0f2f1;
  color: var(--blue);
}

.solution-icon.gold {
  background: #fffde7;
  color: var(--gold-dark);
}

.solution-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.solution-item p {
  color: var(--text-light);
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
  padding: var(--section-padding);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.g-tall {
  grid-row: span 2;
}

.g-wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- MOVEMENT CARDS ---------- */
.involve-section {
  padding: 10rem 0;
  background: var(--white);
}

.movement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.movement-card {
  background: var(--bg-soft);
  padding: 3.5rem 2.5rem;
  border-radius: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.movement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.05) 0%, rgba(255, 208, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.movement-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
  background: var(--white);
  border-color: var(--green-pale);
}

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

.movement-card-icon {
  width: 75px;
  height: 75px;
  background: var(--white);
  color: var(--green);
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.movement-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 800;
}

.movement-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.movement-card-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.movement-card .btn-primary {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .movement-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 2rem;
  }
}




/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  padding: 4rem 0;
  background: #ffffff;
}

.newsletter-box {
  background: var(--green);
  border-radius: 32px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-box p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 1.1rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.newsletter-note {
  margin-top: 3rem;
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  word-spacing: 0.15em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-soft);
  color: var(--text);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  background: transparent;
}

.footer-logo img {
  height: 250px;
  width: auto;
  max-width: 450px;
  background: transparent;
  display: block;
}

.footer-logo-tag {
  font-size: 0.75rem;
  color: var(--green);
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--green);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.social-icon:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-3px);
}

.footer-links-group h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.footer-links-group li {
  margin-bottom: 0.9rem;
}

.footer-links-group a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-links-group a:hover {
  color: var(--green);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  gap: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--green);
  margin-top: 0.2rem;
}

.footer-hashtag {
  margin-top: 2rem;
  padding: 0.6rem 1.2rem;
  background: var(--green-pale);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
}

.footer-bottom {
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* ---------- FLOATING ACTION BUTTONS ---------- */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2000;
  align-items: flex-end;
}

.float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--green);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 0.9rem;
  /* Soft light green glowing shadow */
  box-shadow: 0 0 15px rgba(90, 173, 82, 0.4), 0 0 30px rgba(90, 173, 82, 0.2);
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  /* Smooth breathing animation */
  animation: float-breathing 3s ease-in-out infinite;
}

/* When buttons are in a stack, let the container handle positioning */
.fab-container .float-btn {
  position: relative;
  bottom: auto;
  right: auto;
}

.float-btn:hover {
  /* Pause breathing to allow hover transform to take over smoothly */
  animation-play-state: paused;
  transform: scale(1.08);
  background: var(--green-dark);
  /* Stronger glow on hover */
  box-shadow: 0 0 25px rgba(90, 173, 82, 0.7), 0 0 45px rgba(90, 173, 82, 0.4);
}

.float-btn:active {
  /* Subtle press effect */
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(90, 173, 82, 0.3);
}

@keyframes float-breathing {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(90, 173, 82, 0.4), 0 0 30px rgba(90, 173, 82, 0.2);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 22px rgba(90, 173, 82, 0.6), 0 0 40px rgba(90, 173, 82, 0.35);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(90, 173, 82, 0.4), 0 0 30px rgba(90, 173, 82, 0.2);
  }
}

/* ---------- FORM PAGES ---------- */
.page-header {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern.png");
  opacity: 0.05;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.page-header .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  margin-bottom: 8rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.form-input {
  padding: 1.1rem 1.4rem;
  border: 2px solid #cbd5e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  font-size: 1rem;
  color: var(--text);
  background: #fdfdfd;
}

.form-input:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

.form-full {
  grid-column: span 2;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  justify-content: center;
}

/* ---------- GET INVOLVED CARDS ---------- */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.action-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.action-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.action-card-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.action-card-content .btn-primary {
  margin-top: auto;
}

/* Deployment trigger comment */

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--green);
  opacity: 0.1;
  transition: var(--transition);
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 90, 39, 0.2);
}

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

.action-icon {
  font-size: 2.5rem;
  color: var(--green);
}

.action-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.action-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 1300px) {

  .story-grid,
  .why-grid {
    gap: 3rem;
  }

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

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

  .nav-links {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .nav-container {
    gap: 1rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 1150px) {
  .hamburger {
    display: block;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 0 2rem;
  }

  .nav-wrapper-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-links {
    display: none;
    grid-column: unset;
    justify-self: unset;
    flex-direction: column;
    position: fixed;
    top: 175px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 3rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 2rem;
    text-align: center;
    /* Disable entrance animations inside mobile menu */
    animation: none;
  }

  .nav-links .nav-link {
    animation: none;
    opacity: 1;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
  }

  .nav-item-dropdown.open .dropdown-menu {
    display: block;
  }

  .logo-img-main, .logo-img {
    height: 100px;
  }

  .navbar.scrolled .logo-img-main, .navbar.scrolled .logo-img {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .logo-img-main, .logo-img {
    height: 100px;
  }

  .navbar.scrolled .logo-img-main, .navbar.scrolled .logo-img {
    height: 100px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: left;
  }

  .story-badge-float {
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    padding: 1.5rem;
    gap: 0.75rem;
    max-width: 220px;
  }

  .story-badge-float i {
    font-size: 2rem;
  }

  .story-badge-float span {
    font-size: 0.9rem;
  }

  .story-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .pillars-grid,
  .involve-grid,
  .opp-grid,
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .g-wide {
    grid-column: span 1;
  }

  .map-counter-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .map-counter {
    border-right: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-full {
    grid-column: span 1;
  }

  .form-section .container {
    padding: 0 1rem;
  }

  .form-card {
    padding: 2.5rem 1.25rem;
    margin-bottom: 4rem;
  }

  .footer-top {
    padding: 4rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-logo img {
    height: 80px;
  }

  .page-header,
  .join-hero {
    padding: 9rem 1.5rem 6rem;
  }
}

/* ---------- EVENTS & GALLERY ENHANCEMENTS ---------- */
.event-sub-section {
  padding-top: 4rem;
  border-top: 1px solid #eee;
  margin-top: 4rem;
}

.event-sub-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--green);
  font-family: var(--font-head);
}

.event-sub-section .event-desc {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.event-sub-section ul {
  list-style: none;
  padding-left: 0;
}

.event-sub-section ul li {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.event-sub-section ul li i {
  color: var(--gold);
  margin-top: 0.3rem;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-section {
  background: var(--white);
  padding: 8rem 0;
  border-top: 1px solid #eee;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.8rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: #fafafa;
  padding: 0 2.5rem;
}

.faq-answer p {
  padding-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0.5rem 2.5rem 1.5rem;
}

.faq-icon {
  transition: transform 0.3s;
  font-size: 0.9rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ---------- IMPACT STORIES ---------- */
.stories-section {
  padding: 8rem 0;
  background: var(--bg-soft);
  border-top: 1px solid #eee;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.story-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: left;
  border-bottom: 4px solid transparent;
}

.story-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 8rem;
  color: rgba(45, 90, 39, 0.05);
  font-family: serif;
  line-height: 1;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green);
}

.story-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  position: relative;
  font-family: var(--font-head);
  font-weight: 900;
}

.story-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
  position: relative;
  margin: 0;
}

.story-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(45, 90, 39, 0.1);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .story-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .logo-img-main, .logo-img {
    height: 100px;
  }

  .navbar.scrolled .logo-img-main, .navbar.scrolled .logo-img {
    height: 100px;
  }
}

/* ---------- LOGO BAR (above hero) ---------- */
.logo-bar {
  background: #ffffff;
  padding-top: 72px;
  /* clears fixed navbar */
  border-bottom: 1px solid rgba(45, 90, 39, 0.08);
  position: relative;
  z-index: 10;
}

.logo-bar-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-bar-img {
  height: 130px;
  width: auto;
  display: block;
  background: transparent;
  transition: var(--transition);
}

.logo-bar-img:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .logo-bar-inner {
    padding: 1rem 2rem;
  }

  .logo-bar-img {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .logo-bar {
    padding-top: 68px;
  }

  .logo-bar-inner {
    padding: 0.75rem 1.5rem;
  }

  .logo-bar-img {
    height: 75px;
  }
}

@media (max-width: 480px) {
  .logo-bar-img {
    height: 60px;
  }
}

/* ---------- STANDARD HERO (USED ACROSS ALL PAGES) ---------- */

.standard-hero,
.detail-hero,
.page-header {
  position: relative;
  padding: 9rem 0 7rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.standard-hero.full-screen,
.detail-hero.full-screen,
.page-header.full-screen {
  min-height: 100vh;
}

.standard-hero::before,
.detail-hero::before,
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.standard-hero .container,
.detail-hero .container,
.page-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.standard-hero h1,
.standard-hero .hero-title,
.detail-hero h1,
.detail-hero .hero-title,
.page-header h1,
.page-header .hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
  font-weight: 800;
  color: #FFFFFF !important;
  text-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.2);
}

.standard-hero p,
.standard-hero .hero-subtitle,
.detail-hero p,
.detail-hero .hero-subtitle,
.page-header p,
.page-header .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #E9F5E3 !important;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}
  line-height: 1.6;
}

@media (max-width: 768px) {

  .standard-hero,
  .detail-hero,
  .page-header {
    padding: 8rem 0 5rem;
    min-height: 60vh;
  }

  .standard-hero.full-screen,
  .detail-hero.full-screen,
  .page-header.full-screen {
    min-height: 100vh;
  }
}

/* ---------- CONSISTENT HERO FOR CARD INNER PAGES ---------- */
.consistent-hero {
  position: relative;
  width: 100%;
  padding: 12rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 80vh;
}

.consistent-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* ---------- ABOUT US ENHANCEMENTS ---------- */
.about-section {
  padding: 10rem 0; /* Generous top and bottom padding */
  background: #FAF8F5; /* Soft off-white / light cream background */
  position: relative;
  overflow: hidden;
}

/* Subtle earthy green accent */
.about-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-intro-modern {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 5rem;
  align-items: center; /* Align vertically centered */
  margin-bottom: 7rem;
}

.about-modern-content {
  max-width: 700px; /* Increased to cover empty whitespace and keep content wide */
}

.about-modern-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--green-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-modern-title span {
  color: var(--green);
  display: block;
}

.about-modern-content p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #555555; /* Softer paragraph color */
  margin-bottom: 1.8rem;
}

.about-modern-content p:last-child {
  margin-bottom: 0;
}

.text-highlight-green {
  color: var(--green);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.text-highlight-green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 4px;
  background-color: rgba(45, 90, 39, 0.08);
  z-index: -1;
}

.text-highlight-gold {
  color: #b58d10; /* Warm earthy gold */
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.text-highlight-gold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 4px;
  background-color: rgba(181, 141, 16, 0.08);
  z-index: -1;
}

/* Right Side: Immersive Image Container */
.about-modern-image {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.about-immersive-img-container {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 4 / 3;
  border-radius: 30px; /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(45, 90, 39, 0.06); /* Soft shadow */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
  background: #f1f6ec; /* Very light earthy green */
}

.about-immersive-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-immersive-placeholder .placeholder-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: rgba(45, 90, 39, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Soft hover zoom effect on image placeholder */
.about-immersive-img-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(45, 90, 39, 0.12);
}

.about-immersive-img-container:hover .about-immersive-placeholder {
  transform: scale(1.05); /* Gentle hover scale/zoom */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-intro-modern {
    grid-template-columns: 1fr; /* tablet stacked */
    gap: 5rem;
  }
  
  .about-modern-content {
    max-width: 100%;
    text-align: center;
  }
  
  .about-modern-title span {
    display: inline-block;
  }
  
  .about-modern-image {
    justify-content: center;
  }
  
  .about-immersive-img-container {
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }
  
  .about-intro-modern {
    gap: 4rem;
  }
  
  .about-modern-title {
    font-size: 2.2rem;
  }
  
  .about-immersive-img-container {
    border-radius: 20px;
  }
}

.about-mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.mvp-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.mvp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.mvp-icon {
  width: 80px;
  height: 80px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.mvp-card:hover .mvp-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(360deg);
}

.mvp-info h4 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.mvp-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.about-values-section {
  text-align: center;
  margin-bottom: 6rem;
}

.about-values-section h3 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 3rem;
  font-weight: 800;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  border-color: var(--green);
  color: var(--green);
  transform: scale(1.05);
}

.value-card i {
  color: var(--green);
  font-size: 1.2rem;
}

.about-team-section {
  margin-top: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.profile-card {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  background: var(--bg-soft);
  color: var(--green);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid var(--green-pale);
}

.profile-header h3 {
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 800;
}

.profile-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

@media (max-width: 1100px) {
  .about-mvp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-content-card {
    padding: 2.5rem;
  }
  
  .about-mvp-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-card {
    padding: 2.5rem;
  }
}

.consistent-hero .container {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.consistent-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--white);
  font-weight: 900;
  margin-top: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .consistent-hero {
    padding: 8rem 0 5rem;
    min-height: 40vh;
  }
}


/* ---------- OUR MISSION SECTION ---------- */
.mission-intro-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
  position: relative;
}

.mission-icon {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 1.2rem;
  opacity: 0.9;
  animation: leaf-float 3s ease-in-out infinite;
}

@keyframes leaf-float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

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

.mission-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 900px;
  gap: 4rem;
  align-items: center;
}

.mission-text-side {
  text-align: left;
}

.mission-content {
  max-width: 100%;
}

.mission-image-side {
  position: relative;
  z-index: 1;
}

.mission-img-modern {
  width: 900px;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  display: block;
}

.mission-img-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(45, 90, 39, 0.15);
}

.mission-intro-section h2 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  /* Slightly larger */
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2.5rem;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  /* Subtle letter spacing */
  text-transform: capitalize;
  line-height: 1.1;
}

.mission-intro-section p {
  font-size: clamp(1.15rem, 1.3vw, 1.25rem);
  /* Increased paragraph font size */
  color: var(--text);
  line-height: 1.75;
  /* Proper line height (1.6-1.8) */
  margin-bottom: 1.8rem;
  /* Increased spacing for professional appearance */
}

.mission-intro-line {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.35rem !important;
  margin-bottom: 1.8rem !important;
  display: block;
}

.mission-highlight {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  /* Bigger than body text */
  font-weight: 900;
  /* Bold */
  color: var(--green);
  /* Accent color */
  margin-top: 4rem;
  /* Spacing above */
  font-family: var(--font-head);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .mission-grid {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .mission-intro-section {
    text-align: center;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .mission-img-modern {
    width: 100%;
    height: auto;
    aspect-ratio: 820 / 600;
  }

  .mission-text-side {
    text-align: center;
  }

  .mission-icon {
    margin: 0 auto 1.2rem;
  }

  .mission-image-side {
    order: 2;
    /* Image below text on mobile */
  }

  .mission-highlight {
    margin-top: 2.5rem;
  }
}

/* ---------- THE GROWING CRISIS SECTION ---------- */
.crisis-section {
  padding: 6rem 0 3rem;
  background-color: #fcfcfc;
}

.crisis-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.crisis-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--dark);
  line-height: 1.1;
  font-weight: 800;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.crisis-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crisis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(45, 90, 39, 0.1);
}

.crisis-icon {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.crisis-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.crisis-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .crisis-section {
    padding: 4rem 0;
  }

  .crisis-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ---------- GLOBAL INTERACTIVE ENHANCEMENTS ---------- */

/* Buttons: Slight zoom-in + soft shadow glow */
.btn-primary,
.btn-secondary,
.btn-gold-solid,
.btn-donate-nav,
.btn-donate-hero,
.btn-expand-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-gold-solid:hover,
.btn-donate-nav:hover,
.btn-donate-hero:hover,
.btn-expand-card:hover {
  transform: scale(1.05) translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(45, 90, 39, 0.25) !important;
}

/* Specific glow for gold buttons */
.btn-gold-solid:hover,
.btn-donate-nav:hover,
.btn-donate-hero:hover {
  box-shadow: 0 10px 25px rgba(255, 208, 0, 0.4) !important;
}

/* Cards: Light lift + shadow + subtle color highlight */
.opp-card,
.opp-detail-card,
.crisis-card,
.solution-card,
.impact-card,
.role-card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.opp-card:hover,
.opp-detail-card:hover,
.crisis-card:hover,
.solution-card:hover,
.impact-card:hover,
.role-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  background-color: var(--green-pale) !important;
  border-color: rgba(45, 90, 39, 0.1) !important;
}

/* Navbar Links soft glow */
.nav-link:hover {
  text-shadow: 0 0 10px rgba(45, 90, 39, 0.2);
}



/* --- Enhanced Opportunity Cards --- */
.opp-grid {
  align-items: center;
}

.opp-card.highlighted {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--green-pale);
}

.opp-card {
  height: 450px;
  justify-content: flex-start;
}

.opp-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.opp-card.highlighted:hover {
  transform: translateY(-15px) scale(1.07);
}

/* Light effect sweep */
.opp-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 5;
}

.opp-card:hover::after {
  opacity: 1;
  animation: sweep 3s infinite linear;
}

@keyframes sweep {
  0% {
    transform: translate(-20%, -20%);
  }

  50% {
    transform: translate(20%, 20%);
  }

  100% {
    transform: translate(-20%, -20%);
  }
}

/* Content visibility toggle */
.card-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 1.5rem;
}

.opp-card:hover .card-details {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
}

.opp-card .btn-primary {
  margin-top: auto;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

/* Image overlay on hover */
.opp-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 90, 39, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.opp-card:hover .opp-card-img::before {
  opacity: 1;
}

/* Mobile stacking */
@media (max-width: 992px) {
  .opp-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .opp-card.highlighted {
    transform: scale(1);
  }

  .opp-card {
    height: auto;
    min-height: 400px;
  }

  .card-details {
    max-height: none;
    opacity: 1;
    margin-top: 1rem;
    padding-bottom: 2rem;
  }
}

.why-subtitle {
  margin-bottom: 2.5rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* --- Timeline Layout for Moments of Impact --- */
.impact-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.impact-timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--green-pale);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 1rem 3rem;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--green);
  top: 1.5rem;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
  text-align: left;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--white);
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.timeline-item:hover::after {
  background-color: var(--green);
  transform: scale(1.2);
}

.timeline-icon {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .impact-timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    text-align: left;
  }

  .timeline-item::after {
    left: 21px;
  }

  .timeline-right {
    left: 0%;
  }
}
/* ---------- GET INVOLVED DETAILED SECTION ---------- */
.get-involved-detailed-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.get-involved-detailed-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(45, 90, 39, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(255, 208, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Zigzag Layout for Get Involved */
.gi-zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.gi-zigzag-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.gi-zigzag-row.gi-zigzag-reverse {
  flex-direction: row-reverse;
}

.gi-zigzag-media {
  flex: 1.1;
  display: flex;
  justify-content: center;
}

.gi-zigzag-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gi-zigzag-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-width: 620px; /* Increased from 550px to cover more whitespace on wide screens */
  background: #fdfbf7; /* soft light cream */
  border: 1px dashed rgba(45, 90, 39, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(45, 90, 39, 0.4);
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.gi-zigzag-placeholder:hover {
  border-color: var(--green);
  background: #f1f8f0; /* pale green on hover */
  color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gi-zigzag-content h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font-head);
}

.gi-zigzag-content p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.05rem;
}

/* Centered highlight box at the bottom */
.gi-bottom-highlight {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.gi-highlight-box {
  background: var(--bg-nature);
  padding: 3rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.05);
  border: 1px solid rgba(45, 90, 39, 0.1);
  text-align: left;
}

.gi-highlight-box h4 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
  font-weight: 800;
}

.gi-support-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gi-support-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
}

.gi-support-list li i {
  color: var(--green);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.gi-closing-statement {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-align: center;
  margin-top: 3rem;
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .gi-zigzag-row {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .gi-zigzag-row, 
  .gi-zigzag-row.gi-zigzag-reverse {
    flex-direction: column !important; /* image placeholder on top, content below */
    gap: 2rem;
  }

  .gi-zigzag-media, 
  .gi-zigzag-content {
    flex: none;
    width: 100%;
  }

  .gi-zigzag-content {
    text-align: center;
  }

  .gi-zigzag-placeholder {
    aspect-ratio: 16 / 9;
  }

  .gi-closing-statement {
    font-size: 1.4rem;
  }
}

.gi-impact-box {
  margin-top: 6rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 5rem;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gi-impact-box::after {
  content: "\f1bb";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 15rem;
  opacity: 0.05;
  color: var(--white);
}

.gi-impact-box h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.gi-impact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  margin-bottom: 3rem;
}

.gi-impact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}

.gi-impact-list li i {
  color: var(--gold);
  font-size: 1.25rem;
}

.gi-closing-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-family: var(--font-head);
  font-weight: 600;
  color: #d4edc3;
  opacity: 0.9;
}

.gi-cta-section {
  margin-top: 6rem;
  text-align: center;
  padding: 4rem;
  background: var(--bg-soft);
  border-radius: 30px;
}

.gi-cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}

.gi-cta-section p {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.gi-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gi {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-volunteer {
  background: var(--green);
  color: var(--white);
}

.btn-plant {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

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

.btn-gi:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: white;
}

@media (max-width: 768px) {
  .gi-impact-box {
    padding: 3rem 2rem;
  }
  
  .gi-impact-list li {
    font-size: 1rem;
  }
  
  .gi-cta-buttons {
    flex-direction: column;
  }
  
  .btn-gi {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- ABOUT PAGE STYLES (INTEGRATED) ---------- */
.about-section {
  padding: var(--section-padding);
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45, 90, 39, 0.12);
  border-color: var(--green-pale);
  background: #fafafa;
}

.card-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: 24px 24px 0 0;
}

.card-icon-badge {
  position: absolute;
  top: 210px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
  z-index: 5;
}

.card-body {
  padding: 3rem 2.5rem 3.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 800;
}

.service-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 auto 2.5rem;
  flex-grow: 1;
  max-width: 400px;
  text-align: center;
}

.learn-more {
  font-weight: 800;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  padding: 0.8rem 2rem;
  background: var(--green-pale);
  border-radius: 50px;
}

.service-card:hover .learn-more {
  background: var(--green);
  color: var(--white);
  gap: 1.2rem;
}

.content-wide {
  max-width: 900px;
  margin: 5rem auto;
  text-align: center;
}

.diff-heading {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.diff-text {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.vision-accent-box {
  background: var(--bg-soft);
  padding: 4rem 3rem;
  border-radius: 30px;
  margin-top: 4rem;
}

.vision-quote {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  font-style: italic;
  margin: 2.5rem 0;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 3rem 2rem;
  }
}
/* ---------- REDESIGNED FOUNDER & TEAM SECTIONS (PREMIUM) ---------- */

/* --- Enhanced Custom Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Redesigned Storytelling Founder Spotlight Section */
.founder-spotlight-modern {
  padding: 10rem 0;
  background-color: #FAF8F5; /* Warm cream / earth tone */
  position: relative;
  overflow: hidden;
}

.founder-spotlight-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(45, 90, 39, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.founder-story-wrapper {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 7rem;
  align-items: center; /* Vertically centered */
}

/* LEFT SIDE: Image Frame styling */
.founder-story-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.founder-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(45, 90, 39, 0.05);
  background-color: var(--white);
  border: 1px solid rgba(45, 90, 39, 0.05);
  transition: transform 0.4s ease;
}

.founder-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.founder-img-frame:hover img {
  transform: scale(1.05); /* Slight hover zoom */
}

/* Placeholder Styling for Empty State */
.founder-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(45, 90, 39, 0.02);
  border: 2px dashed rgba(45, 90, 39, 0.15);
  border-radius: 24px;
  color: var(--green-pale);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.founder-img-frame:hover .founder-img-placeholder {
  background-color: rgba(45, 90, 39, 0.05);
  border-color: rgba(45, 90, 39, 0.3);
  color: var(--green);
}

/* RIGHT SIDE: Text content styling */
.founder-story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-story-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--green-pale);
}

.founder-story-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.founder-story-heading span {
  color: var(--green);
}

.founder-story-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.founder-story-nick {
  color: var(--gold-dark);
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-head);
}

.founder-story-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-story-text p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.founder-story-text p:last-child {
  margin-bottom: 0;
}

/* Quote styling */
.founder-story-quote {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background-color: var(--white);
  border-left: 5px solid var(--green);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.02);
  position: relative;
}

.founder-story-quote i {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 3rem;
  color: rgba(45, 90, 39, 0.05);
  pointer-events: none;
}

.founder-story-quote p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .founder-story-wrapper {
    gap: 4rem;
  }
}

@media (max-width: 992px) {
  .founder-spotlight-modern {
    padding: 7rem 0;
  }

  .founder-story-wrapper {
    grid-template-columns: 1fr; /* Stack layout */
    gap: 4rem;
  }

  .founder-story-image {
    order: 1; /* Image first on mobile/tablet */
  }

  .founder-story-content {
    order: 2;
  }

  .founder-img-frame {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .founder-spotlight-modern {
    padding: 6rem 0;
  }

  .founder-story-heading {
    font-size: 2rem;
  }

  .founder-story-name {
    font-size: 1.5rem;
  }

  .founder-story-role {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .founder-story-quote {
    padding: 1.5rem 1.8rem;
    margin-top: 2rem;
  }
  
  .founder-story-quote p {
    font-size: 1.05rem;
  }
}

/* --- Goal Showcase (Premium Glassmorphism Cards) --- */
.goal-showcase {
  padding: 0 0 2rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.goal-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(45, 90, 39, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* Animated connecting line for desktop */
@media (min-width: 1200px) {
  .goal-grid::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--green), transparent);
    opacity: 0.1;
    z-index: 0;
  }
}

.goal-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 5rem 4rem;
  border-radius: 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.goal-card:hover {
  transform: translateY(-25px) scale(1.05);
  box-shadow: 0 50px 100px rgba(45, 90, 39, 0.18);
  background: var(--white);
  border-color: var(--green);
}

.goal-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--green-pale) 0%, #e8f5e9 100%);
  color: var(--green);
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 3.5rem;
  transition: all 0.6s ease;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
}

.goal-card:hover .goal-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 20px 40px rgba(45, 90, 39, 0.3);
}

.goal-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
  font-weight: 900;
}

.goal-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* --- Team Interactive Section (3D Tilt & Immersive Panels) --- */
.team-interactive-section {
  padding: 2rem 0;
  background: var(--white);
  perspective: 2000px;
  position: relative;
}

.team-cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 8rem;
}

.team-profile-panel {
  height: 480px;
  perspective: 2000px;
}

.panel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: pointer;
}

.team-profile-panel:hover .panel-inner {
  transform: rotateY(180deg);
}

.panel-front, .panel-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px; /* Modern rectangular cards with slightly rounded corners */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.03); /* Soft shadow similar to Awards cards */
}

.panel-front {
  background: var(--white);
  border: 1px solid rgba(45, 90, 39, 0.06); /* Clean light border */
}

.panel-back {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  transform: rotateY(180deg);
  text-align: center;
  padding: 4rem;
}

.panel-avatar {
  width: 90px;
  height: 90px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 12px; /* Clean rectangular shapes */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease, color 0.4s ease;
  box-shadow: 0 10px 25px rgba(45, 90, 39, 0.05);
}

.team-profile-panel:hover .panel-avatar {
  transform: scale(1.1);
  background-color: var(--green);
  color: var(--white);
}

.panel-front h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.panel-front p {
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-back p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .team-profile-panel { height: 440px; }
  .goal-card { padding: 4rem 2rem; }
}

/* How We Create Change Section */
.change-section {
  padding: 10rem 0;
  background-color: #FAF8F5; /* Warm off-white/soft cream */
  position: relative;
}

.change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.change-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.02);
  border: 1px solid rgba(45, 90, 39, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
}

.change-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(45, 90, 39, 0.07);
  border-color: rgba(45, 90, 39, 0.15);
}

.change-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.change-card:hover .change-number {
  color: var(--green);
}

.change-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-family: var(--font-head);
  line-height: 1.3;
}

.change-card-desc {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
}

/* Responsive Grid for How We Create Change */
@media (max-width: 1024px) {
  .change-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .change-section {
    padding: 6rem 0;
  }
  
  .change-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .change-card {
    padding: 2.2rem 1.8rem;
  }
}

/* Community Action Strip Section */
.action-strip-section {
  padding: 5rem 0;
  background-color: var(--bg-soft); /* Subtle contrast */
  position: relative;
}

.action-card {
  background-color: var(--green); /* Forest green primary brand color */
  border-radius: 16px;
  padding: 4.5rem 3.5rem;
  box-shadow: 0 15px 40px rgba(45, 90, 39, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Organic decoration detail shapes inside the forest-green card */
.action-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.action-card::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  pointer-events: none;
}

.action-card-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.action-card-heading {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.action-card-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.action-buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

/* Primary Action Button (White bg, green text) */
.btn-action-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid var(--white);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease,
              background-color 0.3s ease,
              color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Secondary Action Button (Transparent/Outline, white text & border) */
.btn-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.3s ease,
              background-color 0.3s ease,
              border-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-action-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

/* Responsive Action Strip Styles */
@media (max-width: 768px) {
  .action-strip-section {
    padding: 3.5rem 0;
  }

  .action-card {
    padding: 3rem 2rem;
  }

  .action-card-heading {
    font-size: 1.8rem;
  }

  .action-card-subtext {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .action-buttons-row {
    flex-direction: column; /* Vertical stack on mobile */
    gap: 1rem;
    width: 100%;
  }

  .btn-action-primary,
  .btn-action-secondary {
    width: 100%; /* Full width buttons on mobile */
    padding: 1.1rem 1.5rem;
  }
}


