/* ===== Flip Float Swim — Coastal Playground ===== */

:root {
  --ocean: #0891B2;
  --ocean-dark: #0E7490;
  --ocean-light: #E0F7FA;
  --deep: #164E63;
  --deep-dark: #0F3644;
  --coral: #F97316;
  --coral-dark: #EA580C;
  --coral-light: #FFF7ED;
  --sand: #FEF3C7;
  --sand-dark: #FDE68A;
  --white: #FFFFFF;
  --cream: #FFFBF5;
  --gray-100: #F1F5F9;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 50px;

  --shadow-soft: 0 4px 24px rgba(22, 78, 99, 0.07);
  --shadow-hover: 0 12px 36px rgba(22, 78, 99, 0.12);
  --shadow-card: 0 2px 12px rgba(22, 78, 99, 0.05);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
}

::selection {
  background: rgba(8, 145, 178, 0.2);
  color: var(--deep);
}

a { color: var(--ocean); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ocean-dark); }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--deep); }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

/* ===== Layout ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--ocean-light); }
.section-sand { background: var(--sand); }
.section-deep {
  background: linear-gradient(135deg, var(--deep) 0%, var(--ocean-dark) 100%);
  color: var(--white);
}
.section-deep h2, .section-deep h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-header p { color: var(--gray-600); margin-top: 12px; font-size: 1.05rem; }

.wave-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--ocean));
  margin: 16px auto 0;
  border-radius: 4px;
}

/* ===== Wave Dividers ===== */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid rgba(8, 145, 178, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 251, 245, 0.92);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 42px; width: auto; }
.footer-logo { height: 34px; width: auto; margin-bottom: 14px; }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}
nav a:hover, nav a.active {
  color: var(--deep);
  background: var(--ocean-light);
}
nav .cta-nav {
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  padding: 10px 22px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
nav .cta-nav:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}
nav .lang-toggle {
  font-size: 0.85rem;
  color: var(--gray-400);
  border: 1.5px solid var(--gray-300);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
nav .lang-toggle:hover {
  color: var(--ocean);
  border-color: var(--ocean);
  background: transparent;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ocean);
  font-size: 1.5rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ocean);
  transition: all 0.2s;
}
.menu-toggle:hover { background: var(--ocean-light); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--deep) 0%, var(--ocean-dark) 50%, var(--ocean) 100%);
  color: var(--white);
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(circle at 30% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(8, 145, 178, 0.15) 0%, transparent 50%);
  animation: hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-3%, 3%); }
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  animation: fadeInUp 0.8s ease-out;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.92;
  line-height: 1.8;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-sub { padding: 60px 24px 80px; }

/* Photo hero (homepage) */
.hero-photo {
  background:
    linear-gradient(160deg, rgba(22,78,99,0.72) 0%, rgba(14,116,144,0.55) 50%, rgba(8,145,178,0.40) 100%),
    url('../img/hero-banner.webp') center center / cover no-repeat;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -72px;
  padding-top: 72px;
}
.hero-photo::before { display: none; }
.hero-photo .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 120px;
}
.hero-photo .hero-wave { z-index: 3; }
.hero-photo + .hero-wave { z-index: 3; }

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Hero bubbles */
.hero-bubbles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-bubbles span {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: bubble-rise linear infinite;
}
.hero-bubbles span:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 14s; }
.hero-bubbles span:nth-child(2) { width: 50px; height: 50px; left: 25%; animation-duration: 10s; animation-delay: 3s; }
.hero-bubbles span:nth-child(3) { width: 30px; height: 30px; left: 45%; animation-duration: 12s; animation-delay: 1s; }
.hero-bubbles span:nth-child(4) { width: 60px; height: 60px; left: 65%; animation-duration: 16s; animation-delay: 5s; }
.hero-bubbles span:nth-child(5) { width: 40px; height: 40px; left: 80%; animation-duration: 11s; animation-delay: 2s; }
.hero-bubbles span:nth-child(6) { width: 25px; height: 25px; left: 90%; animation-duration: 9s; animation-delay: 4s; }

