/* =============================================
   LEAP - Livelihood Empowerment Against Poverty
   Main Stylesheet
   ============================================= */

/* --- CSS Variables --- */
:root {
  --green:   #14B8A6;
  --green-dark: #0d9488;
  --green-light: #f0fdfa;
  --gold:    #FCD116;
  --red:     #CE1126;
  --dark:    #0F172A;
  --gray:    #64748b;
  --light:   #F1F5F9;
  --white:   #ffffff;
  --border:  #e2e8f0;
  --shadow:  0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 8px 40px rgba(15,23,42,0.14);
  --radius:  12px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--gray); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { color: var(--dark); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 620px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-green { background: var(--green); color: var(--white); }
.section-green .section-title { color: var(--white); }
.section-green .section-label { background: rgba(255,255,255,0.15); color: var(--white); }
.section-green p { color: rgba(255,255,255,0.85); }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,107,63,0.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,107,63,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(252,209,22,0.35);
}
.btn-gold:hover { background: #e6be00; transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .name { font-weight: 800; font-size: 1.05rem; color: var(--green); }
.nav-logo-text .tagline { font-size: 0.68rem; color: var(--gray); letter-spacing: 0.04em; }
.navbar:not(.scrolled) .nav-logo-text .name { color: var(--white); }
.navbar:not(.scrolled) .nav-logo-text .tagline { color: rgba(255,255,255,0.7); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  background: var(--green-light);
  color: var(--green);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;          /* flush to the nav-item — no gap to cross */
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0.5rem 0.5rem; /* top padding bridges the visual gap */
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-dropdown a:hover { background: var(--green-light); color: var(--green); }
.nav-dropdown-arrow { font-size: 0.7rem; margin-left: 2px; }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
}
.nav-cta:hover { background: #e6be00 !important; color: var(--dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { background: var(--green-light); color: var(--green); }
.mobile-menu .mobile-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 1rem 0 0.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/leap_header_.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 20s ease infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,75,44,0.85) 0%, rgba(26,35,50,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(252,209,22,0.15);
  border: 1px solid rgba(252,209,22,0.4);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-title .highlight { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.hero-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.hero-stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.hero-stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll span { font-size: 1.4rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 998;
}
.announcement-bar .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-img-badge .number { font-size: 2.5rem; font-weight: 800; line-height: 1; color: var(--gold); }
.about-img-badge .label { font-size: 0.8rem; font-weight: 500; opacity: 0.85; }

.about-text { padding-left: 1rem; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.pillar-card {
  background: var(--light);
  border-radius: 10px;
  padding: 1.1rem;
  border-left: 3px solid var(--green);
  transition: var(--transition);
}
.pillar-card:hover { background: var(--green-light); transform: translateX(3px); }
.pillar-card h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 0.25rem; }
.pillar-card p { font-size: 0.8rem; margin: 0; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: var(--green);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }

/* ============================================================
   PROGRAM OVERVIEW CARDS
   ============================================================ */
.program-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }
.program-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.program-card h3 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.1rem; }
.program-card p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.75rem; }
.news-card p { font-size: 0.875rem; flex: 1; }
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.news-card-link:hover { gap: 0.7rem; }

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.story-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.story-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.story-card:hover .story-card-image img { transform: scale(1.06); }
.story-card-body { padding: 1.75rem; }
.story-card-body .quote-mark { color: var(--gold); font-size: 3rem; line-height: 0.5; margin-bottom: 1rem; font-family: serif; }
.story-card h3 { color: var(--dark); font-size: 1.05rem; margin-bottom: 0.5rem; }
.story-card .location { font-size: 0.8rem; color: var(--green); font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.3rem; }
.story-card p { font-size: 0.875rem; }

/* ============================================================
   ELIGIBILITY
   ============================================================ */
.eligibility-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray);
  transition: var(--transition);
  background: var(--white);
}
.tab-btn.active, .tab-btn:hover { border-color: var(--green); background: var(--green); color: var(--white); }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.eligibility-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.eligibility-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.eligibility-card:hover { border-color: var(--green); transform: translateY(-4px); }
.eligibility-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.eligibility-card h4 { color: var(--dark); margin-bottom: 0.5rem; }
.eligibility-card p { font-size: 0.875rem; margin: 0; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; counter-reset: step; }
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--green); transform: translateY(-4px); }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
.process-step p { font-size: 0.8rem; margin: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; }
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.team-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-image img { transform: scale(1.06); }
.team-card-body { padding: 1.25rem 1rem 1.5rem; }
.team-card h3 { color: var(--dark); font-size: 1rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--green); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.team-card p { font-size: 0.8rem; margin: 0; }
.team-card-socials { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.75rem; }
.team-card-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--gray);
  transition: var(--transition);
}
.team-card-socials a:hover { background: var(--green); color: var(--white); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  color: var(--green);
}
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  font-size: 0.925rem;
  line-height: 1.8;
}
.faq-answer-inner ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.faq-answer-inner ul li { margin-bottom: 0.3rem; color: var(--gray); }

