@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&family=Inter:wght@600;700&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0b2545;
  --blue: #0084ff;
  --blue-dark: #0778e2;
  --gray: #5b6e80;
  --gray-light: rgba(102, 115, 128, 0.8);
  --bg-light: #f3f7fc;
  --bg-blue: #e1f0ff;
  --green: #10b981;
  --orange: #ed7333;
  --purple: #8c54ed;
  --border: #e5e7eb;
  --shadow-soft: 0px 12px 24px rgba(10, 29, 55, 0.04);
  --shadow-card: 0px 12px 12px rgba(10, 29, 55, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, rgba(240,245,252,0.6) 25%, rgba(255,255,255,0.4) 45%, rgba(240,245,252,0.7) 65%, rgba(255,255,255,0.3) 80%, #f0f5fc 100%), #f3f7fc;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Page Wrapper ===== */
.page-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

/* ===== Decorative Wave ===== */
.wave-decor {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  bottom: 200px;
  pointer-events: none;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='900' fill='none'%3E%3Cpath d='M720 0C720 100,1380 130,1380 300C1380 470,60 440,60 610C60 780,720 750,720 900' stroke='%232288EE' stroke-opacity='0.22' stroke-width='2' stroke-dasharray='12 14' stroke-linecap='round'/%3E%3C/svg%3E") repeat-y center top;
  background-size: 100% 900px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* ===== Section shared ===== */
section {
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.tagline-pill {
  display: inline-flex;
  padding: 6px 16px;
  background: var(--bg-blue);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray);
  line-height: 28px;
  max-width: 800px;
}

/* ===== Navigation ===== */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  height: auto;
  flex-wrap: wrap;
}

.nav-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

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

.nav-links-inner {
  display: contents;
}

.nav-links a {
  font-size: 20px;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.8;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.btn-small {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--blue);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-small:hover {
  background: var(--blue-dark);
}

/* ===== Audience Toggle ===== */
.audience-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f0f4f8;
  border-radius: 100px;
  padding: 4px;
  order: 5;
  margin: 16px auto 0;
}

.nav-bar::after {
  content: '';
  flex-basis: 100%;
  height: 0;
  order: 4;
}

.audience-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  background: transparent;
  color: var(--gray);
}

.audience-btn--active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 132, 255, 0.25);
}

.audience-btn:not(.audience-btn--active):hover {
  color: var(--navy);
}

.mobile-menu-toggle,
.mobile-menu-footer {
  display: none;
}

/* ===== Hero Section ===== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 80px 64px;
  text-align: center;
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray);
  line-height: 30px;
  max-width: 876px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(90deg, #ffd94d, #f2a626);
  border: none;
  border-bottom: 4px solid #e5a93b;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  filter: drop-shadow(0px 8px 8px rgba(255, 200, 87, 0.2));
  transition: transform 0.2s, filter 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0px 12px 16px rgba(255, 200, 87, 0.3));
}

.btn-cta img {
  width: 16px;
  height: 16px;
}

.hero-note {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: 0.32px;
}

/* ===== Collage Slider ===== */
.collage {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 20px 0 30px;
  pointer-events: none;
}

.collage-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: collage-scroll 30s linear infinite;
  align-items: center;
}

.collage:hover .collage-track {
  animation-play-state: paused;
}

@keyframes collage-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.photo-card {
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0px 12px 24px rgba(10, 29, 55, 0.10);
  transition: transform 0.4s, box-shadow 0.4s;
}

