/* ── ROOT VARIABLES ── */
:root {
  --ocean: #0a2342;
  --deep: #071828;
  --mid: #0e4d7b;
  --teal: #0b8fac;
  --teal-light: #14b8d4;
  --foam: #e8f7fa;
  --cta: #ff8c00;
  --cta-hover: #ff6b00;
  --yellow: #ffd93d;
  --white: #ffffff;
  --text-muted-dark: #94a3b8;
  --text-body: #4a6080;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--ocean);
  color: var(--white);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--ocean);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.site-navbar {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.9rem 0;
  background: rgba(7, 24, 40, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 184, 212, 0.14);
  transition:
    background 0.3s ease,
    top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-brand .accent {
  color: var(--teal-light);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.4rem 0.75rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: var(--teal-light) !important;
}

.btn-nav-cta {
  background: var(--cta);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: rgba(20, 184, 212, 0.4) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2820, 184, 212, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(
    160deg,
    #071828 0%,
    #0a2342 40%,
    #0e4d7b 78%,
    #0b8fac 100%
  );
}

.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(11, 143, 172, 0.07);
  animation: pulse 7s ease-in-out infinite;
}

.hc1 {
  width: 680px;
  height: 680px;
  top: -130px;
  right: -180px;
  animation-delay: 0s;
}

.hc2 {
  width: 420px;
  height: 420px;
  top: 20%;
  right: 8%;
  animation-delay: 1.8s;
  background: rgba(20, 184, 212, 0.05);
}

.hc3 {
  width: 260px;
  height: 260px;
  bottom: 12%;
  right: 28%;
  animation-delay: 3.2s;
  background: rgba(255, 140, 0, 0.05);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.09);
    opacity: 0.65;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 143, 172, 0.18);
  border: 1px solid rgba(20, 184, 212, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .highlight {
  color: var(--teal-light);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-cta {
  background: var(--cta);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 28px rgba(255, 140, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 140, 0, 0.45);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  color: var(--white);
}

/* Hero stats */
.hero-stats {
  animation: fadeUp 0.7s 0.4s ease both;
  margin-top: 2.8rem;
}

.stat-block {
  border-left: 2px solid var(--teal);
  padding-left: 1rem;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Hero image panel */
.hero-img-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  z-index: 1;
}

.hero-img-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  background: linear-gradient(90deg, #0a2342, transparent);
  z-index: 2;
}

.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Wave */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ─────────────────────────────────────────
   PROGRAMS
───────────────────────────────────────── */
.programs-section {
  background: var(--foam);
  padding: 5rem 0;
}

.program-card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(11, 143, 172, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  height: 100%;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 35, 66, 0.12);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: white;
  font-size: 1.4rem;
}

.program-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean);
  margin-bottom: 0.5rem;
}

