/* HopeSpring Foundation International */
/* Colors from Brand Kit */
:root {
  --primary-dark: #195429;
  --primary-green: #179917;
  --light-green: #b5c577;
  --accent-orange: #f78226;
  --light-bg: #f2f2f2;
  --dark-gray: #545454;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 50px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'ITC Avant Garde Gothic', 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  background: rgba(25, 84, 41, 0.1);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e06e15;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 130, 38, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: var(--light-bg);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header .container {
  max-width: 100%;          /* Allows container to expand end-to-end */
  width: 100%;              /* Ensures full width execution */
  padding: 0 24px;          /* Prevents content from touching raw screen edges */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
  min-height: 72px;
} */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Spreads items out evenly */
  flex: 1;                         /* Takes up all remaining width in the header */
  padding: 10px 0;
  min-height: 72px;
}

/* Logo — left side, never shrinks */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: 190px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
  white-space: nowrap;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--dark-gray);
  letter-spacing: 0.4px;
}

/* Nav links — centered on desktop, evenly spaced */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
  background: rgba(23, 153, 23, 0.08);
}

/* Donate button — right side */
.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 11px 22px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Hamburger button (hidden on desktop) */
.mobile-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(25, 84, 41, 0.08);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  position: relative;
  transition: background 0.25s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Open state — turns into X */
.mobile-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== RESPONSIVE — HEADER ========== */

/* Large tablets / small desktops — tighten nav spacing */
@media (max-width: 1100px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  /* .logo-text {
    font-size: 0.95rem;
  } */

  .logo-text span {
    font-size: 0.6rem;
  }
}

/* Tablets (portrait & landscape) */
@media (max-width: 992px) {
  .nav {
    gap: 16px;
  }
  .nav-links {
    gap: 0;
  }
  .nav-links a {
    padding: 8px 9px;
    font-size: 0.85rem;
  }
  .nav-cta .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .logo img {
    height: 40px;
    width: 40px;
  }
}

/* Mobile & small tablets — hamburger menu */
@media (max-width: 768px) {
  .nav {
    min-height: 64px;
    padding: 10px 0;
    gap: 12px;
  }
  .logo img {
    height: 80px;
    width: 120px;
  }
  .logo-text {
    font-size: 0.95rem;
  }
  .logo-text span {
    font-size: 0.58rem;
  }

  /* Hide desktop nav links, show as slide-down panel */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(23, 153, 23, 0.1);
  }

  /* Keep Donate button visible on mobile (compact) */
  .nav-cta {
    display: flex;
    margin-left: auto;
  }
  .nav-cta .btn {
    display: inline-flex;
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav {
    gap: 8px;
  }
  .logo-text span {
    display: none; /* hide long subtitle on very small screens */
  }
  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

/* Extra-small phones */
@media (max-width: 360px) {
  .logo-text {
    font-size: 0.85rem;
  }
  .nav-cta .btn {
    padding: 7px 10px;
    font-size: 0.75rem;
  }
}

/* Tablets landscape — keep desktop-style nav when wide enough */
@media (min-width: 769px) and (max-width: 992px) {
  .nav-links {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* modern mobile browsers */
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(25, 84, 41, 0.78) 0%, rgba(23, 153, 23, 0.58) 100%),
              url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover no-repeat;
  padding: 110px 0 70px;
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 16px 7px 8px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  object-fit: cover;
  margin-left: -6px;
}

.hero-badge img:first-child {
  margin-left: 0;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.8vw, 3.35rem);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-lead strong {
  color: #fff;
  font-weight: 700;
}

/* Dual CTAs */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Impact stats row */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: left;
  min-width: 100px;
}

.stat-item .number {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1.1;
}

.stat-item .label {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* Floating trust card (desktop only) */
.hero-card {
  position: absolute;
  right: 7%;
  bottom: 14%;
  background: rgba(255, 255, 255, 0.97);
  color: var(--text-dark);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  max-width: 210px;
  z-index: 3;
}

.hero-card .rating {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.25rem;
}

.hero-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Watch Our Story circle (desktop only) */
.watch-story {
  position: absolute;
  right: 11%;
  top: 38%;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
  text-decoration: none;
}

.watch-story:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: scale(1.06);
}