.photo-card:hover {
  box-shadow: 0px 16px 32px rgba(10, 29, 55, 0.18);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-card-1 {
  width: 300px;
  height: 350px;
  transform: rotate(-6deg);
}

.photo-card-1:hover { transform: rotate(-2deg) scale(1.04); }

.photo-card-2 {
  width: 340px;
  height: 270px;
  transform: rotate(4deg);
}

.photo-card-2:hover { transform: rotate(1deg) scale(1.04); }

.photo-card-3 {
  width: 320px;
  height: 280px;
  transform: rotate(-3deg);
}

.photo-card-3:hover { transform: rotate(0deg) scale(1.04); }

.photo-card-4 {
  width: 350px;
  height: 290px;
  transform: rotate(5deg);
}

.photo-card-4:hover { transform: rotate(2deg) scale(1.04); }

.photo-card-5 {
  width: 280px;
  height: 330px;
  transform: rotate(-5deg);
}

.photo-card-5:hover { transform: rotate(-1deg) scale(1.04); }

/* ===== Team Section ===== */
.team-section {
  padding: 0 80px 80px;
}

.team-section .section-header {
  margin-bottom: 40px;
}

.trainer-slider-wrap {
  position: relative;
  padding: 0 10px;
}

#trainerSwiper {
  overflow: hidden;
}

#trainerSwiper .swiper-slide {
  height: auto;
}

.trainer-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trainer-photo {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.trainer-photo:hover {
  transform: scale(1.03);
}

.trainer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  flex: 1;
}

.trainer-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.trainer-experience {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.trainer-specialty {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-self: flex-start;
}

.trainer-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: auto;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 8px;
  margin-top: 40px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-outline {
  display: inline-flex;
  padding: 10px 20px;
  border: 1.5px solid var(--blue);
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 132, 255, 0.1);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.arrow-btn:hover {
  background: var(--bg-blue);
}

.arrow-btn--active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0px 4px 4px rgba(0, 132, 255, 0.15);
}

.arrow-btn--active:hover {
  background: var(--blue-dark);
}

.arrow-btn img {
  width: 16px;
  height: 16px;
}

/* ===== Pools Section ===== */
.pools-section {
  padding: 0 80px 80px;
}

.pools-section .section-header {
  margin-bottom: 40px;
}

.pool-tabs {
  display: flex;
  gap: 15px;
}

.pool-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 15px 15px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.pool-tab--active {
  background: #fff;
  color: #144a94;
  box-shadow: 0px 2px 8px rgba(10, 28, 56, 0.1);
}

.pool-tab--inactive {
  background: #e8eaed;
  color: #59667a;
  font-weight: 600;
}

.pool-tab--inactive:hover {
  background: #dfe1e5;
}

.pool-card {
  background: #fff;
  border-radius: 0 24px 24px 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pool-name {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
}

.address-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-group img {
  width: 18px;
  height: 18px;
}

.address-group a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: underline;
}

.address-group a:hover {
  color: var(--blue);
}

.pool-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.badge--temp {
  background: var(--bg-blue);
  color: var(--blue);
}

.badge--size {
  background: #e8f9f3;
  color: var(--green);
}

.badge--kids {
  background: #ffede0;
  color: var(--orange);
}

.badge--groups {
  background: #ede5ff;
  color: var(--purple);
}

.map-and-info {
  display: flex;
  gap: 24px;
  height: 409px;
}

.map-column {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 380px;
  flex-shrink: 0;
}

.features-box {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.features-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-blue);
  border-radius: 50%;
  padding: 4px;
}

.feature-icon img {
  width: 14px;
  height: 14px;
}

.feature-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  line-height: 20px;
}

.schedule-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.schedule-footer img {
  width: 18px;
  height: 18px;
}

.schedule-footer span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.btn-pool-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: linear-gradient(90deg, #ffd94d, #f2a626);
  border: none;
  border-bottom: 4px solid #e5a93b;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  filter: drop-shadow(0px 8px 8px rgba(255, 200, 87, 0.2));
  transition: transform 0.2s, filter 0.2s;
}

.btn-pool-cta:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0px 12px 16px rgba(255, 200, 87, 0.3));
}