@keyframes bubble-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-800px) scale(0.4); opacity: 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.btn-coral:hover {
  background: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.3);
}
.btn-ocean:hover {
  background: var(--ocean-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
}

.btn-deep { background: var(--deep); color: var(--white); }
.btn-deep:hover { background: var(--deep-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ===== Stats ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.stat-item:hover { transform: translateY(-4px); }
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--ocean);
  font-family: var(--font-display);
}
.stat-item p {
  color: var(--gray-600);
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.feature-card:nth-child(1) { border-top-color: var(--ocean); }
.feature-card:nth-child(2) { border-top-color: var(--coral); }
.feature-card:nth-child(3) { border-top-color: var(--deep); }

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  background: var(--ocean-light);
}
.feature-card:nth-child(2) .feature-icon { background: var(--coral-light); }
.feature-card:nth-child(3) .feature-icon { background: var(--sand); }

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.step-card:hover { transform: translateY(-4px); }
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 32px;
  width: 24px;
  height: 24px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(22, 78, 99, 0.04);
}
.testimonial-stars {
  color: var(--coral);
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card .quote {
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-size: 0.95rem;
}
.testimonial-card .author {
  margin-top: 18px;
  font-weight: 700;
  color: var(--deep);
}
.testimonial-card .location {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== About Split ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-split h2 { margin-bottom: 18px; }
.about-split p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.02rem; }
.about-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* ===== CTA Banner ===== */
.cta-banner {
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--coral-light) 100%);
  border-radius: var(--radius);
  border: 2px solid rgba(249, 115, 22, 0.1);
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ===== Safety Banner ===== */
.safety-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--ocean-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 32px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.safety-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
}
.safety-banner h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.safety-banner p { opacity: 0.9; max-width: 600px; margin: 0 auto; position: relative; }
.safety-stat {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--coral);
  display: block;
  margin-bottom: 10px;
  position: relative;
}

/* ===== Program Cards ===== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--ocean);
  transition: all 0.3s ease;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.program-card:last-child { border-top-color: var(--coral); }
.program-card h3 { margin-bottom: 14px; font-size: 1.4rem; }
.program-card p { color: var(--gray-600); margin-bottom: 16px; }
.program-card ul { list-style: none; padding: 0; }
.program-card ul li {
  padding: 8px 0;
  color: var(--gray-600);
  font-weight: 500;
}
.program-card ul li::before {
  content: "\2713";
  color: var(--ocean);
  font-weight: 700;
  margin-right: 10px;
}
.program-card:last-child ul li::before { color: var(--coral); }

/* ===== FAQ ===== */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(8, 145, 178, 0.1);
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item h3::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ocean);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open h3::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-item p { color: var(--gray-600); line-height: 1.7; }

/* Legacy FAQ (contact page, about page) */
.faq-item-static { border-bottom: 1px solid var(--gray-100); padding: 24px 0; }
.faq-item-static h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
  cursor: default;
}
.faq-item-static h3::after { display: none; }
.faq-item-static p { color: var(--gray-600); }

/* ===== Contact / Forms ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.25s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 36px;
  background: var(--ocean-light);
  border-radius: var(--radius);
}
.form-success h3 { color: var(--ocean-dark); margin-bottom: 8px; }

/* ===== Credential Badges ===== */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.credential-item {
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.credential-item:hover { transform: translateY(-4px); }
.credential-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.credential-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.credential-item p { font-size: 0.85rem; color: var(--gray-400); font-weight: 500; }

/* ===== Footer ===== */
.site-footer {
  background: var(--deep-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 24px 0;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.95rem; line-height: 1.7; }
.footer-bottom {
  max-width: 1100px;
  margin: 44px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-split, .contact-grid, .program-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; width: 100%; border-radius: var(--radius-sm); }
  .hero { padding: 64px 24px 100px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { padding: 48px 24px 70px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-wave svg { height: 50px; }
  .wave-divider svg { height: 40px; }
}

/* ===== Booking System ===== */

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 16px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}

.progress-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-300);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  transition: color 0.3s;
}

