@charset "utf-8";

/* Google Fonts — chunky display + friendly body */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --yellow:   #FFE034;
  --yellow-d: #F5C800;
  --coral:    #FF5F5F;
  --coral-d:  #E04040;
  --sky:      #4DC8F0;
  --sky-d:    #29AADA;
  --navy:     #0D1F3C;
  --navy-m:   #1A3560;
  --mint:     #3DDBA8;
  --purple:   #A259FF;
  --cream:    #FFFBEE;
  --white:    #FFFFFF;
  --text:     #0D1F3C;
  --muted:    #5A6A8A;
  --radius:   20px;
  --shadow:   0 8px 0 rgba(13,31,60,0.18);
  --shadow-lg:0 14px 0 rgba(13,31,60,0.16);
}

*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255,224,52,0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 5%,  rgba(77,200,240,0.14) 0%, transparent 35%),
    radial-gradient(circle at 50% 95%, rgba(61,219,168,0.12) 0%, transparent 40%);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, .display { font-family: 'Fredoka One', cursive; letter-spacing: 0.3px; }

a { color: inherit; text-decoration: inherit; }
img, svg, video { vertical-align: middle; display: block; max-width: 100%; height: auto; }
b, strong { font-weight: 800; }

/* ─── UTILITY ──────────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 4px solid var(--yellow);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.35rem;
  color: var(--yellow);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 4px; align-items: center; }

.nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 50px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.nav-link:hover { background: rgba(255,224,52,0.18); color: var(--yellow); }
.nav-link.cta {
  background: var(--yellow);
  color: var(--navy);
  margin-left: 8px;
  box-shadow: 0 4px 0 var(--yellow-d);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-link.cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--yellow-d); background: var(--yellow); }

#nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 110px 24px 0;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* polka dot bg pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,224,52,0.15) 2px, transparent 2px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 0;
}

.hero-text { padding-bottom: 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,224,52,0.18);
  border: 2px solid rgba(255,224,52,0.5);
  color: var(--yellow);
  font-weight: 800; font-size: 0.88rem;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.5px; text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--yellow); position: relative; display: inline-block; }
.hero h1 .accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 6px;
  background: var(--coral);
  border-radius: 3px;
  transform: rotate(-1deg);
}

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem; line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 36px; }
.hero-stat-num { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--yellow); line-height: 1; }
.hero-stat-lbl { color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 700; }

/* Hero image — rises from bottom */
.hero-img-wrap {
  position: relative;
  align-self: flex-end;
  z-index: 2;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 4px solid rgba(255,224,52,0.4);
  border-bottom: none;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
}
/* decorative stars floating */
.star-deco {
  position: absolute;
  pointer-events: none;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3;
  pointer-events: none;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem; letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 6px 0 var(--yellow-d);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--yellow-d); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--yellow-d); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

.btn-coral {
  background: var(--coral);
  color: white;
  box-shadow: 0 6px 0 var(--coral-d);
}
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--coral-d); }

.btn-navy {
  background: var(--navy);
  color: white;
  box-shadow: 0 6px 0 rgba(0,0,0,0.3);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 9px 0 rgba(0,0,0,0.3); }

/* ─── SECTION HEADERS ────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 0.82rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 15px; border-radius: 50px;
  margin-bottom: 14px;
}
.tag-yellow { background: rgba(255,224,52,0.2); color: #B8900A; border: 1.5px solid rgba(255,200,0,0.35); }
.tag-coral  { background: rgba(255,95,95,0.12); color: var(--coral-d); border: 1.5px solid rgba(255,95,95,0.25); }
.tag-sky    { background: rgba(77,200,240,0.15); color: #1A8BB0; border: 1.5px solid rgba(77,200,240,0.3); }
.tag-mint   { background: rgba(61,219,168,0.15); color: #1A9070; border: 1.5px solid rgba(61,219,168,0.3); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title .underline {
  position: relative;
  display: inline-block;
}
.section-title .underline::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 8px;
  background: var(--yellow);
  border-radius: 4px;
  transform: rotate(-1.5deg);
  z-index: -1;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.hiw-section {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 30px, transparent 30px, transparent 50px);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.hiw-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  box-shadow: var(--shadow);
}
.hiw-card:hover { transform: translateY(-6px) rotate(0.4deg); box-shadow: var(--shadow-lg); }
.hiw-card.c1 { border-color: var(--yellow); }
.hiw-card.c2 { border-color: var(--sky); }
.hiw-card.c3 { border-color: var(--coral); }
.hiw-card.c4 { border-color: var(--mint); }

.hiw-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.hiw-card.c1::before { background: var(--yellow); }
.hiw-card.c2::before { background: var(--sky); }
.hiw-card.c3::before { background: var(--coral); }
.hiw-card.c4::before { background: var(--mint); }

.hiw-num {
  font-family: 'Fredoka One', cursive;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 6px;
}
.hiw-card.c1 .hiw-num { color: var(--yellow-d); }
.hiw-card.c2 .hiw-num { color: var(--sky-d); }
.hiw-card.c3 .hiw-num { color: var(--coral); }
.hiw-card.c4 .hiw-num { color: var(--mint); }

.hiw-icon { font-size: 2.2rem; margin-bottom: 12px; }
.hiw-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.hiw-body { color: var(--muted); line-height: 1.7; font-size: 0.96rem; }
.hiw-contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
  transition: color 0.15s;
}
.hiw-contact-link:hover { color: var(--coral); }

/* ─── PHOTO SLIDER ───────────────────────────────────── */
.slider-section {
  padding: 0 24px 90px;
  background: var(--cream);
}
.slider-header { text-align: center; margin-bottom: 36px; }

