/* ============================================
   HOPE — Health, Opportunity, Progress & Empowerment
   Watumull-inspired Design — Navi Mumbai
   ============================================ */

/* --- VARIABLES --- */
:root {
  --blue-main: #2B6CB0;
  --blue-dark: #1A4B7A;
  --blue-light: #E8F0FE;
  --blue-mid: #4A90D9;
  --cream: #FFF8F0;
  --orange: #E8723A;
  --orange-light: #FDEBD3;
  --yellow: #F5C842;
  --green: #38A169;
  --green-light: #C6F6D5;
  --red-soft: #E8523A;
  --white: #ffffff;
  --dark: #1A202C;
  --gray: #4A5568;
  --gray-light: #A0AEC0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #d4652f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,114,58,0.35);
}
.btn-accent {
  background: var(--orange);
  color: var(--white);
}
.btn-accent:hover {
  background: #d4652f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,114,58,0.35);
}
.btn-outline {
  border-color: var(--blue-main);
  color: var(--blue-main);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-main);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* --- SECTION HELPERS --- */
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: var(--yellow); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 48px;
}
.highlight {
  color: var(--blue-main);
  position: relative;
}
.underline-wavy {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-style: wavy;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}
.logo-icon {
  font-size: 1.4rem;
  filter: none;
  color: var(--red-soft);
}
.logo-img {
  height: 64px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}
.logo-img-footer {
  filter: brightness(0) invert(1);
  height: 72px;
}
.logo-text { color: var(--blue-dark); }
.logo-dot { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-donate { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  background: var(--blue-main);
  padding-top: 72px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-wave-top {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  opacity: 0.15;
}
.hero-wave-top svg { width: 100%; height: 200px; }
.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { color: var(--white); }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero h1 .underline-wavy {
  text-decoration-color: var(--yellow);
}
.hero h1 .highlight {
  color: var(--yellow);
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
}
.stat span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrapper {
  position: relative;
  z-index: 2;
}
.hero-img-wrapper img {
  width: 420px;
  height: 500px;
  object-fit: cover;
  border-radius: 30px 30px 100px 30px;
  border: 6px solid rgba(255,255,255,0.2);
}
.hero-img-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 100px 30px;
  border: 3px solid var(--yellow);
  z-index: -1;
}
.hero-floater {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}
.floater-heart { top: 10%; right: -10%; animation-delay: 0s; }
.floater-star { bottom: 20%; left: -5%; animation-delay: 0.5s; color: var(--yellow); }
.floater-check {
  top: 50%;
  right: -15%;
  animation-delay: 1s;
  background: var(--green);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-wave-bottom {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero-wave-bottom svg { width: 100%; height: 120px; display: block; }

/* =====================
   MISSION
   ===================== */
.mission {
  position: relative;
  background: var(--cream);
  padding: 100px 0 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}
.mission-text p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}
.mission-image {
  position: relative;
}
.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}
.mission-img-blob {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--yellow);
  border-radius: 50% 50% 50% 20%;
  opacity: 0.3;
  z-index: 1;
}
.section-wave {
  margin-top: 80px;
}
.section-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* =====================
   PROGRAMS
   ===================== */
.programs {
  background: var(--blue-light);
  padding: 80px 0 100px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-main);
  border-radius: 4px 4px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.program-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.program-card a {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.9rem;
}
.program-card a:hover { color: var(--blue-main); }

/* =====================
   IMPACT
   ===================== */
.impact {
  background: var(--blue-dark);
  padding: 80px 0;
  position: relative;
  text-align: center;
}
.impact-wave-top, .impact-wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
}
.impact-wave-top { top: -6px; z-index: 1; }
.impact-wave-bottom { bottom: -6px; z-index: 1; }
.impact-wave-top svg, .impact-wave-bottom svg { width: 100%; height: 100px; display: block; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.impact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.impact-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.impact-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 8px;
}
.impact-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

/* =====================
   TESTIMONIAL
   ===================== */
.testimonial {
  background: var(--cream);
  padding: 80px 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--yellow);
  line-height: 0.5;
  margin-bottom: 16px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.testimonial-author strong {
  display: block;
  font-size: 1rem;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray-light);
}

/* =====================
   CTA
   ===================== */
