:root {
  --navy: #0B2545;
  --navy-light: #13315C;
  --blue: #1B6B93;
  --aqua: #4FC0D0;
  --aqua-light: #A0E4ED;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --grey-100: #F5F5F3;
  --grey-200: #E8E8E4;
  --grey-400: #999;
  --grey-600: #666;
  --grey-800: #333;
  --text: #1a1a1a;
  --text-muted: #555;
  --gold: #D4A853;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1120px;
  --section-py: clamp(60px, 8vw, 100px);
  --section-px: clamp(20px, 5vw, 40px);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(11,37,69,0.08);
  --shadow-lg: 0 12px 48px rgba(11,37,69,0.12);
}
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
    body {
      font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,37,69,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  min-width: 96px;
}
.nav-logo {
  width: 118px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: rgba(255,255,255,0.94);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--aqua) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--aqua-light) !important; transform: scale(1.03); }
.nav-cta-secondary {
  background: var(--white) !important;
}
.nav-cta-secondary:hover {
  background: var(--grey-100) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(100px, 14vw, 160px) var(--section-px) clamp(60px, 10vw, 100px);
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,37,69,0.82) 0%,
    rgba(11,37,69,0.70) 40%,
    rgba(11,37,69,0.85) 100%
  );
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80vw; height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,192,208,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 2;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--aqua);
  font-size: 0.85em;
  margin-top: 4px;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--aqua);
  color: var(--navy);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(79,192,208,0.3); }
.btn-book {
  background: var(--white);
  color: var(--navy);
}
.btn-book:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.25); }
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.section {
  padding: var(--section-py) var(--section-px);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.6;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark .section-label { color: var(--aqua); }
.section--dark .section-title { color: var(--white); }
.section--dark .section-sub { color: rgba(255,255,255,0.65); }

#about {
  align-items: flex-start;
  padding-top: clamp(44px, 6vw, 72px);
}
#about .section-header {
  margin-bottom: clamp(24px, 4vw, 36px);
}
.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.coach-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.coach-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.coach-copy {
  padding: 18px 20px 20px;
}
.coach-copy h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.coach-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}
.instagram-icon {
  flex-shrink: 0;
  border-radius: 5px;
}
.coach-social:hover {
  color: var(--navy);
}
.coach-copy p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.why-choose {
  margin-top: clamp(32px, 5vw, 48px);
}
.why-choose > h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(27,107,147,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.feature-card h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}
.payment-warning {
  max-width: 740px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border: 2px solid #E5484D;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  text-align: center;
  line-height: 1.55;
}
.payment-warning strong {
  display: block;
  color: #B42318;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.payment-warning span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.payment-warning a,
.booking-modal-card a:not(.btn),
.form-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,192,208,0.3);
}
.price-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-card .price-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--aqua);
}
.price-amount span {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.price-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.2s, background 0.2s;
}
.price-pay-btn:hover {
  transform: translateY(-2px);
  background: var(--aqua);
}
.price-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}
.price-swimmers {
  display: inline-block;
  background: var(--aqua);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.timetable-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: -20px auto 24px;
  line-height: 1.7;
}
.time-day-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 18px;
}
.time-slots {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.time-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 180px;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}
.time-card-wide {
  width: min(100%, 560px);
}
.time-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.time-card-icon {
  color: var(--blue);
  margin-bottom: 12px;
}
.time-card-time {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.time-card-note {
  max-width: 440px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--grey-100); }
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#register {
  min-height: auto;
  align-items: flex-start;
  padding-top: clamp(44px, 6vw, 72px);
}
#register .section-header {
  margin-bottom: clamp(16px, 3vw, 26px);
}
.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .register-grid { grid-template-columns: 1fr; }
}
.register-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.register-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.register-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--grey-100);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,107,147,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-light); }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-400);
  margin-top: 12px;
}

.venue-section {
  background: var(--white);
}
.venue-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.venue-panel {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.venue-panel-head {
  margin-bottom: 14px;
}
.venue-panel-head span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.venue-panel-head h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--navy);
}
.venue-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--white);
}
.venue-track {
  display: grid;
}
.venue-slide {
  display: none;
  grid-area: 1 / 1;
  margin: 0;
}
.venue-slide.is-active {
  display: block;
}
.venue-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 340px;
  object-fit: cover;
  filter: brightness(1.26) contrast(1.03) saturate(1.06);
}
.venue-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11,37,69,0.88);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}
.venue-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--navy);
}
.venue-arrow-prev {
  left: 12px;
}
.venue-arrow-next {
  right: 12px;
}
.venue-parking-panel {
  display: flex;
  flex-direction: column;
}
.parking-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 285px;
  padding: 30px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
}
.pool-specs,
.parking-photo-card figcaption {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.9rem;
}
.pool-specs {
  margin-top: 14px;
  margin-bottom: 0;
}
.parking-photo-card {
  margin: 0 0 18px;
}
.parking-photo-card img {
  width: 100%;
  max-height: 245px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius-sm);
}
.parking-photo-card figcaption {
  margin-top: 10px;
  margin-bottom: 18px;
}
.parking-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 24px 28px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.location-details {
  display: grid;
  gap: 16px;
  width: 100%;
}
.location-address-card {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.location-address-card svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--blue);
  margin-top: 4px;
}
.location-address-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.location-address-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.location-address-card p {
  color: var(--text);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
}
.location-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.location-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
}
.location-item svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.location-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.location-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-info-list { grid-template-columns: 1fr; }
  .location-address-card {
    flex-direction: column;
    padding: 20px;
  }
  .map-frame { justify-self: center; max-width: 420px; }
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  max-width: 360px;
  width: 100%;
  justify-self: end;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px var(--section-px) 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand span { color: var(--aqua); }
