/* 
 * Volunteer Kenya (ICODEI) - Design System & Stylesheet
 * High-End Professional Visual Design
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  /* ── "Grassroots Impact" Professional NGO Palette ── */
  /* Primary Action (8%) – Savanna Amber */
  --primary: #E67E22;
  --primary-hover: #D4691A;
  --primary-light: #FEF0E4;
  --primary-glow: rgba(230, 126, 34, 0.28);

  /* Sustainability (12%) – Acacia Green */
  --green: #27AE60;
  --green-dark: #1E8449;
  --green-light: #E8F8EE;

  /* Trust & Authority (25%) – Deep Rift Navy */
  --navy: #1A252F;
  --navy-mid: #253341;
  --navy-muted: rgba(26, 37, 47, 0.7);

  /* Background (55%) – Warm Earth */
  --warm-bg: #FDFEFE;
  --warm-bg-alt: #F5F7F8;
  --card-bg: #FFFFFF;

  /* Utility */
  --earth-gray: #5D6D7E;
  --card-border: rgba(26, 37, 47, 0.1);
  --shadow-sm: 0 4px 12px rgba(26, 37, 47, 0.06);
  --shadow-md: 0 8px 28px rgba(26, 37, 47, 0.10);
  --shadow-lg: 0 18px 45px rgba(26, 37, 47, 0.15);
  --shadow-glow: 0 0 28px rgba(230, 126, 34, 0.3);

  /* Legacy aliases – kept so existing HTML doesn't break */
  --primary-terracotta: #E67E22;
  --acacia-gold: #E67E22;
  --acacia-light: #FEF0E4;
  --savannah-emerald: #27AE60;
  --savannah-emerald-dark: #1E8449;
  --savannah-mint: #E8F8EE;
  --safari-night: #1A252F;
  --safari-dark: #253341;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--warm-bg);
  color: var(--safari-night);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}

.text-gold { color: var(--primary); }
.text-emerald { color: var(--green); }
.text-terracotta { color: var(--primary); }
.text-muted { color: var(--earth-gray); }

/* Layout Containers - Full Width Layout */
.container {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  width: 100%;
}

.section-title-wrap {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3.5rem auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-pill.emerald {
  background-color: var(--green-light);
  color: var(--green-dark);
}

.badge-pill.gold {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

/* Google Rating Pill Badge */
.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--safari-night);
  margin-bottom: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.google-rating-pill-dark {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

a.google-rating-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.25);
  border-color: rgba(26, 115, 232, 0.5);
}

.google-icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.google-review-count {
  font-weight: 700;
  color: #1A73E8;
}

.google-rating-pill-dark .google-review-count {
  color: #7DB2FF;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.18rem;
  color: var(--earth-gray);
  line-height: 1.7;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #F39C40 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 22px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 126, 34, 0.45);
}

.btn-emerald {
  background-color: var(--green);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-emerald:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
}

.btn-outline {
  border-color: rgba(26, 37, 47, 0.2);
  color: var(--navy);
  background: transparent;
}

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

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--safari-night);
  border-color: #FFFFFF;
}

/* Header & Navigation - Full Width Solid Dark Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 0.9rem 3rem;
  background: rgba(26, 37, 47, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(26, 37, 47, 0.25);
}

.site-header.scrolled {
  padding: 0.75rem 3rem;
  background: rgba(26, 37, 47, 0.98);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

/* Logo image */
.header-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
  border-radius: var(--radius-pill);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
}

/* Mobile Nav Drawer & High-Contrast Close Button */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  background: var(--navy);
  color: #FFF;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transition: var(--transition-smooth);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav .nav-link {
  color: #FFFFFF;
}

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

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-nav-close:hover, .mobile-nav-close:active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.08);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 23, 21, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

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

