/* =============================================
   EMET — Global Stylesheet
   Design: Dark navy + Teal + Coral palette
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:       #0F2644;
  --navy-mid:   #1A3A5C;
  --navy-light: #1E4976;
  --teal:       #1ABCB4;
  --teal-light: #4DD4CD;
  --coral:      #E8694A;
  --coral-light:#F0896E;
  --warm:       #D4AA3F;
  --warm-light: #E6C25F;
  --blue-soft:  #4A90D9;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --gray-100:   #EFF2F7;
  --gray-200:   #DDE3EE;
  --gray-400:   #9AAABF;
  --gray-600:   #5A6A82;
  --gray-800:   #2C3E55;
  --text-dark:  #0F1F33;

  --font-body:  'Inter', sans-serif;
  --font-head:  'Montserrat', sans-serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;

  --shadow-sm: 0 2px 8px rgba(15,38,68,0.10);
  --shadow-md: 0 8px 32px rgba(15,38,68,0.15);
  --shadow-lg: 0 20px 60px rgba(15,38,68,0.20);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
.text-center { text-align: center; }
.section {
  padding: var(--sp-2xl) 0;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 38, 68, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(15,38,68,0.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-light);
  background: rgba(26,188,180,0.10);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(26,188,180,0.35);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,188,180,0.45) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.active { display: block; opacity: 1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26,188,180,0.4);
}
.btn-primary:hover { background: var(--teal-light); box-shadow: 0 12px 32px rgba(26,188,180,0.5); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.btn-white:hover { background: var(--gray-100); }
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: var(--white); }
.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232,105,74,0.4);
}
.btn-coral:hover { background: var(--coral-light); box-shadow: 0 12px 32px rgba(232,105,74,0.5); }
/* Sharp / square-edged button variant */
.btn-sharp {
  border-radius: var(--radius-sm) !important;
}

/* ============================================
   SECTION LABELS, TITLES
   ============================================ */
.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto var(--sp-lg);
  line-height: 1.8;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  opacity: 0.3;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(26,188,180,0.2); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(232,105,74,0.15); bottom: -50px; left: -80px; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(212,170,63,0.15); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 var(--sp-md);
  margin-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,188,180,0.07);
  border: 1px solid rgba(26,188,180,0.18);
  color: var(--teal-light);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: var(--sp-md);
  animation: fadeInDown 0.8s ease;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-md);
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto var(--sp-lg);
  line-height: 1.8;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-tagline em { color: var(--warm-light); font-style: normal; font-weight: 600; }
.hero-buttons {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-indicator svg {
  width: 32px; height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* PAGE HERO (for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(26,188,180,0.15) 100%);
  padding: calc(var(--nav-h) + var(--sp-2xl)) 0 var(--sp-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,188,180,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,105,74,0.1) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--sp-sm);
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}
.hebrew-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: linear-gradient(135deg, rgba(212,170,63,0.12), rgba(212,170,63,0.05));
  border: 1px solid rgba(212,170,63,0.3);
  color: var(--warm);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--sp-md);
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: var(--sp-md);
  font-size: 1.05rem;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: background var(--transition), transform var(--transition);
}
.about-value:hover { background: var(--gray-200); transform: translateX(4px); }
.about-value-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-value-icon.teal  { background: rgba(26,188,180,0.15); }
.about-value-icon.coral { background: rgba(232,105,74,0.15); }
.about-value-icon.warm  { background: rgba(212,170,63,0.15); }
.about-value-icon.blue  { background: rgba(74,144,217,0.15); }

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs { background: var(--gray-100); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--sp-md);
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card-image { position: relative; height: 220px; overflow: hidden; }
.program-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.program-card:hover .program-card-image img { transform: scale(1.06); }
.program-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}
.program-card-badge.teal  { background: var(--teal); }
.program-card-badge.coral { background: var(--coral); }
.program-card-badge.warm  { background: var(--warm); }
.program-card-body { padding: var(--sp-md); }
.program-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.program-card-body p { color: var(--gray-600); font-size: 0.97rem; margin-bottom: var(--sp-sm); }
.program-features { display: flex; flex-direction: column; gap: 8px; }
.program-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--gray-800); }
.check { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   IMPACT / STATS
   ============================================ */
.impact { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.impact .section-label { color: var(--teal-light); }
.impact .section-title { color: var(--white); }
.impact .section-subtitle { color: rgba(255,255,255,0.65); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: var(--sp-lg) var(--sp-md);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); }
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-sm);
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-md);
}
.stat-icon.teal  { background: rgba(26,188,180,0.2); }
.stat-icon.coral { background: rgba(232,105,74,0.2); }
.stat-icon.warm  { background: rgba(212,170,63,0.2); }
.stat-icon.blue  { background: rgba(74,144,217,0.2); }
.stat-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,38,68,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-sm);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   MISSION BANNER
   ============================================ */
