/* =========================================
   BETHESDA HELPING HANDS — MAIN STYLESHEET
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue-deep:    #1A237E;
  --blue-mid:     #283593;
  --blue-brand:   #3949AB;
  --blue-light:   #5C6BC0;
  --blue-pale:    #E8EAF6;
  --gold:         #F5A623;
  --gold-light:   #FFD166;
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --text-dark:    #0D1117;
  --text-mid:     #374151;
  --text-light:   #6B7280;
  --border:       #E5E7EB;
  --shadow-sm:    0 2px 8px rgba(26,35,126,.08);
  --shadow-md:    0 8px 32px rgba(26,35,126,.14);
  --shadow-lg:    0 20px 60px rgba(26,35,126,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

/* ---- Utility ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245,166,35,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-brand);
  border: 2px solid var(--blue-brand);
}
.btn-outline:hover {
  background: var(--blue-brand);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(26,35,126,.95);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(26,35,126,.97);
  padding: .8rem 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.nav-logo-text span {
  font-size: .7rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--blue-deep) !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: .83rem !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.2); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 2px 0;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hamburger .ham-icon,
.hamburger .close-icon { display: block; }
.hamburger.open .ham-icon  { display: none; }
.hamburger:not(.open) .close-icon { display: none; }

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Always-visible gradient background */
.hero-video-wrap .hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(90,110,220,.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245,166,35,.12) 0%, transparent 60%),
    linear-gradient(135deg, #0D1B6E 0%, #1A237E 40%, #283593 80%, #0D1B6E 100%);
}

/* When a real video is added back, it fades in over the gradient */
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero-video-wrap video.loaded { opacity: .35; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,110,.82) 0%,
    rgba(26,35,126,.65) 50%,
    rgba(13,19,64,.88) 100%
  );
  z-index: 1;
}

/* Decorative dots */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-dots::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(245,166,35,.06);
}
.hero-dots::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 60px solid rgba(89,101,220,.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown .8s ease forwards;
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--gold); }

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  animation: fadeDown .9s .1s ease both;
}

.hero-logo-row img {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.25);
  box-shadow: 0 0 40px rgba(245,166,35,.2);
}

.hero-logo-row .divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,.2);
}

.hero-logo-label {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.5;
}
.hero-logo-label strong {
  display: block;
  font-size: .88rem;
  color: var(--gold-light);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeUp .9s .2s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeUp .9s .35s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .9s .5s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  animation: fadeUp .9s .65s ease both;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.5); fill: none; }

/* =====================
   QUICK IMPACT BAR
   ===================== */
.impact-bar {
  background: var(--blue-deep);
  padding: 1.2rem 0;
  overflow: hidden;
}

.impact-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.impact-bar-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 500;
}

.impact-bar-item svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* =====================
   ABOUT PREVIEW
   ===================== */
.about-preview {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--blue-deep);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-image-badge span {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1rem;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-brand);
  transition: all var(--transition);
}

.pillar:hover {
  background: var(--blue-brand);
  transform: translateY(-3px);
}

.pillar:hover .pillar-icon svg { fill: var(--gold); }
.pillar:hover h4, .pillar:hover p { color: var(--white); }

.pillar-icon {
  width: 36px; height: 36px;
  background: rgba(57,73,171,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.pillar:hover .pillar-icon {
  background: rgba(255,255,255,.15);
}

.pillar-icon svg { width: 20px; height: 20px; fill: var(--blue-brand); transition: fill var(--transition); }
.pillar h4 { font-size: .88rem; font-weight: 700; color: var(--blue-deep); margin-bottom: .2rem; transition: color var(--transition); }
.pillar p  { font-size: .78rem; color: var(--text-light); transition: color var(--transition); }

/* =====================
   IMPACT STORIES
   ===================== */
.impact-stories {
  padding: 6rem 0;
  background: var(--off-white);
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

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

.story-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--blue-pale);
}

.story-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.story-card-image .story-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background: linear-gradient(135deg, var(--blue-pale), #C5CAE9);
}

.story-placeholder svg { width: 56px; height: 56px; fill: var(--blue-light); opacity: .5; }
.story-placeholder span { font-size: .78rem; color: var(--blue-light); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

.story-date {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--blue-deep);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

.story-card-body {
  padding: 1.5rem;
}

.story-card-body h3 {
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin-bottom: .5rem;
}

.story-card-body p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
}

.story-tag {
  font-size: .72rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-brand);
  background: var(--blue-pale);
  padding: .25rem .75rem;
  border-radius: 50px;
}

