/* ================================================================
   YOUNG FOUNDERS SOCIETY — Stylesheet
   Design: WebXFactor, Apr 2026
   Brand: Bold + Empowering — "Build the Future TOGETHER"
   ================================================================ */

/* ── Design Tokens ── */
:root {
  --color-primary: #1569CA;
  --color-primary-dark: #0E4F9E;
  --color-primary-light: #3D8BD3;
  --color-accent: #89BEE6;
  --color-accent-pale: #AED3EE;
  --color-dark: #0A0A0A;
  --color-dark-soft: #1A1A2E;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F8FC;
  --color-bg-dark: #0D1117;
  --color-text: #1A1A2E;
  --color-text-light: #5A6680;
  --color-text-inverse: #FFFFFF;
  --color-border: #D6E4F0;
  --color-success: #22C55E;
  --color-error: #EF4444;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: 6rem 1.5rem;
  --container-max: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms var(--ease);
  --transition-normal: 300ms var(--ease);
  --transition-slow: 500ms var(--ease);
  --shadow-xs: 0 1px 3px rgba(21,105,202,.04);
  --shadow-sm: 0 2px 8px rgba(21,105,202,.06);
  --shadow-md: 0 4px 24px rgba(21,105,202,.1);
  --shadow-lg: 0 12px 48px rgba(21,105,202,.15);
  --shadow-xl: 0 20px 60px rgba(21,105,202,.2);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  :root { --transition-fast: 0ms; --transition-normal: 0ms; --transition-slow: 0ms; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important; transform: none !important;
  }
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================================
   SKIP LINK
   ================================================================ */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--color-primary); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; font-size: 0.85rem;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 0; outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  padding: 0;
  border-bottom-color: var(--color-border);
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 2rem;
}

.header-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.header-logo img {
  height: 40px; width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .header-logo img { height: 34px; }
.header-logo span {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
  color: var(--color-dark); letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--color-text-light); font-weight: 500; font-size: 0.9rem;
  position: relative; padding: 0.25rem 0;
  transition: color var(--transition-normal);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--color-primary); border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--color-dark); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--color-primary); font-weight: 600; }

/* Nav CTA button */
.nav-links .btn-primary {
  font-size: 0.85rem; padding: 0.6rem 1.5rem;
  color: #fff;
}
.nav-links .btn-primary:hover { color: #fff; }
.nav-links .btn-primary::after { display: none; }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; background: none; border: none; cursor: pointer;
  padding: 4px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 3px; background: var(--color-dark);
  margin: 4px auto; transition: all var(--transition-normal);
  border-radius: 2px;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,17,23,.4); z-index: 998;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.nav-overlay.visible { display: block; opacity: 1; }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    flex-direction: column; background: #fff; padding: 5rem 2rem 2rem;
    gap: 1.5rem; box-shadow: -4px 0 24px rgba(0,0,0,.15);
    transition: right 0.4s var(--ease); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; color: var(--color-text); }
  .nav-links .btn-primary { margin-top: 1rem; width: 100%; justify-content: center; color: #fff; }
  .header-logo span { font-size: 0.9rem; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: all var(--transition-normal); text-decoration: none;
  font-family: var(--font-body); position: relative;
}

.btn-primary {
  background: var(--color-primary); color: #fff;
  box-shadow: 0 4px 16px rgba(21,105,202,.25);
}
.btn-primary:hover {
  background: var(--color-primary-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21,105,202,.35);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(21,105,202,.2); }

.btn-secondary {
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary); color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff; color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-white:hover {
  background: var(--color-accent-pale); color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* ================================================================
   HERO — Full-screen with background image + Ken Burns
   ================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

/* Background image layer with Ken Burns */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Dark overlay gradient */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,.82) 0%,
    rgba(14,42,74,.75) 40%,
    rgba(21,105,202,.6) 100%
  );
}

/* Decorative radial glows */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(21,105,202,.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(137,190,230,.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; max-width: 760px;
  animation: heroFadeUp 1s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-accent) 0%, #5BA3D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem; max-width: 580px;
  margin-left: auto; margin-right: auto;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero badge row */
.hero-badges {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,.9);
}
.hero-badge svg { flex-shrink: 0; opacity: 0.85; }

/* ================================================================
   SECTIONS — Base
   ================================================================ */
section { padding: var(--section-padding); }

.section-header {
  text-align: center; max-width: 660px; margin: 0 auto 3.5rem;
}
.section-header .label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--color-primary-dark); margin-bottom: 0.75rem;
  position: relative;
}
.section-header .label::before,
.section-header .label::after {
  content: ''; position: absolute; top: 50%;
  width: 28px; height: 1px; background: var(--color-primary); opacity: 0.3;
}
.section-header .label::before { right: calc(100% + 10px); }
.section-header .label::after { left: calc(100% + 10px); }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-text-light); font-size: 1.05rem; line-height: 1.7; }