.progress-step.active .progress-num { background: var(--ocean); }
.progress-step.active .progress-label { color: var(--ocean); font-weight: 600; }
.progress-step.done .progress-num { background: var(--deep); }
.progress-step.done .progress-label { color: var(--deep); }

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-300);
  max-width: 60px;
  margin: 0 4px;
  margin-bottom: 20px;
}

.book-step { max-width: 720px; margin: 0 auto; }
.book-step h2 { text-align: center; }

.book-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  text-align: center;
  font-size: 0.95rem;
}

.book-form { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.medical-checks { display: grid; gap: 8px; margin-bottom: 16px; }
.med-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.med-check:hover { background: var(--gray-100); }
.med-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--ocean);
}

.book-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
  border-color: var(--gray-600);
  color: var(--gray-800);
}

/* Program Selection Cards */
.program-select-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.program-select-card:hover { border-color: var(--ocean-light); }

.program-select-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.program-type-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.program-type-infant { background: #E0F7FA; color: #0E7490; }
.program-type-toddler { background: var(--sand); color: #92400E; }
.program-spots { font-size: 0.85rem; color: var(--coral); font-weight: 600; }
.program-desc { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 12px; }

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.program-slots { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.slots-label { font-size: 0.9rem; color: var(--gray-600); font-weight: 500; margin: 0; }

.slot-btn {
  padding: 8px 16px;
  border: 2px solid var(--ocean);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ocean);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.slot-btn:hover { background: var(--ocean-light); }
.slot-btn.selected {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.no-programs {
  text-align: center;
  padding: 48px 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.no-programs h3 { margin-bottom: 8px; }

/* Waiver Items */
.waiver-item {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.waiver-item h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
}
.waiver-content {
  max-height: 200px;
  overflow-y: auto;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
  border: 1px solid var(--gray-300);
  white-space: pre-wrap;
}
.waiver-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
}
.waiver-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ocean);
}

/* Payment Summary */
.payment-summary {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
}
.summary-row span:first-child { color: var(--gray-600); }
.summary-divider { border-top: 1px solid var(--gray-300); margin: 8px 0; }
.summary-total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep);
  border-top: 2px solid var(--deep);
  margin-top: 4px;
  padding-top: 12px;
}
.summary-total span { color: var(--deep) !important; }
.summary-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Confirmation Page */
.confirmation-card { max-width: 640px; margin: 0 auto; text-align: center; }
.confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #D1FAE5;
  color: #065F46;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.confirmation-subtitle { color: var(--gray-600); margin-bottom: 32px; }
.confirmation-details {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-300);
}
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--gray-600); font-size: 0.95rem; }

.confirmation-next {
  text-align: left;
  background: var(--ocean-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.confirmation-next h3 { margin-bottom: 12px; }
.confirmation-next ul { list-style: none; padding: 0; }
.confirmation-next li { padding: 6px 0; color: var(--gray-600); font-size: 0.95rem; }
.confirmation-next li::before {
  content: "\2713";
  color: var(--ocean);
  font-weight: 700;
  margin-right: 10px;
}
.confirmation-contact { color: var(--gray-600); font-size: 0.95rem; }

/* Booking Responsive */
@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-progress { gap: 0; }
  .progress-step { min-width: 48px; }
  .progress-label { font-size: 0.7rem; }
  .progress-line { max-width: 30px; }
  .program-meta { flex-direction: column; gap: 4px; }
  .book-actions { flex-direction: column; }
  .book-actions .btn { width: 100%; text-align: center; }
}