.program-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.card-arrow:hover {
  gap: 10px;
  color: var(--teal);
}

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.why-section {
  background: var(--deep);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(20, 184, 212, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.why-img {
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
}

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

.why-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(7, 24, 40, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 212, 0.25);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-img-badge .badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
}

.why-img-badge .badge-lbl {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-dot {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(11, 143, 172, 0.18);
  border: 1px solid rgba(20, 184, 212, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
  font-size: 1rem;
  margin-top: 2px;
}

.feature-item h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 0.83rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────
   TIMETABLE
───────────────────────────────────────── */
.timetable-section {
  background: #f0fbfd;
  padding: 5rem 0;
}

.tt-day {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(11, 143, 172, 0.15);
  height: 100%;
}

.tt-day-header {
  background: linear-gradient(135deg, var(--mid), var(--teal));
  color: var(--white);
  padding: 0.85rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.tt-slot {
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(11, 143, 172, 0.1);
}

.tt-slot:last-child {
  border-bottom: none;
}

.tt-time {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.74rem;
  margin-bottom: 2px;
}

.tt-class {
  color: var(--ocean);
  font-weight: 600;
  font-size: 0.82rem;
}

.tt-age {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-section {
  background: var(--ocean);
  padding: 5rem 0;
}

.gallery-section .section-tag {
  color: var(--teal-light);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* Asymmetric grid */
.gallery-grid {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
}

.g-item {
  border-radius: 0.9rem;
  overflow: hidden;
  position: relative;
  background: var(--mid);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.3s;
  filter: brightness(0.85);
}

.g-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.g-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.g-item:nth-child(4) {
  grid-column: 2 / 4;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--cta) 0%, #e56a00 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2.2rem;
}

.btn-white {
  background: var(--white);
  color: var(--cta);
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  color: var(--cta);
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section {
  background: var(--foam);
  padding: 5rem 0;
}

.testi-card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.8rem;
  border: 1px solid rgba(11, 143, 172, 0.1);
  height: 100%;
}

.stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-card > p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ocean);
}

.author-sub {
  font-size: 0.74rem;
  color: var(--text-muted-dark);
}

/* ─────────────────────────────────────────
   POOL RULES TEASER
───────────────────────────────────────── */
.rules-teaser {
  background: var(--deep);
  padding: 3rem 0;
}

.rules-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rules-teaser h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
  margin: 0;
}

.rules-teaser p {
  color: var(--text-muted-dark);
  font-size: 0.88rem;
  margin: 0.3rem 0 0;
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal-light);
  padding: 0.72rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--teal-light);
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline-teal:hover {
  background: var(--teal-light);
  color: var(--deep);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  background: var(--ocean);
  padding: 5rem 0;
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(11, 143, 172, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(20, 184, 212, 0.12);
  border: 1px solid rgba(20, 184, 212, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.map-embed {
  border-radius: 1.2rem;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  border: 1px solid rgba(20, 184, 212, 0.18);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  min-height: 300px;
}

/* ─────────────────────────────────────────
   NEW: SWIPER TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section {
  background: var(--foam);
  padding: 6rem 0;
}

.swiper-container {
  padding: 2rem 1rem 4rem;
}

.testi-card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 2.2rem;
  border: 1px solid rgba(11, 143, 172, 0.1);
  height: auto;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.05);
}

.swiper-pagination-bullet-active {
  background: var(--teal) !important;
}

/* ─────────────────────────────────────────
   NEW: RULES ACCORDION
───────────────────────────────────────── */
.rules-section {
  background: var(--deep);
  padding: 5rem 0;
}

.accordion-item {
  background: rgba(10, 35, 66, 0.3);
  border: 1px solid rgba(20, 184, 212, 0.15) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: transparent !important;
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  box-shadow: none !important;
  padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
  color: var(--teal-light) !important;
}

.accordion-button::after {
  filter: invert(1);
  /* Makes arrow white */
}

.accordion-body {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   NEW: PARALLAX IMAGE SECTION
───────────────────────────────────────── */
.parallax-section {
  position: relative;
  height: 450px;
  background-image: url('https://images.unsplash.com/photo-1519315901367-f34ff9154487?q=80&w=2000&auto=format&fit=crop');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 24, 40, 0.6), rgba(7, 24, 40, 0.6));
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--deep);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(20, 184, 212, 0.1);
}

.footer-brand p {
  color: var(--text-muted-dark);
  font-size: 0.85rem;
  margin-top: 0.6rem;
  line-height: 1.65;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted-dark);
  margin: 0;
}

.footer-flag {
  color: var(--teal-light);
  font-size: 0.75rem;
}

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.25s;
  animation: waPop 0.5s 1s ease both;
  color: white;
}

.text-ocean {
  color: var(--ocean);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 0.25rem rgba(11, 143, 172, 0.1) !important;
}

.modal-backdrop.show {
  opacity: 0.85;
  background-color: var(--deep);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: white;
}