/* Full-bleed mission banner — dark section, no inner card box */
.mission-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.mission-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,188,180,0.15) 0%, transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.mission-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,105,74,0.08) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.mission-card {
  background: transparent;
  border-radius: 0;
  padding: var(--sp-2xl) var(--sp-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}
.mission-card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}
.mission-card p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto var(--sp-lg); font-size: 1.05rem; }

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-sm);
  display: inline-block;
}
.value-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.value-card p { color: var(--gray-600); font-size: 0.97rem; }

.story-section { background: var(--gray-100); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}
.story-text p { color: var(--gray-600); margin-bottom: var(--sp-sm); font-size: 1.05rem; }

.team-section { background: var(--white); }
.contact-highlight {
  background: linear-gradient(135deg, rgba(26,188,180,0.08), rgba(232,105,74,0.05));
  border: 1px solid rgba(26,188,180,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  margin-top: var(--sp-lg);
  text-align: center;
}
.contact-highlight h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 8px; }
.contact-highlight p { color: var(--gray-600); margin-bottom: var(--sp-md); }

/* ============================================
   PROGRAMS PAGE SPECIFIC
   ============================================ */
.programs-full { background: var(--white); }
.program-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  margin-bottom: var(--sp-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.program-full-card.reverse { direction: rtl; }
.program-full-card.reverse > * { direction: ltr; }
.program-full-image { height: 400px; overflow: hidden; }
.program-full-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.program-full-card:hover .program-full-image img { transform: scale(1.04); }
.program-full-body { padding: var(--sp-xl); }
.program-full-body .program-card-badge {
  position: static;
  display: inline-block;
  margin-bottom: var(--sp-sm);
}
.program-full-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}
.program-full-body p { color: var(--gray-600); margin-bottom: var(--sp-md); font-size: 1.05rem; }
.program-full-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--sp-md); }
.program-full-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--gray-800); font-size: 0.97rem;
}
.program-full-list li .check { font-size: 0.9rem; margin-top: 2px; }

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: var(--sp-md);
}
.subject-tag {
  background: rgba(26,188,180,0.1);
  border: 1px solid rgba(26,188,180,0.25);
  color: var(--navy-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition);
}
.subject-tag:hover { background: rgba(26,188,180,0.2); }

.how-it-works { background: var(--gray-100); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.step-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--gray-600); font-size: 0.93rem; }

/* ============================================
   IMPACT PAGE SPECIFIC
   ============================================ */
.impact-full { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.impact-full .section-label { color: var(--teal-light); }
.impact-full .section-title { color: var(--white); }
.impact-full .section-subtitle { color: rgba(255,255,255,0.65); }

.initiatives-section { background: var(--white); }
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-md);
}
.initiative-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.initiative-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-sm);
}
.initiative-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.initiative-card p { color: var(--gray-600); font-size: 0.97rem; }

