/* Performance: contain layout shifts */
img { max-width: 100%; height: auto; }

/* ============================================
   NEW LEAF FOUNDATION — Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #2D6A4F;
  --primary-dark: #1B4332;
  --primary-light: #40916C;
  --accent: #D4A843;
  --accent-light: #F2E8CF;
  --accent-dark: #B8922F;
  --bg: #FEFAE0;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #555555;
  --success: #40916C;
  --border: #D4A843;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.2);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 80px;
  --section-padding: 80px 0;
  --container-width: 1200px;
  --border-radius: 12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }

p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* --- Skip to Content (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

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

/* --- Section Divider (Rangoli-inspired) --- */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
  margin: 16px auto 32px;
  border-radius: 2px;
}

.section-divider-left {
  margin-left: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: rgba(27, 67, 50, 0.97);
  box-shadow: 0 2px 20px var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-donate-btn {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  font-weight: 700 !important;
  text-shadow: none !important;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: 0 2px 10px rgba(212,168,67,0.3);
}

.nav-donate-btn::after {
  display: none !important;
}

.nav-donate-btn:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.85) 0%,
    rgba(45, 106, 79, 0.7) 50%,
    rgba(212, 168, 67, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Hero (sub-pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow: 0 3px 15px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-top: 12px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,168,67,0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

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

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

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

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

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

.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   IMPACT STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary-dark);
  padding: 40px 0;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 8px,
    transparent 8px,
    transparent 16px,
    var(--primary-light) 16px,
    var(--primary-light) 24px,
    transparent 24px,
    transparent 32px
  );
}

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

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-top: 8px;
  display: block;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* --- Mission Teaser --- */
.mission-teaser {
  background: var(--white);
  padding: 80px 0;
}

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

.mission-text h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.mission-text .section-divider {
  margin: 16px 0 24px;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mission-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent);
  border-radius: var(--border-radius);
  pointer-events: none;
  opacity: 0.4;
}

/* --- Program Cards --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.program-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-strong);
}

.program-card-img {
  height: 220px;
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-img img {
  transform: scale(1.08);
}

.program-card-body {
  padding: 24px;
}

.program-card-body h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.program-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.program-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.program-card-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* --- Featured Story --- */
.story-section {
  background: var(--white);
}

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

.story-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-text h2 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.story-text .story-name {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.story-text blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Donate CTA Section --- */
.donate-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.donate-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(212,168,67,0.08);
  pointer-events: none;
}

.donate-cta-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

.donate-cta-section .section-subtitle {
  color: rgba(255,255,255,0.85);
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.donate-amount-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(212,168,67,0.3);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(5px);
}

.donate-amount-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.donate-amount-card .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.donate-amount-card .description {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.donate-cta-section .text-center {
  text-align: center;
}

/* --- Objectives Section --- */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.objective-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition);
  border-top: 4px solid var(--accent);
}

.objective-card:hover {
  transform: translateY(-4px);
}

.objective-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.objective-card h4 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.objective-card p {
  font-size: 0.95rem;
}

/* ============================================
   DONATE PAGE SPECIFIC
   ============================================ */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.impact-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border-bottom: 4px solid var(--accent);
}

.impact-card .amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.impact-card .impact-text {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Donation Form */
.donation-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px 40px;
  box-shadow: 0 10px 40px var(--shadow);
  border: 2px solid var(--accent-light);
}

.form-toggle {
  display: flex;
  background: var(--bg);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 32px;
}

.form-toggle button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
}

.form-toggle button.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(45,106,79,0.3);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.amount-btn {
  padding: 16px 12px;
  border: 2px solid var(--accent-light);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-family: var(--font-body);
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--primary);
  background: rgba(45,106,79,0.05);
}

.amount-btn.selected {
  border-color: var(--primary);
  background: rgba(45,106,79,0.08);
}

.amount-btn .amt {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
}

.amount-btn .fund-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.payment-method {
  padding: 14px 8px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  background: var(--white);
}

.payment-method:hover,
.payment-method.selected {
  border-color: var(--primary);
  background: rgba(45,106,79,0.05);
}

.payment-method.selected {
  border-color: var(--primary);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.15rem;
  margin-top: 16px;
}

/* 80G Section */
.tax-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0;
}

.tax-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tax-banner h2 {
  color: var(--accent);
  margin-bottom: 20px;
}

.tax-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.tax-banner .reg-number {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin: 16px 0;
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--accent);
}

/* US Donors */
.us-donors-section {
  background: var(--white);
  padding: 60px 0;
}

.us-donors-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 2px solid var(--accent-light);
  text-align: center;
}

.us-donors-card h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.us-donors-card .ein {
  display: inline-block;
  background: var(--white);
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin: 16px 0;
  border: 2px solid var(--accent);
  color: var(--primary-dark);
}