.story-read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}

.story-card:hover .story-read-more { gap: .6rem; }

/* =====================
   VIDEO SECTION
   ===================== */
.video-section {
  padding: 6rem 0;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.video-text .section-title { color: var(--white); }
.video-text .section-subtitle { color: rgba(255,255,255,.7); }

.video-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}

.video-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.video-player-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  aspect-ratio: 16/9;
  background: #0d1117;
}

.video-player-wrap video,
.video-player-wrap iframe {
  width: 100%; height: 100%;
  display: block;
  border: none;
}

.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0d1b6e, #1a237e);
  cursor: pointer;
  transition: background var(--transition);
}

.video-placeholder:hover { background: linear-gradient(135deg, #1a237e, #283593); }

.play-btn {
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 0 16px rgba(245,166,35,.15);
}

.play-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 0 20px rgba(245,166,35,.2);
  transform: scale(1.08);
}

.play-btn svg { width: 30px; height: 30px; fill: var(--blue-deep); margin-left: 4px; }

.video-placeholder p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.video-caption {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  font-style: italic;
}

/* =====================
   MISSION / VISION
   ===================== */
.mission-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.mission-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.mission-card.mission {
  background: var(--blue-deep);
  color: var(--white);
}

.mission-card.vision {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue-deep);
}

.mission-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.mission-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-card.mission .mission-card-icon { background: rgba(255,255,255,.1); }
.mission-card.vision  .mission-card-icon { background: rgba(26,35,126,.12); }

.mission-card-icon svg { width: 28px; height: 28px; }
.mission-card.mission .mission-card-icon svg { fill: var(--gold); }
.mission-card.vision  .mission-card-icon svg { fill: var(--blue-deep); }

.mission-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.mission-card.mission h3 { color: var(--gold); }
.mission-card.vision h3  { color: var(--blue-deep); }

.mission-card p {
  line-height: 1.8;
  opacity: .9;
}

/* =====================
   PARTNERSHIP SECTION
   ===================== */
.partnership {
  padding: 6rem 0;
  background: var(--off-white);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.partnership-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.partnership-info p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.partner-perks {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.5rem;
}

.perk {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  color: var(--text-mid);
}

.perk svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* Form */
.partner-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.partner-form h3 {
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blue-pale);
}

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

.form-group label {
  display: block;
  font-size: .83rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 4px rgba(57,73,171,.1);
  background: var(--white);
}

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

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--blue-deep);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
}

.form-submit:hover {
  background: var(--blue-brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--blue-deep);
}

.form-success svg { width: 56px; height: 56px; fill: #22c55e; margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.2rem; margin-bottom: .5rem; }
.form-success p { color: var(--text-mid); font-size: .9rem; }

/* =====================
   DONATE / CTA BAND
   ===================== */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gold) 0%, #F5C842 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A237E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(26,35,126,.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

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

.btn-dark {
  background: var(--blue-deep);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,35,126,.35);
}

.btn-white {
  background: var(--white);
  color: var(--blue-deep);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #080D2B;
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid rgba(255,255,255,.15);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-brand strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .3rem;
}

.social-links {
  display: flex;
  gap: .8rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); }
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); transition: fill var(--transition); }
.social-link:hover svg { fill: var(--blue-deep); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1rem;
  font-size: .87rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }

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

