/* ═══════════════════════════════════════════════════════════
   KARIN BOSHOFF PROFESSIONAL SCHOOL OF TENNIS
   styles.css — Premium sporty UI
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --green:       #5a9c2e;
  --green-light: #7ab648;
  --green-dark:  #4a8022;
  --lime:        #7ab648;
  --lime-dark:   #5a9c2e;
  --navy:        #1a3a6b;
  --navy-mid:    #243f6e;
  --navy-dark:   #0f2347;
  --charcoal:    #2c3e50;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --grey-light:  #e4e8f0;
  --grey:        #8a96a8;
  --text:        #1a2a40;
  --text-light:  #5a6a7a;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(26,58,107,.08);
  --shadow-md: 0 8px 32px rgba(26,58,107,.14);
  --shadow-lg: 0 20px 60px rgba(26,58,107,.22);

  --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);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ── SECTION BASE ── */
.section { padding: 96px 0; }
.section--dark { background: var(--navy); }
.section--accent { background: var(--navy-dark); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--lime); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section-title--light { color: var(--white); }

.section-desc { margin-top: 16px; font-size: 1.1rem; color: var(--text-light); max-width: 560px; margin-left: auto; margin-right: auto; }
.section-desc--light { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--lime);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,241,53,.4);
}
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26,58,107,0.15);
  backdrop-filter: blur(4px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav-header.scrolled {
  background: rgba(26,58,107,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26,58,107,.35);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  /* Logo has white bg — give it a clean pill container */
  background: white;
  border-radius: 8px;
  padding: 4px 10px;
}
/* Keep old text logo styles non-breaking but unused */
.logo-icon, .logo-text, .logo-name, .logo-sub { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover { color: var(--lime); }
.nav-cta {
  background: var(--lime) !important;
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--lime-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Decorative court background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.45;
}
/* Keep old court-lines styles in case cached, but hidden */
.court-lines { display: none; }

/* Gradient overlay — logo navy based */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(26,58,107,.92) 0%, transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(26,58,107,.6) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(26,58,107,.25) 0%, rgba(26,58,107,.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(200,241,53,0.4);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-headline em {
  font-style: italic;
  color: var(--lime);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(4px,4px); opacity: 0.9; }
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--grey-light);
  padding: 48px 40px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px -10px -10px 10px;
  background: var(--lime);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  transform: rotate(-2deg);
  z-index: -1;
}
.about-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Remove old card/photo styles */
.about-card-stack, .about-img-card,
.about-img-inner, .about-photo,
.about-img-label { display: none; }

.about-img-label {
  background: rgba(200,241,53,.12);
  border-top: 1px solid rgba(200,241,53,.2);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}

.about-accent-stat {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: var(--lime);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.accent-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.accent-number span { font-size: 1.8rem; }
.accent-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 4px;
  max-width: 90px;
}

.about-text .section-eyebrow { margin-bottom: 12px; }
.about-lead {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 20px 0 14px;
  line-height: 1.65;
  font-weight: 500;
}
.about-body {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.75;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pillar:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.pillar-icon { font-size: 1.3rem; }

/* ══════════════════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,241,53,0.3);
  transform: translateY(-4px);
}
.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.program-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(200,241,53,.12);
  border: 1px solid rgba(200,241,53,.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.program-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.program-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  transition: gap var(--transition), letter-spacing var(--transition);
}
.program-link:hover { letter-spacing: 0.14em; }

.programs-extra {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.03em;
}
.extra-icon { font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════
   PHOTO STRIP
══════════════════════════════════════════════════════ */
.photo-strip {
  overflow: hidden;
  line-height: 0;
}
.photo-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  height: 420px;
}
.strip-item {
  position: relative;
  overflow: hidden;
}
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  display: block;
}
.strip-item:hover img { transform: scale(1.05); }

.strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.strip-item:hover .strip-overlay { opacity: 1; }
.strip-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════ */
.why { background: var(--white); position: relative; overflow: hidden; }

.why-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.07;
}
.why-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,247,242,.95) 0%, rgba(244,247,242,.85) 100%);
}
.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,122,69,.04), rgba(200,241,53,.06));
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { opacity: 1; }

.why-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--grey-light);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  transition: color var(--transition);
}
.why-card:hover .why-number { color: rgba(26,122,69,0.12); }

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card--featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,241,53,.3);
  margin-top: -16px;
  padding: 44px 36px;
}

.testi-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--lime);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.7;
}
.testi-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-card--featured .testi-text { color: var(--white); font-size: 1.05rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-card--featured .testi-avatar { background: var(--lime); color: var(--navy); }
.testi-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.testi-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}
.testi-stars {
  color: var(--lime);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 16px 0 36px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--green); }

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 2px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,69,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: rgba(26,122,69,.1);
  border: 1px solid rgba(26,122,69,.3);
  color: var(--green-dark);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
}
.form-success.visible { display: block; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px 14px;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links-col strong {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links-col li {
  font-size: 0.88rem;
  line-height: 1.4;
}
.footer-links-col a { transition: color var(--transition); }
.footer-links-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--lime); }

/* ══════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
.fade-up:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }

  /* PHOTO STRIP */
  .photo-strip-inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .strip-item { height: 260px; }
  .strip-item--tall { height: 300px; }
  .strip-overlay { opacity: 1; }

  /* NAV mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,27,42,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 8px; }

  /* HERO */
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: 1; }
  .about-text { order: 2; }
  .about-card-stack { max-width: 340px; }
  .about-accent-stat { right: 0; bottom: -20px; }
  .about-pillars { grid-template-columns: 1fr; }

  /* PROGRAMS */
  .programs-grid { grid-template-columns: 1fr; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card--featured { margin-top: 0; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* WHATSAPP */
  .whatsapp-fab { width: 54px; height: 54px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; margin-left: auto; margin-right: auto; }
  .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .programs-extra { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .scroll-arrow { animation: none; }
  .cg-ball { animation: none; }
  .whatsapp-pulse { animation: none; }
}

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