.bg-alt { background: var(--color-bg-alt); }
.bg-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  position: relative;
}
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .card h3 { color: var(--color-dark); }
.bg-dark .card p { color: var(--color-text-light); }
.bg-dark p { color: rgba(255,255,255,.75); }
.bg-dark .label { color: var(--color-accent); }
.bg-dark .label::before,
.bg-dark .label::after { background: var(--color-accent); }

/* ================================================================
   CARDS — Enhanced with images
   ================================================================ */
.card-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Card with top image */
.card--image {
  padding: 0;
}
.card--image .card-image {
  position: relative; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 16/10;
}
.card--image .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card--image:hover .card-image img {
  transform: scale(1.06);
}
.card--image .card-body { padding: 1.75rem; }

/* Card top accent border */
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--color-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(21,105,202,.06) 0%, rgba(21,105,202,.12) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--color-primary);
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; }

/* ================================================================
   SPLIT SECTIONS — Image + Text side by side
   ================================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--section-padding);
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}

/* Decorative accent on images */
.split-image::after {
  content: ''; position: absolute;
  bottom: -12px; right: -12px;
  width: 120px; height: 120px;
  border: 3px solid var(--color-primary);
  border-radius: var(--radius);
  opacity: 0.2;
  z-index: -1;
}

.split-content .label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--color-primary-dark); margin-bottom: 0.75rem;
}
.split-content h2 { margin-bottom: 1.25rem; }
.split-content p {
  color: var(--color-text-light); font-size: 1rem; line-height: 1.8;
  margin-bottom: 1rem;
}
.split-content p:last-of-type { margin-bottom: 2rem; }

.split-content .feature-list {
  list-style: none; margin-bottom: 2rem;
}
.split-content .feature-list li {
  padding: 0.5rem 0; padding-left: 1.75rem;
  position: relative; color: var(--color-text-light);
}
.split-content .feature-list li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-section.reverse { direction: ltr; }
  .split-image::after { display: none; }
}

/* ================================================================
   STATS — With counter animation + background texture
   ================================================================ */
.stats-section {
  position: relative;
  background: var(--color-bg-dark);
  color: #fff;
  overflow: hidden;
}
.stats-section h2, .stats-section h3 { color: #fff; }
.stats-section p { color: rgba(255,255,255,.85); }
.stats-section .label { color: var(--color-accent); }
.stats-section .label::before,
.stats-section .label::after { background: var(--color-accent); }

.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(21,105,202,.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(137,190,230,.1) 0%, transparent 40%);
  pointer-events: none;
}

.stats-row {
  position: relative; z-index: 1;
  display: grid; gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem; color: rgba(255,255,255,.75);
  margin-top: 0.5rem; font-weight: 500;
}

.stat-item::after {
  content: ''; display: block;
  width: 30px; height: 2px;
  background: var(--color-primary);
  margin: 1rem auto 0;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* ================================================================
   TESTIMONIALS — Enhanced with avatars
   ================================================================ */
.testimonial-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial {
  background: #fff; border-radius: var(--radius); padding: 2.25rem;
  border: 1px solid var(--color-border); position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial::before {
  content: '\201C'; font-size: 5rem; color: var(--color-accent-pale);
  font-family: Georgia, serif; line-height: 1;
  position: absolute; top: 0.5rem; left: 1.5rem;
}

.testimonial p {
  font-style: italic; color: var(--color-text);
  padding-top: 2.5rem; margin-bottom: 1.5rem;
  font-size: 0.98rem; line-height: 1.8;
}

.testimonial-footer { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info {}
.testimonial-author { font-weight: 600; font-size: 0.9rem; color: var(--color-dark); }
.testimonial-role { font-size: 0.8rem; color: var(--color-text-light); margin-top: 2px; }

/* ================================================================
   IMAGE GALLERY — Grid with hover overlay
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}

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

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

.gallery-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.75) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  opacity: 0; transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption { opacity: 1; }

.gallery-caption span {
  color: #fff; font-size: 0.85rem; font-weight: 600;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-caption span,
.gallery-item:focus-within .gallery-caption span { transform: translateY(0); }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   TIMELINE — Vertical with connecting line
   ================================================================ */
.timeline {
  position: relative; max-width: 700px; margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: ''; position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-accent-pale) 100%);
}

.timeline-item {
  position: relative; padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: ''; position: absolute;
  left: -3rem; top: 0.25rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 3px var(--color-primary);
}

.timeline-year {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.85rem; color: var(--color-primary);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.timeline-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.timeline-item p { color: var(--color-text-light); font-size: 0.9rem; }

.bg-alt .timeline::before {
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-accent-pale) 100%);
}
.bg-alt .timeline-item::before {
  border-color: var(--color-bg-alt);
}

/* ================================================================
   FAQ — Accordion
   ================================================================ */
.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-item:hover { background: rgba(244,248,252,.5); }

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0.5rem; font-size: 1.05rem; font-weight: 600;
  color: var(--color-text); text-align: left; font-family: var(--font-body);
  gap: 1rem; min-height: 44px;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--color-primary); }
.faq-question:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: 4px; }