/* ============================================================
   PAYMENT INFO
   ============================================================ */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.payment-table th {
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
}
.payment-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.payment-table tr:nth-child(even) td { background: var(--light); }
.payment-table tr:last-child td { border-bottom: none; }
.payment-table .current { background: var(--green-light) !important; }
.payment-table .current td { color: var(--green); font-weight: 600; }
.amount-highlight { color: var(--green); font-weight: 700; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--green); transform: translateX(4px); }
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 0.25rem; }
.contact-info-card p { font-size: 0.875rem; margin: 0; }

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   ORG CHART
   ============================================================ */
.org-chart-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.management-units { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.unit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  transition: var(--transition);
}
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.unit-card h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
.unit-card p { font-size: 0.8rem; margin: 0; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--dark) 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/leap_header_.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ============================================================
   DOWNLOADS
   ============================================================ */
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.download-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}
.download-card:hover { border-color: var(--green); transform: translateX(4px); }
.download-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.download-card h4 { color: var(--dark); font-size: 0.95rem; margin-bottom: 0.3rem; }
.download-card p { font-size: 0.8rem; margin: 0; }
.download-btn {
  margin-left: auto;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.download-btn:hover { background: var(--green-dark); transform: scale(1.1); }

/* ============================================================
   GALLERY (Video/Events)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.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: rgba(0,75,44,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--green);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 40px; }
.footer-logo .name { font-weight: 800; font-size: 1.1rem; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social:hover { background: var(--green); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-2px); }

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

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: var(--green-light);
  color: var(--green);
  margin: 0.2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-img-badge { left: 0.5rem; bottom: 0.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { gap: 2rem; }
}

/* --- Hero Payment Teaser --- */
.hero-payment-teaser {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  background: rgba(252,209,22,0.12);
  border: 1px solid rgba(252,209,22,0.35);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  flex-wrap: wrap;
}
.hero-payment-teaser i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.hero-payment-teaser strong { color: var(--gold); }
.hero-payment-teaser .hero-payment-arrow {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.hero-payment-teaser:hover {
  background: rgba(252,209,22,0.2);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* --- Payment Highlight Section --- */
.payment-highlight-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 60%, #0d9488 100%);
  position: relative;
  overflow: hidden;
}
.payment-highlight-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(20,184,166,0.08);
  pointer-events: none;
}
.payment-highlight-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(252,209,22,0.05);
  pointer-events: none;
}

/* Amount showcase cards */
.payment-amount-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.payment-amount-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.payment-amount-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(20,184,166,0.5);
  transform: translateY(-4px);
}
.payment-amount-card.payment-amount-featured {
  background: rgba(20,184,166,0.15);
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(20,184,166,0.25);
}
.payment-amount-card.payment-amount-featured:hover { transform: translateY(-10px); }
.payment-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}
.payment-hh-size {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.payment-amount {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.payment-amount-featured .payment-amount { color: #fff; }
.payment-per {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* Facts strip */
.payment-facts-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.payment-fact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 2rem;
  flex: 1;
  min-width: 160px;
}
.payment-fact i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.payment-fact div { display: flex; flex-direction: column; }
.payment-fact strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.payment-fact span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}
.payment-fact-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* --- Responsive: Payment Section --- */
@media (max-width: 900px) {
  .payment-amount-showcase { grid-template-columns: repeat(2, 1fr); }
  .payment-amount-card.payment-amount-featured { transform: none; }
  .payment-facts-strip { gap: 1rem; }
  .payment-fact-divider { display: none; }
  .payment-fact { padding: 0.5rem 1rem; min-width: 140px; }
}
@media (max-width: 540px) {
  .payment-amount-showcase { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .payment-amount { font-size: 1.6rem; }
  .payment-facts-strip { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
  .hero-payment-teaser { font-size: 0.8rem; }
}

/* Print styles */
@media print {
  .navbar, .scroll-top, .announcement-bar, .footer-socials { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}