.footer-bottom span { color: rgba(255,255,255,.45); }
.footer-bottom a { color: var(--gold); }

/* =====================
   PAGE HERO (Inner pages)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-brand) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .75rem;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }

/* =====================
   ABOUT PAGE
   ===================== */
.about-full { padding: 5rem 0; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-story img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-story-img-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--blue-pale), #C5CAE9);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.about-story-img-placeholder svg { width: 80px; height: 80px; fill: var(--blue-light); opacity: .4; }
.about-story-img-placeholder span { color: var(--blue-light); font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

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

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}

.value-icon {
  width: 64px; height: 64px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--transition);
}
.value-card:hover .value-icon { background: var(--blue-brand); }
.value-icon svg { width: 30px; height: 30px; fill: var(--blue-brand); transition: fill var(--transition); }
.value-card:hover .value-icon svg { fill: var(--white); }

.value-card h3 { font-size: 1.05rem; color: var(--blue-deep); margin-bottom: .6rem; }
.value-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

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

.contact-info h2 {
  font-size: 2rem;
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue-brand);
  transition: all var(--transition);
}
.contact-method:hover {
  background: var(--blue-pale);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px; height: 48px;
  background: var(--blue-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; fill: var(--white); }

.contact-method-text label {
  display: block;
  font-size: .75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  margin-bottom: .2rem;
}

.contact-method-text a,
.contact-method-text span {
  font-size: .95rem;
  color: var(--blue-deep);
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
}
.whatsapp-btn svg { width: 22px; height: 22px; fill: var(--white); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin-bottom: 1.75rem;
}

/* =====================
   DUAL VIDEO LAYOUT
   ===================== */
.videos-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-block {
  display: flex;
  flex-direction: column;
}

.video-block .video-player-wrap {
  flex: 1;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

/* =====================
   TOAST
   ===================== */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--blue-deep);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .8rem;
  transform: translateY(80px);
  opacity: 0;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; fill: #22c55e; }

/* =====================
   MOBILE MENU
   ===================== */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  /* Hide desktop links, show slide-in drawer */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 88vw);
    height: 100vh;
    background: var(--blue-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 3rem;
    gap: 1.5rem;
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta {
    padding: .75rem 2rem;
    font-size: .95rem !important;
    white-space: nowrap;
    align-self: flex-start;
  }

  /* Shrink logo text on small screens so it doesn't push hamburger */
  .nav-logo-text strong { font-size: .8rem; }
  .nav-logo-text span   { font-size: .62rem; }
  .nav-logo img         { width: 40px; height: 40px; }
}

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

@media (max-width: 768px) {
  .about-grid,
  .video-grid,
  .partnership-grid,
  .mission-grid,
  .about-story,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .videos-dual { grid-template-columns: 1fr; gap: 1.75rem; }

  .about-image-badge { right: 0; }
  .about-image-main { height: 320px; }

  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.4rem; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .impact-bar-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-logo-row { flex-wrap: wrap; }

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

  .partner-form { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* =====================
   DESKTOP SPACING FIX
   ===================== */
@media (min-width: 1025px) {
  /* Reduce hero height — content was lost in large empty space */
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 0 2.5rem; }

  /* Tighten all major section padding from 6rem → 4rem */
  .about-preview,
  .impact-stories,
  .video-section,
  .mission-section,
  .partnership { padding: 4rem 0; }

  /* Tighten 5rem sections */
  .about-full,
  .contact-section { padding: 3.5rem 0; }

  /* Page hero (inner pages) */
  .page-hero { padding: 5rem 0 3rem; }

  /* Section header bottom margin */
  .section-header { margin-bottom: 2.5rem; }

  /* About grid gap */
  .about-grid { gap: 3.5rem; }

  /* Partnership grid gap */
  .partnership-grid { gap: 3.5rem; }

  /* Video grid gap */
  .video-grid { gap: 3rem; }
}