/* Transparency */
.transparency-section {
  padding: 80px 0;
}

.breakdown-bars {
  max-width: 600px;
  margin: 0 auto;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.breakdown-label {
  min-width: 140px;
  font-weight: 600;
  color: var(--text);
}

.breakdown-bar {
  flex: 1;
  height: 32px;
  background: #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.breakdown-fill.programs { background: var(--primary); width: 85%; }
.breakdown-fill.admin { background: var(--accent); width: 10%; }
.breakdown-fill.fundraising { background: var(--primary-light); width: 5%; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  color: var(--text);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  border-top: 4px solid var(--accent);
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}

.founder-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.founder-card .founder-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: block;
}

.philosophy-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.philosophy-section h2 {
  color: var(--accent);
  margin-bottom: 24px;
}

.philosophy-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.philosophy-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-light);
  max-width: 700px;
  margin: 24px auto 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
  text-align: left;
}

/* Mission/Vision Cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.mv-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--accent);
}

.mv-card h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */
.program-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.program-detail-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.program-detail-img {
  height: 260px;
  overflow: hidden;
}

.program-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail-body {
  padding: 30px;
}

.program-detail-body h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.program-detail-body p {
  margin-bottom: 16px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox (CSS-only with :target) */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  transition: color var(--transition);
  text-decoration: none;
}

.lightbox-nav:hover {
  color: var(--accent);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-list {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  margin-bottom: 0;
}

.map-placeholder {
  background: var(--white);
  border-radius: var(--border-radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--accent);
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-form .form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   BLOG TEMPLATE
   ============================================ */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.blog-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-content {
  padding: 48px 40px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.blog-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 16px;
  color: var(--primary-dark);
}

.blog-content h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
  color: var(--primary-dark);
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-light);
}

.blog-content ul,
.blog-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text-light);
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 2px solid var(--accent-light);
}

.blog-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.blog-author-info h4 {
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.blog-author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--accent-light);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

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

.share-btn.twitter {
  background: #1DA1F2;
  color: var(--white);
}

.share-btn.facebook {
  background: #4267B2;
  color: var(--white);
}

.share-btn.email {
  background: var(--accent);
  color: var(--white);
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ============================================
   WOW FACTOR ENHANCEMENTS
   ============================================ */

/* Gradient text for section titles */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated reveal from left/right */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Card image overlay on hover */
.program-card-img {
  position: relative;
}
.program-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.program-card:hover .program-card-img::before {
  opacity: 1;
}
.program-card-img .card-overlay-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  white-space: nowrap;
}
.program-card:hover .program-card-img .card-overlay-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Pulse animation for donate button */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(212,168,67,0.3); }
  50% { box-shadow: 0 4px 30px rgba(212,168,67,0.6); }
}
.pulse-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Floating particles canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Decorative quote mark */
.quote-mark {
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -20px;
  display: block;
}

/* Blockquote upgrade */
.story-section blockquote {
  border-left: 4px solid var(--accent);
  background: rgba(212,168,67,0.08);
  padding: 24px 28px;
  margin: 24px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  border-radius: 0 12px 12px 0;
  position: relative;
}

/* Stats glow */
.stat-number {
  text-shadow: 0 0 20px rgba(212,168,67,0.4);
}

/* Stat icon */
.stat-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

/* Stats progress line */
.stat-progress {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  margin: 12px auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.stat-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease-out;
}
.stat-progress-fill.filled {
  width: 100%;
}

/* Animated gradient border on cards */
.program-card {
  position: relative;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  z-index: 1;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Wave divider between sections */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Floating leaf decoration */
.floating-leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  animation: float-leaf 15s ease-in-out infinite;
}
@keyframes float-leaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(4deg); }
}

/* Donate CTA section upgrade */
.donate-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d2818 50%, var(--primary-dark) 100%) !important;
  position: relative;
  overflow: hidden;
}
.donate-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Floating dots in donate section */
.donate-float-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  animation: float-dot 10s ease-in-out infinite;
}
@keyframes float-dot {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(15px); }
  50% { transform: translateY(-15px) translateX(-10px); }
  75% { transform: translateY(-40px) translateX(20px); }
}

/* Hero word animation */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s ease forwards;
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Story stat highlight badge */
.story-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(212,168,67,0.3);
}

/* Parallax story image */
.story-image.parallax-img {
  overflow: hidden;
}
.story-image.parallax-img img {
  transition: transform 0.1s linear;
}

/* Page hero scroll indicator override */
.page-hero .scroll-indicator {
  bottom: 20px;
}

/* Staggered reveal delays for stat items */
.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }

/* Program card alternating top border accent */
.program-card:nth-child(odd)::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}
.program-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

/* More dramatic image zoom on program cards */
.program-card:hover .program-card-img img {
  transform: scale(1.12);
}