#slider {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 0 rgba(13,31,60,0.12), 0 30px 60px rgba(13,31,60,0.18);
  border: 4px solid var(--navy);
}

.slide img { display: block; width: 100%; height: 460px; object-fit: cover; }

.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 28px 24px;
  background: linear-gradient(to top, rgba(13,31,60,0.9) 0%, transparent 100%);
}
.slide-caption span {
  font-family: 'Fredoka One', cursive;
  color: white;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 50%;
  width: 48px; height: 48px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--navy);
  z-index: 10;
  box-shadow: 0 4px 0 var(--yellow-d);
  transition: transform 0.15s, box-shadow 0.15s;
}
.slider-btn:hover { transform: translateY(calc(-50% - 2px)); box-shadow: 0 6px 0 var(--yellow-d); }
.slider-btn:active { transform: translateY(calc(-50% + 2px)); box-shadow: 0 2px 0 var(--yellow-d); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

#dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%; border: 2.5px solid var(--navy);
  background: transparent; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active-dot { background: var(--navy); transform: scale(1.35); }

/* ─── SAFETY ─────────────────────────────────────────── */
.safety-section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.safety-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(77,200,240,0.08) 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}

.safety-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

.safety-text-col .section-title { color: white; }
.safety-text-col .section-sub { color: rgba(255,255,255,0.6); }

.safety-list { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.safety-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.safety-item:last-child { border-bottom: none; }
.safety-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--mint); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.safety-item span { color: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.96rem; line-height: 1.45; }

.safety-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.safety-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  transition: background 0.2s, transform 0.2s;
}
.safety-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.safety-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.safety-card h4 { font-family: 'Fredoka One', cursive; color: white; font-size: 1.05rem; margin-bottom: 8px; }
.safety-card p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.65; }

/* ─── SIGN UP ─────────────────────────────────────────── */
.signup-section {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* zigzag top border */
.signup-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 18px;
  background:
    linear-gradient(135deg, var(--cream) 33.33%, transparent 33.33%) 0 0,
    linear-gradient(225deg, var(--cream) 33.33%, transparent 33.33%) 0 0,
    var(--navy);
  background-size: 28px 18px;
  background-repeat: repeat-x;
}

.enroll-banner {
  max-width: 560px; margin: 0 auto 44px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 24px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.enroll-banner::before {
  content: '🎉';
  position: absolute; top: -18px; right: 20px;
  font-size: 2rem;
}
.enroll-banner p:first-child {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.enroll-banner p:nth-child(2) {
  color: rgba(13,31,60,0.7);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.signup-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.signup-card:hover { transform: translateY(-5px) rotate(-0.3deg); box-shadow: var(--shadow-lg); }

.signup-letter {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 3px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.sl-a { background: var(--yellow); color: var(--navy); }
.sl-b { background: var(--sky); color: var(--navy); }
.sl-c { background: var(--mint); color: var(--navy); }
.sl-d { background: var(--coral); color: white; }

.signup-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.signup-card p { color: var(--muted); line-height: 1.7; font-size: 0.96rem; }
.signup-card p strong { color: var(--navy); font-weight: 800; }

/* No-exceptions callout */
.no-exc {
  display: block;
  margin-top: 12px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--coral-d);
  letter-spacing: 0.5px;
}

/* email link inside cards */
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
  transition: color 0.15s;
}
.card-link:hover { color: var(--coral); }

.reminder-box {
  background: white;
  border: 3px solid var(--navy);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow);
}
.reminder-box span:first-child { font-size: 1.6rem; flex-shrink: 0; }
.reminder-box strong { font-family: 'Fredoka One', cursive; font-size: 1rem; color: var(--navy); }
.reminder-box p { color: var(--muted); margin: 6px 0 0; line-height: 1.65; font-size: 0.93rem; }

/* ─── SCHEDULE ────────────────────────────────────────── */
.schedule-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, #E8F8FF 0%, #D6F0FA 100%);
  position: relative;
}

.schedule-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto 28px;
}

.schedule-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow);
}
.schedule-card h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

.schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 2px dashed rgba(13,31,60,0.1);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-time {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--navy);
}
.schedule-label { color: var(--muted); font-size: 0.9rem; font-weight: 700; }

.rate-banner {
  max-width: 900px; margin: 0 auto;
  background: var(--navy);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-lg);
}
.rate-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.rate-value { font-family: 'Fredoka One', cursive; font-size: 2.4rem; color: var(--yellow); line-height: 1; }
.rate-note { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 6px; }
.payment-chips { display: flex; flex-direction: column; gap: 12px; }
.payment-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 10px 20px;
  color: white; font-weight: 700;
}

/* ─── PRICING ─────────────────────────────────────────── */
.pricing-section {
  padding: 100px 24px;
  background: var(--cream);
}

.pricing-cards { display: flex; flex-direction: column; gap: 18px; max-width: 900px; margin: 0 auto; }

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 28px 32px;
  border: 3px solid var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-badge {
  position: absolute; top: 0; right: 24px;
  background: var(--coral);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 0.78rem; letter-spacing: 0.3px;
  padding: 5px 14px;
  border-radius: 0 0 12px 12px;
}

.pricing-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 16px;
  border: 3px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.pi-blue   { background: rgba(77,200,240,0.2); }
.pi-yellow { background: rgba(255,224,52,0.25); }
.pi-green  { background: rgba(61,219,168,0.2); }

.pricing-info { flex: 1; min-width: 0; }
.pricing-info h3 { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.pricing-info p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.pricing-price { text-align: right; flex-shrink: 0; }
.price-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--navy);
}
.price-per { font-size: 0.88rem; color: var(--muted); font-weight: 700; }
.price-mo { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }

.pricing-note {
  max-width: 900px; margin: 28px auto 0;
  background: rgba(255,224,52,0.15);
  border: 2.5px solid rgba(255,200,0,0.35);
  border-radius: 18px;
  padding: 20px 28px;
  display: flex; align-items: flex-start; gap: 14px;
}
.pricing-note span:first-child { font-size: 1.5rem; flex-shrink: 0; }
.pricing-note strong { color: var(--navy); font-family: 'Fredoka One', cursive; font-size: 1rem; }
.pricing-note p { color: var(--muted); margin: 6px 0 0; font-size: 0.92rem; line-height: 1.65; }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-section { padding: 100px 24px; background: var(--cream); }

.contact-card {
  max-width: 860px; margin: 0 auto;
  background: var(--navy);
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--yellow);
  box-shadow: 0 12px 0 var(--yellow-d), 0 20px 60px rgba(13,31,60,0.3);
  text-align: center;
}
.contact-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,224,52,0.1) 2px, transparent 2px);
  background-size: 28px 28px;
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }

.contact-card h2 { font-family: 'Fredoka One', cursive; font-size: clamp(2rem,3.5vw,2.6rem); color: white; margin-bottom: 12px; }
.contact-card > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

.contact-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px;
}
.contact-link-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.contact-link-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.3rem;
}
.ci-yellow { background: rgba(255,224,52,0.25); }
.ci-sky    { background: rgba(77,200,240,0.25); }
.contact-link-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-link-val { color: white; font-family: 'Fredoka One', cursive; font-size: 1.15rem; }

.contact-hours {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px 28px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 48px 24px 32px;
  border-top: 5px solid var(--yellow);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9rem; max-width: 280px; line-height: 1.65; margin: 10px 0 0; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo-text { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--yellow); }

.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Fredoka One', cursive; color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.92rem; font-weight: 600; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }

.footer-divider {
  max-width: 1100px; margin: 0 auto 20px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 30px, transparent 30px, transparent 50px);
  opacity: 0.3;
}
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.85rem; margin: 0; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.float { animation: float 4s ease-in-out infinite; }
.float-2 { animation: float 4s ease-in-out 1.5s infinite; }
.float-3 { animation: float 4s ease-in-out 0.75s infinite; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in     { animation: fadeInUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.fade-in-d2  { animation-delay: 0.25s; }
.fade-in-d3  { animation-delay: 0.45s; }

@keyframes wobble {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}
.wobble { animation: wobble 3s ease-in-out infinite; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .hero-text { padding-bottom: 80px; }

  #nav-toggle { display: flex !important; }
  .nav-links {
    display: none !important;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 4px;
    padding: 14px 20px 20px;
    border-top: 3px solid var(--yellow);
    z-index: 99;
  }
  .nav-links.open { display: flex !important; }

  .hiw-grid { grid-template-columns: 1fr; gap: 18px; }
  .safety-inner { grid-template-columns: 1fr; gap: 48px; }
  .signup-grid { grid-template-columns: 1fr; gap: 18px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 20px; }
  .contact-links { grid-template-columns: 1fr; }
  .pricing-card { flex-direction: column; align-items: flex-start; }
  .pricing-price { text-align: left; }
  .slide img { height: 240px !important; }
}