/* ----- Hero responsive ----- */
@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-card {
    right: 4%;
    bottom: 10%;
    max-width: 180px;
    padding: 14px 18px;
  }
  .watch-story {
    right: 5%;
    top: 32%;
    width: 76px;
    height: 76px;
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 56px;
    align-items: flex-start;
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
    padding-top: 12px;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  }
  .hero-lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    min-width: 140px;
  }
  .hero-stats {
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .stat-item {
    min-width: 90px;
  }
  /* Hide floating elements on mobile */
  .hero-card,
  .watch-story {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 0 48px;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px 6px 6px;
  }
  .hero-badge img {
    width: 24px;
    height: 24px;
  }
  .hero-stats {
    gap: 16px 24px;
  }
  .stat-item .number {
    font-size: 1.5rem;
  }
  .stat-item .label {
    font-size: 0.8rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Overlapping image collage */
.about-images {
  position: relative;
  height: 460px;
}

.about-images .img-main {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.about-images .img-1 {
  top: 0;
  left: 0;
  width: 68%;
  height: 300px;
  z-index: 1;
}

.about-images .img-2 {
  top: 70px;
  right: 0;
  width: 52%;
  height: 210px;
  z-index: 2;
}

.about-images .img-3 {
  bottom: 0;
  left: 12%;
  width: 48%;
  height: 170px;
  z-index: 3;
}

.about-content h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin-bottom: 14px;
  color: var(--text-dark);
  line-height: 1.25;
}

.about-lead {
  color: var(--text-muted);
  margin-bottom: 26px;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 520px;
}

.feature-card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(23, 153, 23, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.ceo-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ceo-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ceo-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.ceo-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----- About responsive ----- */
@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }
  .about-grid {
    gap: 40px;
  }
  .about-images {
    height: 400px;
  }
  .about-images .img-1 {
    height: 260px;
  }
  .about-images .img-2 {
    height: 180px;
  }
  .about-images .img-3 {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 64px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Images above text on mobile */
  .about-images {
    height: 280px;
    order: -1;
  }
  .about-images .img-1 {
    width: 62%;
    height: 200px;
    top: 0;
    left: 0;
  }
  .about-images .img-2 {
    width: 48%;
    height: 150px;
    top: 40px;
    right: 0;
  }
  .about-images .img-3 {
    width: 42%;
    height: 120px;
    bottom: 0;
    left: 20%;
  }
  .about-content h2 {
    font-size: 1.7rem;
  }
  .about-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .about-images {
    height: 240px;
  }
  .about-images .img-1 {
    height: 170px;
  }
  .about-images .img-2 {
    height: 130px;
  }
  .about-images .img-3 {
    height: 100px;
  }
  .feature-card {
    padding: 16px;
    gap: 12px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

/* ========== IMPACT STATS ========== */
.impact {
  padding: 80px 0;
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
}

.impact h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.impact-sub {
  opacity: 0.85;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-item {
  padding: 28px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.impact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.impact-item .num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 8px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.impact-item .lbl {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.35;
}

.impact-container .tax-info {
  grid-column: span 4;
  margin-top: 24px;
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* Impact responsive */
@media (max-width: 992px) {
  .impact {
    padding: 64px 0;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .impact {
    padding: 56px 0;
  }
  .impact-sub {
    margin-bottom: 32px;
    font-size: 0.95rem;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .impact-item {
    padding: 20px 12px;
  }
  .impact-item .num {
    font-size: 1.6rem;
  }
  .impact-item .lbl {
    font-size: 0.82rem;
  }
}

/* ========== SERVICES / PROGRAMS ========== */
.services {
  padding: 100px 0;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  max-width: 480px;
  line-height: 1.25;
}

.services-intro {
  color: var(--text-muted);
  max-width: 380px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(247, 130, 38, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-orange);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 16px;
  line-height: 1.55;
  flex: 1;
}

.service-link {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.service-link:hover {
  color: var(--accent-orange);
}

.trust-box {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-row: span 2;
}

.trust-box .faces {
  display: flex;
  margin-bottom: 14px;
}

.trust-box .faces img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  object-fit: cover;
}

.trust-box .faces img:first-child {
  margin-left: 0;
}

.trust-box .stars {
  color: #ffc107;
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.trust-box h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.trust-box p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 22px;
  line-height: 1.5;
}

.trust-box .btn {
  width: 100%;
  justify-content: center;
}

/* Programs responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-box {
    grid-column: span 2;
    grid-row: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    text-align: left;
    justify-content: flex-start;
    padding: 28px;
  }
  .trust-box .faces,
  .trust-box .stars {
    margin-bottom: 0;
  }
  .trust-box h4 {
    width: 100%;
    margin-bottom: 4px;
  }
  .trust-box p {
    flex: 1;
    margin-bottom: 0;
    min-width: 180px;
  }
  .trust-box .btn {
    width: auto;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 64px 0;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .services-intro {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-box {
    grid-column: auto;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .trust-box p {
    min-width: 0;
  }
  .trust-box .btn {
    width: 100%;
  }
  .service-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 56px 0;
  }
  .service-icon {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
}

/* ========== UPCOMING EVENT ========== */
.upcoming-event {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.event-flyer {
  position: relative;
}

.event-flyer img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(25, 84, 41, 0.18);
  display: block;
  margin: 0 auto;
}

.event-content .section-label {
  margin-bottom: 12px;
}

.event-content h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.25;
}

.event-tagline {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.event-details {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.event-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.event-icon {
  width: 42px;
  height: 42px;
  background: rgba(23, 153, 23, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.event-details strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.event-details span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.event-appeal {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.event-actions .btn {
  min-width: 160px;
  justify-content: center;
}

.event-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.event-note a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.event-note a:hover {
  color: var(--accent-orange);
}

/* Upcoming Event responsive */
@media (max-width: 992px) {
  .upcoming-event {
    padding: 80px 0;
  }
  .event-grid {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .upcoming-event {
    padding: 64px 0;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .event-flyer {
    order: -1; /* flyer first on mobile */
  }
  .event-flyer img {
    max-width: 360px;
  }
  .event-actions {
    flex-direction: column;
  }
  .event-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .upcoming-event {
    padding: 56px 0;
  }
  .event-flyer img {
    max-width: 100%;
  }
  .event-details li {
    gap: 12px;
  }
  .event-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ========== WHY CHOOSE ========== */
/* .why {
  padding: 100px 0;
  background: var(--light-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-images {
  position: relative;
}

.why-images .main-img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.why-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.why-badge .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.why-badge p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.why-small {
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 6px solid white;
  box-shadow: var(--shadow);
}

.why-content h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.why-content > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.check-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 28px;
}

.check-list h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
} */

/* ========== TRANSPARENCY REPORT ========== */
.transparency {
  padding: 100px 0;
  background: var(--white);
}

.transparency-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.transparency-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  max-width: 420px;
}

.transparency-intro {
  max-width: 420px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.transparency-intro strong {
  color: var(--primary-dark);
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.transparency-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.transparency-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.chart-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  gap: 12px;
  align-items: center;
}

.bar-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

.bar-track {
  height: 14px;
  background: rgba(25, 84, 41, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-fill.animated {
  width: var(--bar-width);
}

.bar-row:nth-child(1) .bar-fill { background: linear-gradient(90deg, #179917, #195429); }
.bar-row:nth-child(2) .bar-fill { background: linear-gradient(90deg, #f78226, #e06e15); }
.bar-row:nth-child(3) .bar-fill { background: linear-gradient(90deg, #4a9fd8, #2b7cb5); }
.bar-row:nth-child(4) .bar-fill { background: linear-gradient(90deg, #b5c577, #8a9a4a); }

.bar-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: right;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}

.donut {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(
    #179917 0% 48%,
    #f78226 48% 70%,
    #4a9fd8 70% 88%,
    #b5c577 88% 100%
  );
  position: relative;
  flex-shrink: 0;
}

.donut::before {
  content: '';
  position: absolute;
  inset: 28px;
  background: var(--light-bg);
  border-radius: 50%;
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.donut-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.donut-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.donut-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donut-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-edu { background: #179917; }
.dot-food { background: #f78226; }
.dot-health { background: #4a9fd8; }
.dot-community { background: #b5c577; }

.impact-per-dollar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ipd-item {
  text-align: center;
}

.ipd-item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.ipd-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.transparency-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 28px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.transparency-footer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 992px) {
  .transparency-grid {
    grid-template-columns: 1fr;
  }
  .bar-row {
    grid-template-columns: 120px 1fr 44px;
  }
}

@media (max-width: 768px) {
  .transparency {
    padding: 64px 0;
  }
  .transparency-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .transparency-intro {
    max-width: 100%;
  }
  .transparency-card {
    padding: 24px 20px;
  }
  .bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .bar-value {
    text-align: left;
  }
  .donut-wrap {
    flex-direction: column;
    align-items: center;
  }
  .impact-per-dollar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ipd-item {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .transparency-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .transparency-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .transparency {
    padding: 56px 0;
  }
  .donut {
    width: 140px;
    height: 140px;
  }
  .donut::before {
    inset: 24px;
  }
}

/* ========== STORY / VIDEO ========== */
.story {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.story-content {
  max-width: 700px;
}

.story-content h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.story-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(247,130,38,0.4);
}

.play-btn:hover {
  transform: scale(1.1);
}

/* ========== CAUSES ========== */
.causes {
  padding: 100px 0;
}

.causes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.causes-header h2 {
  font-size: 2.3rem;
  max-width: 480px;
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cause-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.cause-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.cause-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cause-card .body {
  padding: 24px;
}

.cause-tag {
  display: inline-block;
  background: rgba(25,84,41,0.1);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.cause-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.cause-card a {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========== FEATURED PROGRAMS (horizontal scroll) ========== */
.programs {
  padding: 100px 0 80px;
  background: var(--light-bg);
  overflow: hidden;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.programs-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  max-width: 480px;
  line-height: 1.25;
}

.programs-intro {
  color: var(--text-muted);
  max-width: 380px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.programs-scroll-wrap {
  position: relative;
}

.programs-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px max(24px, calc((100vw - 1200px) / 2 + 24px)) 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) transparent;
}

.programs-scroll::-webkit-scrollbar {
  height: 6px;
}

.programs-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.programs-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 50px;
}

.program-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.program-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.program-card .body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card .cat {
  font-size: 0.78rem;
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.program-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--text-dark);
}

.program-card .body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.program-link {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.program-link:hover {
  color: var(--primary-green);
}

.programs-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
  margin-top: 4px;
}

.programs-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  background: var(--white);
  color: var(--primary-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.programs-nav-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .programs {
    padding: 64px 0 56px;
  }
  .programs-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .programs-intro {
    max-width: 100%;
  }
  .program-card {
    flex: 0 0 min(280px, 82vw);
  }
  .programs-scroll {
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
  }
  .programs-nav {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .programs {
    padding: 56px 0 48px;
  }
  .program-card {
    flex: 0 0 85vw;
  }
  .program-card img {
    height: 160px;
  }
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.faq-image {
  position: relative;
  position: sticky;
  top: 100px;
}

.faq-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.faq-badge {
  position: absolute;
  bottom: 24px;
  right: -12px;
  background: var(--primary-dark);
  color: white;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  max-width: 190px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-badge .stars {
  color: #ffc107;
  margin-bottom: 6px;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.faq-badge p {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
}

.faq-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin-bottom: 28px;
  line-height: 1.25;
  color: var(--text-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(23, 153, 23, 0.25);
}

.faq-item.is-open {
  background: var(--white);
  border-color: rgba(23, 153, 23, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 16px 18px 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-dark);
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-green);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open {
  max-height: 280px;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

.faq-answer a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--accent-orange);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); /* + becomes × */
  background: var(--primary-green);
}

/* FAQ responsive */
@media (max-width: 992px) {
  .faq-grid {
    gap: 40px;
  }
  .faq-image img {
    height: 380px;
  }
  .faq-badge {
    right: 12px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 64px 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-image {
    position: relative;
    top: auto;
    order: -1;
  }
  .faq-image img {
    height: 280px;
  }
  .faq-badge {
    max-width: 170px;
    padding: 14px;
    right: 12px;
  }
  .faq-content h2 {
    margin-bottom: 20px;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 56px 0;
  }
  .faq-image img {
    height: 220px;
  }
  .faq-badge {
    display: none;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.testimonials-header .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.testimonials-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.25;
}

.testimonials-intro {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.6;
}

.testimonials-carousel-wrap {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(380px, 88vw);
  scroll-snap-align: center;
  background: var(--white);
  color: var(--text-dark);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 14px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text-dark);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.testimonials-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonials-nav-btn:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.testimonials-dots button.active {
  background: var(--accent-orange);
  width: 24px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 64px 0;
  }
  .testimonials-header {
    margin-bottom: 32px;
  }
  .testimonial-card {
    flex: 0 0 min(320px, 90vw);
    padding: 24px 20px;
  }
  .testimonial-card > p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 56px 0;
  }
  .testimonial-card {
    flex: 0 0 92vw;
  }
}

/* ========== CONTACT / GET INVOLVED ========== */
/* .contact {
  padding: 100px 0;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(23,153,23,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.2rem;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ways {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.way-btn {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.way-btn:hover {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(23,153,23,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: none;
}

.form-message.success {
  background: rgba(23,153,23,0.12);
  color: var(--primary-dark);
  display: block;
}

.form-message.error {
  background: rgba(220,53,69,0.12);
  color: #dc3545;
  display: block;
} */

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(25, 84, 41, 0.92) 0%, rgba(23, 153, 23, 0.88) 100%),
    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta .section-label {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.final-cta-content > p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.final-cta-actions .btn {
  min-width: 180px;
  justify-content: center;
}

.final-cta-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  letter-spacing: 0.2px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 72px 0;
  }
  .final-cta-content > p {
    font-size: 1rem;
  }
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .final-cta {
    padding: 56px 0;
  }
  .final-cta h2 {
    font-size: 1.7rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 40px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand .logo-text {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand .logo-image {
  width: 320px;
  height: 120px;
  margin-bottom: 16px;
}

.footer-brand .logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-brand .tax-info {
  font-size: 0.6rem;
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-orange);
}

.footer h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.newsletter p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: inherit;
}

.newsletter-form button {
  background: var(--accent-orange);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #e06e15;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-box {
    grid-column: span 2;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .causes-grid,
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
    max-width: 100%;
  }
  .testimonials {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-cta .btn {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero-card,
  .watch-story {
    display: none;
  }
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 360px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .trust-box {
    grid-column: auto;
  }
  .causes-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
}