/* Enhanced fade-in with reveal support */
.fade-in.revealed {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.reveal-left.revealed {
  transform: translateX(0);
}
.fade-in.reveal-right.revealed {
  transform: translateX(0);
}
.fade-in.reveal-up.revealed {
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin-bottom: 16px;
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.badge-80g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition);
}

.social-link:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   FLOATING DONATE BUTTON
   ============================================ */
.floating-donate {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(212,168,67,0.4);
  z-index: 999;
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.floating-donate.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-donate:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212,168,67,0.5);
}

/* ============================================
   FOOTNOTE
   ============================================ */
.footnote {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NEW SECTIONS — Red Team Enhancements
   ============================================ */

/* Social proof strip */
.social-proof-strip {
  background: var(--primary-dark);
  padding: 24px 0;
}
.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.proof-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

/* Tax banner above form */
.tax-banner-above {
  background: linear-gradient(135deg, #f0fff4, #e8f5e9);
  padding: 16px 0;
  border-bottom: 3px solid var(--accent);
}
.tax-banner-compact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tax-icon { font-size: 1.5rem; }
.tax-banner-compact strong { color: var(--primary-dark); font-size: 1.1rem; }
.tax-banner-compact p { margin: 0; font-size: 0.9rem; color: var(--text-light); }
.tax-reg {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--accent);
}

/* Funding goal */
.funding-goal {
  background: var(--white);
  padding: 32px 0;
  text-align: center;
}
.funding-goal h3 { color: var(--primary-dark); margin-bottom: 16px; }
.goal-progress { max-width: 600px; margin: 0 auto; }
.goal-bar {
  height: 24px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.goal-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 12px;
  transition: width 1.5s ease;
  position: relative;
}
.goal-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}
.goal-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.goal-urgency {
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 12px;
}

/* Amount button popular highlight */
.amount-btn.popular {
  border: 2px solid var(--accent);
  position: relative;
}
.amount-btn.popular::after {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-top: 16px;
  border-top: 1px solid #e0e0e0;
}
.trust-item {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Why monthly */
.why-monthly {
  background: var(--accent-light);
  padding: 48px 0;
}
.why-monthly h3 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 32px;
}
.monthly-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--shadow);
}
.benefit-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.benefit h4 { color: var(--primary-dark); margin-bottom: 8px; }

/* Monthly toggle upgrade */
.form-toggle .monthly-label {
  font-size: 0.8rem;
  color: var(--accent);
  display: block;
  margin-top: 2px;
}

/* Payment method featured */
.method-badge {
  display: block;
  font-size: 0.65rem;
  background: var(--accent);
  color: var(--white);
  padding: 1px 6px;
  border-radius: 8px;
  margin-top: 4px;
  font-weight: 600;
}

/* Payment method monthly gold accent */
.form-toggle button[data-frequency="monthly"].active {
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  box-shadow: 0 2px 15px rgba(212,168,67,0.4);
}

/* Testimonials */
.testimonials-section {
  background: var(--white);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 32px;
  position: relative;
  border-left: 4px solid var(--accent);
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -10px;
}
.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.author-role {
  font-size: 0.85rem;
  color: var(--text-light);
}
.donor-counter {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--border-radius);
  color: var(--white);
  font-size: 1.1rem;
}
.donor-counter strong { color: var(--accent); }
.donor-icon { font-size: 1.3rem; margin-right: 8px; }

/* How Your Donation Helps */
.donation-helps {
  background: var(--accent-light);
  padding: 60px 0;
}
.helps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.help-item {
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--shadow);
}
.help-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.help-item h4 { color: var(--primary-dark); margin-bottom: 8px; }

/* Mobile sticky donate bar */
@media (max-width: 768px) {
  .mobile-donate-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 12px 16px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  }
  .mobile-donate-bar p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
  }
  .mobile-donate-bar .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  /* Add padding to footer on mobile so content isn't hidden behind bar */
  .footer { padding-bottom: 70px; }

  /* Responsive overrides for new sections */
  .proof-items { grid-template-columns: repeat(2, 1fr); }
  .monthly-benefits { grid-template-columns: 1fr; }
  .tax-banner-compact { flex-direction: column; text-align: center; }
  .tax-reg { margin-left: 0; }
  .trust-indicators { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .helps-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .gallery-grid {
    columns: 2;
  }

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

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

  .program-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
    --section-padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .mission-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .donate-amounts {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .gallery-grid {
    columns: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .donation-form-wrapper {
    padding: 30px 20px;
  }

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

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

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

  .story-image img {
    height: 300px;
  }

  .blog-content {
    padding: 30px 20px;
  }

  .blog-hero-img {
    height: 250px;
  }

  .floating-donate {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .lightbox-nav {
    font-size: 2rem;
    padding: 10px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

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

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

  .nav-logo span {
    font-size: 1rem;
  }

  .mission-image img {
    height: 280px;
  }
}