.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  transition: transform var(--transition-normal);
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 0.5rem 1.25rem;
  color: var(--color-text-light); line-height: 1.8;
}

/* ================================================================
   FORMS
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600;
  margin-bottom: 0.4rem; font-size: 0.9rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 1rem; transition: all var(--transition-fast);
  background: #fff; color: var(--color-text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(21,105,202,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: var(--color-error); font-size: 0.85rem; margin-top: 0.3rem; display: none; }
.form-group.error input, .form-group.error textarea { border-color: var(--color-error); }
.form-group.error .form-error { display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-success {
  background: #f0fdf4; border: 1px solid var(--color-success); border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem; color: #166534; font-weight: 500; display: none;
}

.contact-info-card {
  background: var(--color-bg-alt); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--color-border);
}
.contact-info-card h3 { margin-bottom: 1.5rem; }

.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.75rem 0;
}
.contact-info-item svg {
  flex-shrink: 0; color: var(--color-primary);
  margin-top: 2px;
}
.contact-info-item a { color: var(--color-text); }
.contact-info-item a:hover { color: var(--color-primary); }

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

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--color-bg-dark); color: rgba(255,255,255,.7);
  padding: 4.5rem 2rem 2rem;
}

.footer-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer-col h3 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,.75); font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--color-accent); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }

.footer-bottom {
  max-width: var(--container-max); margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--color-accent); }

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

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0E4F9E 60%, var(--color-dark-soft) 100%);
  color: #fff; text-align: center; padding: 5rem 1.5rem;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(137,190,230,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.95); margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }

/* ================================================================
   PAGE HERO — Inner pages
   ================================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #0E2A4A 50%, var(--color-primary-dark) 100%);
  color: #fff; padding: 9rem 1.5rem 4rem; text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(21,105,202,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(137,190,230,.1) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered delays */
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* ================================================================
   GRADIENT TEXT
   ================================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   PARTNERS / BADGES
   ================================================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.partner-card p { font-size: 0.9rem; color: var(--color-text-light); }

.partner-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(21,105,202,.12) 0%, rgba(21,105,202,.22) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.5rem;
  color: var(--color-primary);
}
.partner-icon svg { width: 28px; height: 28px; }

/* ================================================================
   SOCIAL BUTTONS
   ================================================================ */
.social-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.social-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--color-border);
  color: var(--color-text); background: #fff;
  transition: all var(--transition-normal);
}
.social-btn:hover {
  border-color: var(--color-primary); color: var(--color-primary);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.social-btn svg { flex-shrink: 0; }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary-dark); transform: translateY(-2px); }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ================================================================
   PRICING TABLE — Summer Camp sessions & membership tiers
   ================================================================ */
.pricing-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: 0.95rem;
}
.pricing-table th {
  background: var(--color-primary); color: #fff;
  padding: 0.75rem 1rem; text-align: left; font-weight: 600;
}
.pricing-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--color-border);
}
.pricing-table tr:hover td { background: rgba(21,105,202,.04); }
.pricing-table .btn { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

.tier-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tier-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  border: 2px solid var(--color-border); text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tier-card:hover { border-color: var(--color-primary); box-shadow: 0 8px 30px rgba(21,105,202,.1); }
.tier-card.featured { border-color: var(--color-primary); position: relative; }
.tier-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary); color: #fff; padding: 0.25rem 1rem;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.tier-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--color-primary); margin: 1rem 0 0.25rem; }
.tier-price span { font-size: 1rem; font-weight: 400; color: var(--color-text-light); }
.tier-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.tier-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.tier-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); color: var(--color-text-light); font-size: 0.92rem; }
.tier-features li::before { content: '\2713'; color: var(--color-primary); font-weight: 700; margin-right: 0.5rem; }

.scholarship-note {
  background: linear-gradient(135deg, rgba(21,105,202,.06), rgba(21,105,202,.02));
  border-left: 4px solid var(--color-primary); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem; margin-top: 1.5rem; font-size: 0.95rem;
}
.scholarship-note strong { color: var(--color-primary-dark); }

/* Coach Cards */
.coach-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.coach-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); text-align: center;
  padding: 2rem 1.5rem;
}
.coach-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: #fff;
}
.coach-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--color-primary);
}
.coach-card h3 { margin-bottom: 0.25rem; }
.coach-role { color: var(--color-primary-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.coach-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }

/* Sponsors bar */
.sponsors-bar { text-align: center; padding: 2rem 0; }
.sponsors-bar img { max-width: 100%; height: auto; margin: 0 auto; }

/* Partner logos */
.partner-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap; padding: 1rem 0;
}
.partner-logos img { max-height: 120px; width: auto; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 640px) {
  :root { --section-padding: 3.5rem 1rem; }
  .hero { min-height: 85vh; padding: 7rem 1rem 3.5rem; }
  .hero p { font-size: 1.05rem; }
  .hero-badges { flex-direction: column; align-items: center; gap: 1rem; }
  .page-hero { padding: 7rem 1rem 2.5rem; }
  .card { padding: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 1rem; }
}