@keyframes waPop {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE OVERRIDES
───────────────────────────────────────── */
@media (max-width: 991.98px) {
  /*.hero-img-panel { display: none; }*/
  .hero {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: unset;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .g-item {
    min-height: 180px;
  }

  .g-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }

  .g-item:nth-child(4) {
    grid-column: auto;
  }
}

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

  .rules-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn-cta,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stat-block + .stat-block {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .g-item {
    min-height: 200px;
  }
}

/* ─────────────────────────────────────────
   ANNOUNCEMENT BANNER
───────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1060;
  letter-spacing: 0.2px;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

.announcement-bar .btn-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(1);
  opacity: 0.8;
  padding: 0.2rem;
}

/* ─────────────────────────────────────────
   TRUST / CERTIFICATIONS STRIP
───────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(11, 143, 172, 0.1);
  padding: 1.4rem 0;
}

.trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 600;
  justify-content: center;
}

.trust-strip .trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .trust-strip .trust-item {
    justify-content: flex-start;
  }
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how-section {
  background: var(--ocean);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(20, 184, 212, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.how-section .section-title {
  color: var(--white);
}

.how-section .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(11, 143, 172, 0.35);
}

.how-connector {
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(20, 184, 212, 0.2));
  z-index: 0;
}

.how-step:last-child .how-connector {
  display: none;
}

.how-step h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.how-step p {
  font-size: 0.83rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  max-width: 180px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-section {
  background: var(--foam);
  padding: 5rem 0;
}

.price-card {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(11, 143, 172, 0.12);
  text-align: center;
  position: relative;
  transition: all 0.25s;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 35, 66, 0.1);
}

.price-card.featured {
  background: var(--ocean);
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(10, 35, 66, 0.2);
  transform: translateY(-8px);
}

.price-card.featured:hover {
  transform: translateY(-12px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.price-plan {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.price-card.featured .price-plan {
  color: var(--teal-light);
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-body);
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.75);
}

.price-features li i {
  color: var(--teal);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.price-card.featured .price-features li i {
  color: var(--teal-light);
}

.price-divider {
  border-color: rgba(11, 143, 172, 0.12);
  margin: 1.2rem 0;
}

.price-card.featured .price-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ─────────────────────────────────────────
   SWIM LEVELS / ACHIEVEMENT SYSTEM
───────────────────────────────────────── */
.levels-section {
  background: var(--deep);
  padding: 5rem 0;
}

.levels-section .section-title {
  color: var(--white);
}

.levels-section .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

.level-card {
  background: rgba(14, 77, 123, 0.25);
  border: 1px solid rgba(20, 184, 212, 0.18);
  border-radius: 1.1rem;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: all 0.25s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.level-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--level-color, var(--teal));
}

.level-card:hover {
  background: rgba(14, 77, 123, 0.45);
  transform: translateY(-4px);
  border-color: rgba(20, 184, 212, 0.4);
}

.level-icon {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
  display: block;
}

.level-badge {
  display: inline-block;
  background: rgba(20, 184, 212, 0.15);
  border: 1px solid rgba(20, 184, 212, 0.3);
  color: var(--teal-light);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.7rem;
}

.level-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.level-card p {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────
   MEET THE COACHES
───────────────────────────────────────── */
.coaches-section {
  background: var(--foam);
  padding: 5rem 0;
}

.coach-card {
  background: var(--white);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(11, 143, 172, 0.1);
  transition: all 0.25s;
  height: 100%;
}

.coach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 35, 66, 0.1);
}

.coach-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.coach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.coach-card:hover .coach-img img {
  transform: scale(1.04);
}

.coach-specialty {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--ocean);
  color: var(--teal-light);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coach-body {
  padding: 1.3rem 1.4rem;
}

.coach-body h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ocean);
  margin-bottom: 0.15rem;
}

.coach-title {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.coach-body p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.coach-exp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted-dark);
  font-family: 'Outfit', sans-serif;
}

.coach-exp i {
  color: var(--yellow);
}

/* ─────────────────────────────────────────
   MILESTONES / TIMELINE
───────────────────────────────────────── */
.milestones-section {
  background: var(--ocean);
  padding: 4rem 0;
  overflow: hidden;
}

.milestone-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.milestone-track::-webkit-scrollbar {
  display: none;
}

.milestone-item {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.milestone-item::after {
  content: '';
  position: absolute;
  top: 18px;
  right: -1px;
  width: 50%;
  height: 2px;
  background: rgba(20, 184, 212, 0.25);
}

.milestone-item:last-child::after {
  display: none;
}

.milestone-item::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -1px;
  width: 50%;
  height: 2px;
  background: rgba(20, 184, 212, 0.25);
}

.milestone-item:first-child::before {
  display: none;
}

.milestone-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 212, 0.18);
}

.milestone-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.milestone-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
  background: var(--foam);
  padding: 5rem 0;
}

.faq-section .accordion-item {
  background: var(--white);
  border: 1px solid rgba(11, 143, 172, 0.12) !important;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-section .accordion-button {
  background: var(--white) !important;
  color: var(--ocean) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: none !important;
  padding: 1.2rem 1.4rem;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--teal) !important;
  background: var(--white) !important;
}

.faq-section .accordion-button::after {
  filter: none;
}

.faq-section .accordion-body {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.75;
  padding: 0 1.4rem 1.2rem;
}

/* ─────────────────────────────────────────
   NEWSLETTER STRIP
───────────────────────────────────────── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--mid), var(--teal));
  padding: 3.5rem 0;
}

.newsletter-strip h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.newsletter-strip p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.75rem 1.1rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
}

.newsletter-form button {
  background: var(--white);
  color: var(--mid);
  border: none;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--foam);
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 12px;
    width: 100%;
  }
}