/* Full Width Hero Section with Glasscard */
.hero-fullwidth {
  position: relative;
  min-height: 92vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  background-image: url('Photo Album/Home/home hero image.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
}

/* Hero Glasscard Container - Authentic Translucent Glassmorphism */
.hero-glasscard {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3.5rem;
  max-width: 760px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-title-dark {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-desc-dark {
  font-size: 1.18rem;
  color: #1E293B;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Sliding Google Reviews Banner Section */
.google-reviews-section {
  padding: 2.25rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-marquee-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee-scroll 45s linear infinite;
  white-space: nowrap;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.google-review-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--warm-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  white-space: normal;
  transition: var(--transition-fast);
  text-decoration: none;
  color: inherit;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 115, 232, 0.4);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFF;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--safari-night);
}

.reviewer-subtitle {
  font-size: 0.75rem;
  color: var(--earth-gray);
}

.review-text {
  font-size: 0.9rem;
  color: var(--earth-gray);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #1A73E8;
  font-weight: 600;
}

/* Full Width Stats Counter Bar */
.stats-bar-fullwidth {
  background: var(--navy);
  color: #FFFFFF;
  padding: 4rem 3rem;
  width: 100%;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-grid-fullwidth {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
  max-width: 1536px;
  margin: 0 auto;
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.5rem;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Contact Page Layout & Cards */
.contact-hero {
  background: var(--navy);
  color: #FFF;
  padding: 8rem 0 4rem 0;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

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

.contact-form-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

/* Story / History Section */
.story-section {
  background-color: var(--warm-bg);
}

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

.story-card-stack {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 92%;
}

.story-img-badge {
  position: absolute;
  bottom: -2rem;
  right: 0;
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--green);
  max-width: 280px;
}

.story-badge-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.story-badge-desc {
  font-size: 0.85rem;
  color: var(--earth-gray);
}

/* Timeline */
.timeline-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.timeline-year {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  min-width: 65px;
}

.timeline-content {
  border-left: 2px solid var(--card-border);
  padding-left: 1.25rem;
  padding-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--earth-gray);
}

/* Programs Section */
.programs-section {
  background: linear-gradient(180deg, var(--warm-bg-alt) 0%, var(--warm-bg) 100%);
}

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

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

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(39, 174, 96, 0.35);
}

.program-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.program-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 23, 21, 0.75);
  backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.program-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-desc {
  font-size: 0.98rem;
  color: var(--earth-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.65;
}

.program-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.program-feature-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--safari-night);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-feature-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

/* Photo Gallery Section */
.gallery-section {
  background-color: var(--warm-bg);
}

.gallery-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background: #FFF;
  border: 1px solid var(--card-border);
  color: var(--earth-gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background-color: var(--navy);
  color: #FFF;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(26, 37, 47, 0.2);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 23, 21, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: #FFF;
}

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

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

.gallery-item-title {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 23, 21, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 2rem;
}

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

.lightbox-content {
  max-width: 1000px;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #FFF;
  margin-top: 1rem;
  font-size: 1.05rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
}

/* Volunteer Fees Calculator Section */
.calculator-section {
  background: var(--navy-mid);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.calc-options-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFF;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-select, .form-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-select option {
  background: var(--safari-dark);
  color: #FFF;
}

.form-select:focus, .form-input:focus {
  border-color: var(--acacia-gold);
  box-shadow: 0 0 0 3px rgba(224, 159, 62, 0.25);
}

.calc-summary-box {
  background: rgba(26, 37, 47, 0.6);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid rgba(230, 126, 34, 0.35);
}

.calc-price-display {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.calc-breakdown-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Sponsor Child Highlight Box */
.sponsor-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 4rem;
  box-shadow: var(--shadow-lg);
}

.sponsor-title {
  font-size: 2.4rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.sponsor-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Application Modal */
.app-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 23, 21, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 1.5rem;
}

.app-modal.active {
  opacity: 1;
  visibility: visible;
}

.app-modal-dialog {
  background: var(--warm-bg);
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.app-modal-header {
  background: var(--navy);
  color: #FFF;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
}

.app-modal-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.app-modal-body {
  padding: 2.25rem 2rem;
  overflow-y: auto;
}

.app-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.light-label {
  color: var(--safari-night);
}

.light-input, .light-select, .light-textarea {
  background: #FFF;
  border: 1px solid var(--card-border);
  color: var(--safari-night);
}

.light-input:focus, .light-select:focus, .light-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: #FFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  border-left: 4px solid var(--green);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer - Full Width */
.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text {
  color: #FFF;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col-title {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  .site-header, .site-header.scrolled {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .hero-title-light {
    font-size: 3rem;
  }
  
  .stats-bar-fullwidth {
    padding: 3.5rem 2rem;
  }
}

@media (max-width: 1024px) {
  .story-grid, .calculator-card, .sponsor-banner, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stats-grid-fullwidth {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .google-review-card {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .site-header, .site-header.scrolled {
    padding: 1rem 1.5rem;
  }

  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-glasscard {
    padding: 2rem 1.5rem;
  }

  .hero-title-light {
    font-size: 2.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .stats-grid-fullwidth {
    grid-template-columns: 1fr;
  }
  
  .programs-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .app-form-grid {
    grid-template-columns: 1fr;
  }
  
  .app-form-grid .full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion Component */
.faq-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(39, 174, 96, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.8rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-fast);
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.8rem;
  color: var(--earth-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.6rem 1.8rem;
}

/* Day in the Life Cards */
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.day-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.day-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 126, 34, 0.35);
}

.day-time-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-hover);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.day-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.day-card-desc {
  font-size: 0.95rem;
  color: var(--earth-gray);
  line-height: 1.65;
}

/* Key Differentiators Grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.diff-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(39, 174, 96, 0.3);
}

.diff-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.diff-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.diff-desc {
  font-size: 0.9rem;
  color: var(--earth-gray);
  line-height: 1.6;
}

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

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

/* Founder Note Card & Mobile Responsive Layout */
.founder-note-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.founder-photo-col {
  text-align: center;
}

.founder-circle-frame {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--green) 0%, var(--primary) 100%);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.founder-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
}

.founder-note-name {
  margin-top: 1rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.founder-note-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-note-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.founder-note-p {
  font-size: 1.05rem;
  color: var(--earth-gray);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.founder-note-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .founder-note-card {
    grid-template-columns: 1fr;
    padding: 3rem 2.5rem;
    gap: 2.5rem;
    text-align: center;
  }
  .founder-note-heading {
    font-size: 1.85rem;
  }
  .founder-note-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .founder-note-card {
    padding: 2rem 1.5rem;
    gap: 1.75rem;
  }
  .founder-circle-frame {
    width: 160px;
    height: 160px;
  }
  .founder-note-heading {
    font-size: 1.45rem;
  }
}