.gallery-full { background: var(--gray-100); }
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--sp-sm);
}
.gallery-item-full {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item-full.tall { grid-row: span 2; }
.gallery-item-full img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item-full:hover img { transform: scale(1.08); }
.gallery-item-full .gallery-overlay { opacity: 1; background: linear-gradient(to top, rgba(15,38,68,0.7) 0%, transparent 60%); }

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-xl);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-sm); }
.contact-info-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  transition: transform var(--transition), background var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); background: var(--gray-200); }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info-icon.teal  { background: rgba(26,188,180,0.15); }
.contact-info-icon.coral { background: rgba(232,105,74,0.15); }
.contact-info-icon.warm  { background: rgba(212,170,63,0.15); }
.contact-info-text h4 { color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.contact-info-text a, .contact-info-text p { color: var(--gray-600); font-size: 0.97rem; }
.contact-info-text a:hover { color: var(--teal); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: var(--sp-md);
}
.form-group { margin-bottom: var(--sp-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,188,180,0.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: var(--sp-2xl) 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-top: var(--sp-sm);
  line-height: 1.8;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom-links { display: flex; gap: var(--sp-md); }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  justify-content: center;
  margin-top: var(--sp-sm);
}
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================
   SUCCESS / ERROR MESSAGES
   ============================================ */
.form-message {
  display: none;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  font-weight: 500;
  margin-top: var(--sp-sm);
}
.form-message.success {
  background: rgba(26,188,180,0.12);
  border: 1px solid rgba(26,188,180,0.3);
  color: #0d9488;
}
.form-message.error {
  background: rgba(232,105,74,0.12);
  border: 1px solid rgba(232,105,74,0.3);
  color: var(--coral);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .program-full-card { grid-template-columns: 1fr; }
  .program-full-card.reverse { direction: ltr; }
  .program-full-image { height: 280px; }
}

@media (max-width: 768px) {
  :root { --sp-2xl: 4rem; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + var(--sp-sm)) var(--sp-md) var(--sp-md);
    z-index: 1000;
    transition: right var(--transition);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
  }
  .nav-cta { margin-top: var(--sp-sm); }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .gallery-grid, .gallery-grid-full { grid-template-columns: 1fr 1fr; }
  .gallery-item-full.tall { grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .mission-card { padding: var(--sp-lg); }
  .program-full-body { padding: var(--sp-lg); }
  .contact-form-card { padding: var(--sp-lg); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-grid, .gallery-grid-full { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   NAVBAR LOGO — SVG variant (wider, no border-radius)
   ============================================ */
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  border-radius: 0;
  background: none;
}
.footer-brand .nav-logo img {
  filter: brightness(0) invert(1);
  height: 72px;
  max-width: 280px;
  opacity: 0.95;
}

/* ============================================
   COMING SOON MODAL
   ============================================ */
.coming-soon-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 38, 68, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s ease;
}
.coming-soon-overlay.active {
  display: flex;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.coming-soon-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl) var(--sp-2xl);
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(15, 38, 68, 0.35);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.coming-soon-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.coming-soon-close:hover {
  background: var(--coral);
  color: var(--white);
}
.coming-soon-icon {
  font-size: 3.5rem;
  margin-bottom: var(--sp-sm);
  animation: rocketBounce 2s ease-in-out infinite;
}
@keyframes rocketBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.coming-soon-modal h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.02em;
}
.coming-soon-modal p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { background: var(--off-white); }
.faq-accordion {
  max-width: 860px;
  margin: var(--sp-lg) auto 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: background var(--transition);
}
.faq-item:last-child { border-bottom: none; }
.faq-item.open { background: #f0fdfc; }
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  border-radius: 0 2px 2px 0;
}
.faq-item.open::before { transform: scaleY(1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  cursor: pointer;
  user-select: none;
}
.faq-question h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  flex: 1;
  transition: color var(--transition);
}
.faq-item.open .faq-question h3 { color: var(--teal); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-600);
  background: var(--white);
  transition: transform 0.35s ease, background var(--transition), border-color var(--transition), color var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0.25rem 1.75rem 1.35rem 4rem;
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ============================================
   APAA-STYLE ICON CARDS (4th image inspiration)
   ============================================ */
.icon-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.icon-card-symbol {
  font-size: 3rem;
  margin-bottom: var(--sp-sm);
  display: block;
  line-height: 1;
}
.icon-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.icon-card .accent-line {
  width: 40px;
  height: 3px;
  background: var(--teal);
  margin: 10px auto 14px;
  border-radius: 2px;
}
.icon-card p {
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.75;
}