.cta {
  background: var(--blue-main);
  padding: 80px 0 100px;
  text-align: center;
  color: var(--white);
  position: relative;
}
.cta-wave-top {
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  z-index: 1;
}
.cta-wave-top svg { width: 100%; height: 80px; display: block; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta h2 .highlight { color: var(--yellow); }
.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-icon { color: var(--red-soft); }
.footer-about p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* =====================
   PAGE HEADERS (inner pages)
   ===================== */
.page-header {
  background: var(--blue-main);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  /* no overflow:hidden — lets the wave overlap cleanly into next section */
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.page-header .breadcrumb a { color: var(--yellow); }
.page-header-wave {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  z-index: 1;
}
.page-header-wave svg { width: 100%; height: 80px; display: block; }

/* =====================
   ABOUT PAGE
   ===================== */
.about-content {
  padding: 80px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.value-card p {
  color: var(--gray);
  font-size: 0.95rem;
}
.team-section {
  padding: 80px 0;
  background: var(--blue-light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
}
.team-card-info {
  padding: 20px;
}
.team-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.team-card-info span {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 500;
}

/* =====================
   PROGRAMS PAGE
   ===================== */
.programs-detail {
  padding: 80px 0;
  background: var(--cream);
}
.program-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.program-detail-card.reverse {
  direction: rtl;
}
.program-detail-card.reverse > * {
  direction: ltr;
}
.program-detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 0;
}
.program-detail-text {
  padding: 40px;
}
.program-detail-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.program-detail-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* =====================
   GALLERY PAGE
   ===================== */
.gallery-section {
  padding: 80px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
  border-radius: 0;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; }
.gallery-item:last-child:nth-child(3n+1) { grid-column: 2 / 3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-weight: 600;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =====================
   EVENTS PAGE
   ===================== */
.events-section {
  padding: 80px 0;
  background: var(--cream);
}
.event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  align-items: center;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.event-date {
  background: var(--blue-main);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.event-date .day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
}
.event-date .month {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.event-info .meta {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.event-info p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section {
  padding: 80px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact-detail span {
  font-size: 0.95rem;
  color: var(--gray);
}
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-main);
  box-shadow: 0 0 0 4px rgba(43,108,176,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =====================
   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);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  /* Always show Donate on mobile next to hamburger */
  .nav-donate {
    display: flex !important;
    padding: 10px 18px;
    font-size: 0.82rem;
  }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 60px 24px 100px;
    text-align: center;
  }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; gap: 16px; flex-wrap: wrap; }
  .stat strong { font-size: 1.5rem; }
  .hero-actions { justify-content: center; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid.reverse { direction: ltr; }
  .programs-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .program-detail-card { grid-template-columns: 1fr; }
  .program-detail-card.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  .event-card { align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .team-section [style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonial-card { padding: 36px 24px; }
  .page-header { padding: 110px 0 70px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 16px 32px; width: 100%; justify-content: center; max-width: 300px; }
}

/* =====================
   GALLERY — FILTERS + VIDEOS (real content)
   ===================== */
.hidden { display: none !important; }

/* Neutralize the old decorative mosaic rules for the large filtered grid */
.gallery-grid .gallery-item:nth-child(1) { grid-row: auto; }
.gallery-grid .gallery-item:nth-child(1) img { height: 280px; }
.gallery-grid .gallery-item:last-child:nth-child(3n+1) { grid-column: auto; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 1.5px solid var(--orange-light);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232,114,58,0.3);
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  margin: 56px 0 8px;
}
.gallery-heading:first-of-type { margin-top: 0; }
.gallery-note { color: var(--gray); margin-bottom: 28px; }

/* Video grid + Google Drive responsive embeds */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-embed {
  left: 0;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background: #11151c;
}
.video-embed iframe {
  top: 0; left: 0;
  width: 100%; height: 100%;
  position: absolute;
  border: 0;
}
.video-pending {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 2rem;
  background: repeating-linear-gradient(45deg, #1a1f29, #1a1f29 14px, #151a23 14px, #151a23 28px);
}
.video-pending span { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.video-title {
  padding: 16px 18px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .gallery-heading { font-size: 1.6rem; }
  .filter-bar { gap: 8px; }
  .filter-btn { font-size: 0.82rem; padding: 8px 14px; }
}

/* =====================
   PROGRAMS — MEDIA HUB (topic sections + card strips)
   ===================== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.media-grid.card-media {
  margin: 4px 0 56px;
}
.media-photo {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.media-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.media-photo figcaption {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.35;
}

/* Sessions & Activities */
.sessions-intro {
  text-align: center;
  margin: 72px 0 28px;
}
.topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
}
.topic-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 1.5px solid var(--orange-light);
  border-radius: 999px;
  padding: 8px 16px;
  text-decoration: none;
  transition: var(--transition);
}
.topic-nav a:hover { border-color: var(--orange); color: var(--orange); }
.topic-block {
  margin-bottom: 64px;
  scroll-margin-top: 90px;
}
.topic-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--dark);
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--orange-light);
}

@media (max-width: 900px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .media-grid { grid-template-columns: 1fr; }
  .topic-title { font-size: 1.35rem; }
  .sessions-intro { margin-top: 48px; }
}

/* =====================
   FOOTER SOCIAL ICONS
   ===================== */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icon:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}
.social-icon.soon { opacity: 0.5; }
.social-icon.soon:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  transform: none;
}