.footer-tagline {
  font-size: 0.82rem;
  margin-top: 4px;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.8;
}

.wa-float-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 90;
}
.wa-bubble {
  background: var(--white);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px 12px 0 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 220px;
  line-height: 1.4;
  animation: bubbleFadeIn 0.5s ease 1.5s both;
  pointer-events: none;
}
@keyframes bubbleFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.wa-float {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.rv.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .coach-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .venue-showcase { grid-template-columns: 1fr; }
  .parking-info { min-height: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  :root {
    --section-py: clamp(48px, 10vw, 80px);
    --section-px: 20px;
  }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; padding: 14px 24px; }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .section-sub { font-size: 0.9rem; }
  .coach-copy { padding: 20px; }
  .feature-card { padding: 22px 20px; }
  .price-card { padding: 24px 20px; }
  .price-amount { font-size: 2rem; }
  .time-slots { flex-direction: column; align-items: center; }
  .time-card { width: 100%; max-width: 280px; }
  .faq-q { padding: 16px 18px; font-size: 0.88rem; }
  .faq-a-inner { padding: 0 18px 16px; font-size: 0.85rem; }
  .form-card { padding: 24px 20px; }
  .register-wa { width: 100%; max-width: 300px; justify-content: center; }
  .venue-panel { padding: 14px; }
  .venue-slide img { max-height: 285px; }
  .venue-arrow { width: 34px; height: 34px; }
  .parking-info { padding: 20px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .map-frame { aspect-ratio: 1/1; }
  .nav-brand { min-width: 82px; }
  .nav-logo { width: 96px; max-height: 38px; }
  .wa-float-wrap { bottom: 16px; right: 16px; }
  .wa-bubble { max-width: 170px; font-size: 0.75rem; padding: 8px 12px; }
}

@media (max-width: 380px) {
  :root { --section-px: 16px; }
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.3rem; }
  .price-amount { font-size: 1.75rem; }
}

.hero-logo {
  max-width: 280px;
  margin: 0 auto 20px;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 10px auto 28px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}
.hero-highlights li {
  display: inline-flex;
  align-items: center;
}
.hero-highlights li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.thanks-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--section-px);
  background:
    linear-gradient(180deg, rgba(11,37,69,0.82), rgba(11,37,69,0.88)),
    url("images/swimpool.jpg") center / cover;
}
.thanks-shell {
  width: min(100%, 620px);
  padding: clamp(32px, 6vw, 56px);
  border-radius: var(--radius);
  background: rgba(250,250,247,0.96);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thanks-logo {
  max-width: 220px;
  margin: 0 auto 24px;
  border-radius: var(--radius-sm);
}
.thanks-shell .section-sub {
  margin-bottom: 28px;
}

.terms-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 64px) var(--section-px);
  background: var(--navy);
  color: var(--text);
}
.terms-shell {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.terms-shell .section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.terms-logo-link {
  display: block;
}
.terms-updated {
  margin: 8px 0 24px;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.82rem;
}
.terms-block {
  padding: 18px 0;
  border-top: 1px solid var(--grey-200);
}
.terms-block h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 10px;
}
.terms-block p,
.terms-block li {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.terms-block ul {
  list-style: disc;
  padding-left: 20px;
}
.terms-block li + li {
  margin-top: 7px;
}
.terms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(11,37,69,0.72);
}
.booking-modal.open {
  display: grid;
}
.booking-modal-card {
  position: relative;
  width: min(100%, 480px);
  padding: 36px 30px 32px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.booking-modal-card h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 12px;
}
.booking-modal-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  color: var(--navy);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  padding: 4px;
  box-shadow: none;
  outline: none;
}
.booking-modal-close:hover,
.booking-modal-close:focus {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}
.booking-modal-btn {
  display: inline-flex;
}
.payment-confirm-card {
  border: 2px solid #E5484D;
}
.payment-confirm-card h2 {
  color: #B42318;
}
.confirm-pay-btn {
  width: 100%;
  justify-content: center;
}