/* Gallery */
.gallery-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.gallery-swiper {
  overflow: hidden;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.gallery-card {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-card img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-card:hover img:first-child {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(11, 37, 69, 0.6);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.gallery-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gallery-expand:hover {
  opacity: 1;
}


/* ===== Subscriptions Section ===== */
.subscriptions-section {
  background: var(--bg-light);
  padding: 80px 120px 100px;
}

.subscriptions-section .section-header {
  margin-bottom: 80px;
}

.membership-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.grid-row {
  display: flex;
  gap: 24px;
}

.sub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  flex: 1;
  min-width: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.sub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 32px rgba(10, 29, 55, 0.14);
}

.sub-card--highlighted:hover {
  box-shadow: 0px 16px 32px rgba(0, 132, 255, 0.35);
}

.sub-card--fixed {
  max-width: 384px;
}

.sub-card--flex {
  flex: 1;
  min-width: 0;
}

.sub-card--highlighted {
  background: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: 0px 12px 14px rgba(0, 132, 255, 0.25);
}

.card-stripe {
  padding: 14px 24px;
  border-radius: 18px 18px 0 0;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.stripe-green {
  background: #41f441;
  color: var(--navy);
}

.stripe-gray {
  background: #e8eaed;
  color: var(--navy);
}

.stripe-blue-dark {
  background: var(--blue-dark);
  color: #fff;
}

.stripe-blue-light {
  background: #62a1ff;
  color: var(--navy);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.sub-card--highlighted .card-body {
  background: var(--blue);
  border-radius: 0 0 20px 20px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.price-main {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
}

.sub-card--highlighted .price-main {
  color: #fff;
}

.price-per {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

.sub-card--highlighted .price-per {
  color: rgba(255, 255, 255, 0.8);
}

.card-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
}

.sub-card--highlighted .card-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.duration-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.calendar-icon-bg {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-blue);
  border-radius: 10px;
}

.sub-card--highlighted .calendar-icon-bg {
  background: rgba(255, 255, 255, 0.12);
}

.calendar-icon-bg img {
  width: 18px;
  height: 18px;
}

.duration-text .duration-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

.sub-card--highlighted .duration-text .duration-value {
  color: #fff;
}

.duration-text .duration-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 2px;
}

.sub-card--highlighted .duration-text .duration-label {
  color: rgba(255, 255, 255, 0.7);
}

.status-badge {
  position: absolute;
  top: -12px;
  right: 27px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.status-badge--september {
  background: linear-gradient(90deg, #ffc300, #60de9f 62%, #0ef);
  color: #fff;
}

.status-badge--popular {
  background: #fff;
  border: 1px solid var(--blue);
  color: var(--blue);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.status-badge--profitable {
  background: linear-gradient(90deg, var(--green), #00f0ff);
  color: #0d1a33;
}

.status-badge--personal {
  background: linear-gradient(90deg, #ff5e00, #ffb800);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}

.status-badge--personal img {
  width: 16px;
  height: 16px;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--bg-light);
  padding: 0 120px 100px;
}

.faq-section .section-header {
  margin-bottom: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0px 12px 16px rgba(10, 29, 55, 0.12);
}

.question-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.question-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  flex: 1;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  line-height: 24px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== Messenger Modal ===== */
.messenger-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  align-items: center;
  justify-content: center;
}

.messenger-modal.active {
  display: flex;
}

.messenger-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modal-fade-in 0.25s ease;
}

.messenger-modal__box {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  width: 520px;
  max-width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0px 16px 24px rgba(5, 22, 46, 0.2);
  animation: modal-scale-in 0.3s ease;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-scale-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.messenger-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.messenger-modal__header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 380px;
}

.messenger-modal__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
}

.messenger-modal__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  line-height: 20px;
}

.messenger-modal__close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.messenger-modal__close:hover {
  opacity: 0.7;
}

.messenger-modal__accent {
  height: 4px;
  width: 100%;
  background: #ffd94d;
  border-radius: 2px;
}

.messenger-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.messenger-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid #e1f0ff;
  border-radius: 16px;
  box-shadow: 0px 4px 6px rgba(10, 29, 55, 0.03);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.messenger-card:hover {
  border-color: var(--blue);
  box-shadow: 0px 6px 12px rgba(0, 132, 255, 0.1);
  transform: translateY(-2px);
}

.messenger-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
}

.messenger-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.messenger-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.messenger-card__action {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.messenger-modal__footer {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #e1f0ff;
  border-radius: 16px;
}

.messenger-modal__info-icon {
  flex-shrink: 0;
}

.messenger-modal__footer p {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

.messenger-modal__bottom {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-align: center;
  padding: 14px 16px 16px;
  border-radius: 0 0 24px 24px;
}

.messenger-modal__bottom-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.messenger-modal__bottom-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lightbox-in 0.25s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  cursor: default;
  animation: lightbox-img-in 0.3s ease;
}

@keyframes lightbox-img-in {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after  { transform: rotate(-45deg); }

/* ===== Footer spacer ===== */
.footer-spacer {
  height: 60px;
  background: var(--bg-light);
}

/* ===== Burger Button ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .nav-bar {
    padding: 16px 32px;
    height: auto;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-phone {
    font-size: 14px;
  }

  .hero-content {
    padding: 32px 32px 48px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .collage {
    padding: 16px 0 20px;
  }

  .collage-track {
    gap: 20px;
    animation-duration: 25s;
  }

  .photo-card-1 { width: 240px; height: 280px; }
  .photo-card-2 { width: 270px; height: 220px; }
  .photo-card-3 { width: 250px; height: 220px; }
  .photo-card-4 { width: 270px; height: 230px; }
  .photo-card-5 { width: 220px; height: 260px; }

  .team-section {
    padding: 0 32px 60px;
  }

  .pools-section {
    padding: 0 32px 60px;
  }

  .map-and-info {
    flex-direction: column;
    height: auto;
  }

  .map-column {
    height: 350px;
  }

  .right-column {
    width: 100%;
  }

  .subscriptions-section {
    padding: 60px 32px 80px;
  }

  .grid-row {
    flex-wrap: wrap;
    height: auto;
  }

  .sub-card--fixed {
    width: calc(50% - 12px);
    max-width: none;
  }

  .sub-card--flex {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
    max-width: none;
  }

  .faq-section {
    padding: 0 32px 80px;
  }

  .section-title {
    font-size: 36px;
  }

  .wave-decor {
    display: none;
  }
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 12px 16px;
    align-items: center;
  }

  .nav-bar::after {
    display: none;
  }

  .nav-logo {
    width: 100px;
    height: 100px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(11, 37, 69, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0;
    margin: 0;
    order: 3;
    gap: 0;
    justify-content: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > * {
    position: relative;
    z-index: 1;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f0f4f8;
    border-radius: 100px;
    padding: 4px;
    margin: 24px 0 16px;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 500;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    opacity: 1;
    width: 100%;
    text-align: center;
  }

  .nav-links a:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 24px;
    margin-bottom: 24px;
  }

  .btn-small--wide {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    border-radius: 100px;
  }

  .mobile-menu-footer .nav-phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
  }

  .nav-links-inner {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 16px 32px rgba(10, 29, 55, 0.15);
    margin: 70px 16px 0;
    padding: 8px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 32px);
  }

  .nav-right {
    display: none;
  }

  .nav-links.open ~ .nav-right {
    display: none;
  }

  .burger {
    z-index: 1001;
    justify-self: end;
  }

  .burger.open {
    position: fixed;
    top: 82px;
    right: 28px;
  }

  .audience-toggle {
    order: 0;
    margin: 0 8px 0 0;
    justify-self: center;
    align-self: center;
  }

  .nav-links.open ~ .audience-toggle {
    visibility: hidden;
  }

  .audience-btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .hero-content {
    padding: 24px 20px 32px;
    gap: 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 14px;
  }

  .hero-note {
    font-size: 14px;
  }

  .collage {
    padding: 12px 0 16px;
  }

  .collage-track {
    gap: 16px;
    animation-duration: 20s;
  }

  .photo-card {
    padding: 8px;
  }

  .photo-card-1 { width: 200px; height: 240px; }
  .photo-card-2 { width: 220px; height: 180px; }
  .photo-card-3 { width: 210px; height: 180px; }
  .photo-card-4 { width: 220px; height: 190px; }
  .photo-card-5 { width: 190px; height: 220px; }

  .section-header {
    gap: 12px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .tagline-pill {
    font-size: 12px;
    padding: 5px 12px;
  }

  .team-section {
    padding: 0 20px 60px;
  }

  .trainer-card {
    padding: 16px;
  }

  .trainer-photo {
    height: 280px;
  }

  .trainer-name {
    font-size: 18px;
  }

  .slider-controls {
    justify-content: center;
    margin-top: 24px;
  }

  .pools-section {
    padding: 0 20px 60px;
  }

  .pool-tabs {
    padding-bottom: 2px;
    gap: 8px;
  }

  .pool-tab {
    padding: 8px 10px;
    font-size: 11px;
    flex: 1;
    text-align: center;
  }

  .pool-card {
    padding: 20px;
    gap: 20px;
    border-radius: 0 16px 16px 16px;
  }

  .pool-name {
    font-size: 24px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pool-badges {
    gap: 8px;
  }

  .badge {
    padding: 6px 12px;
    font-size: 12px;
  }

  .map-and-info {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .map-column {
    height: 300px;
  }

  .right-column {
    width: 100%;
  }

  .features-box {
    padding: 20px;
  }

  .btn-pool-cta {
    font-size: 16px;
    padding: 14px 20px;
  }

  .gallery-card {
    height: 200px;
  }

  .subscriptions-section {
    padding: 48px 20px 60px;
  }

  .subscriptions-section .section-header {
    margin-bottom: 40px;
  }

  .membership-grid {
    gap: 20px;
  }

  .grid-row {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .sub-card--fixed {
    width: 100%;
    max-width: none;
  }

  .sub-card--flex {
    min-width: 100%;
    max-width: none;
  }

  .sub-card {
    border-radius: 16px;
  }

  .card-stripe {
    border-radius: 14px 14px 0 0;
    font-size: 14px;
    padding: 12px 20px;
  }

  .card-body {
    padding: 20px;
    gap: 16px;
  }

  .price-main {
    font-size: 32px;
  }

  .faq-section {
    padding: 0 20px 60px;
  }

  .faq-section .section-header {
    margin-bottom: 40px;
  }

  .faq-item {
    padding: 18px;
    border-radius: 14px;
  }

  .question-text {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 22px;
  }

  .lightbox img {
    max-width: 95vw;
    max-height: 85vh;
    border-radius: 8px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .wave-decor {
    display: none;
  }

  .messenger-modal__box {
    padding: 24px;
    gap: 24px;
    border-radius: 20px;
  }

  .messenger-modal__title {
    font-size: 20px;
  }

  .messenger-modal__grid {
    grid-template-columns: 1fr;
  }

  .footer-spacer {
    height: 40px;
  }
}

/* ===== Floating CTA Button ===== */
.floating-cta-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 100px;
  height: 100px;
}

.floating-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: none;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-cta:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5);
}

.floating-cta:active {
  transform: translate(-50%, -50%) scale(0.96);
}

.floating-cta__ring {
  width: 100px;
  height: 100px;
  animation: spinText 12s linear infinite;
}

.floating-cta__ring text {
  fill: var(--navy);
  font-family: 'Rubik', sans-serif;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes spinText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .floating-cta-wrap {
    bottom: 16px;
    right: 16px;
  }
}
