/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  --navy: #161b33;
  --navy-light: #1f2544;
  --navy-lighter: #2a3158;
  --pink: #ed6ea0;
  --pink-hover: #f584af;
  --teal: #6bc9cd;
  --teal-dim: rgba(107, 201, 205, 0.15);
  --pink-dim: rgba(237, 110, 160, 0.12);
  --gold: #f5a623;
  --purple: #9b59b6;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.90);
  --white-70: rgba(255,255,255,0.70);
  --white-50: rgba(255,255,255,0.50);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --white-05: rgba(255,255,255,0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 0.25s ease;
  --header-height: 80px;
}

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

body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn svg { width: 20px; height: 20px; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #d85a8a);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(237, 110, 160, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(237, 110, 160, 0.45);
}

.btn-secondary {
  background: var(--white-05);
  color: var(--white);
  border: 2px solid var(--white-20);
}

.btn-secondary:hover {
  background: var(--white-10);
  border-color: var(--teal);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
}

.btn-teal:hover {
  background: #7dd4d8;
  transform: translateY(-2px);
}

/* ==========================================
   FLOATING BUTTON
   ========================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--pink), #d85a8a);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
}

.floating-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(237, 110, 160, 0.6);
  border-color: var(--white);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(22,27,51,0.98), rgba(22,27,51,0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img { height: 48px; width: auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--white-70);
  transition: color var(--transition);
}

.header-phone:hover { color: var(--teal); }
.header-phone svg { width: 18px; height: 18px; color: var(--teal); }

@media (min-width: 768px) {
  .header-phone { display: flex; }
}

.btn-book {
  padding: 14px 28px;
  font-size: 0.9375rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 40px) 0 50px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1000px 600px at 15% 25%, rgba(107, 201, 205, 0.12), transparent 55%),
    radial-gradient(800px 500px at 85% 75%, rgba(237, 110, 160, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.35);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
}

/* LOCAL SEO: H1 with geographic keywords */
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--white-70);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--white-70);
}

/* ==========================================
   VIDEO SECTION
   ========================================== */
.video-section {
  padding: 0 0 80px;
  position: relative;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid var(--white-10);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* ==========================================
   TESTIMONIAL IMAGES + STATS SECTION
   ========================================== */
.social-proof-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}

.testimonial-images {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.testimonial-images img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid var(--white-10);
  transition: all var(--transition);
}

.testimonial-images img:hover {
  transform: scale(1.05);
  border-color: var(--teal);
}

@media (min-width: 768px) {
  .testimonial-images img {
    width: 140px;
    height: 140px;
  }
}

.stat-headline {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.stat-headline h2 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
}

.stat-headline .stat-number {
  color: var(--teal);
  font-weight: 800;
}

.stat-headline sup {
  font-size: 0.5em;
  color: var(--teal);
  vertical-align: super;
}

.stat-citation {
  text-align: center;
  font-size: 0.75rem;
  color: var(--white-50);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.stat-cta {
  text-align: center;
  margin-bottom: 48px;
}

.media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0.5;
  margin-bottom: 40px;
}

.media-logos img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.media-logos img:hover {
  opacity: 0.8;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--pink-dim);
  border: 1px solid rgba(237, 110, 160, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.section-badge.teal {
  background: var(--teal-dim);
  border-color: rgba(107, 201, 205, 0.25);
  color: var(--teal);
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--white-70);
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
  background: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--white-20);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.pricing-card.featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(237, 110, 160, 0.1), rgba(255,255,255,0.02));
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-title {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-70);
}

.pricing-amount .value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card.featured .pricing-amount .value {
  color: var(--pink);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--white-50);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.875rem;
  color: var(--white-50);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   LOYALTY REWARDS SECTION
   ========================================== */
.loyalty-section {
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
}

.loyalty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(800px 400px at 20% 80%, rgba(107, 201, 205, 0.06), transparent 60%),
    radial-gradient(600px 300px at 80% 20%, rgba(237, 110, 160, 0.05), transparent 50%);
  pointer-events: none;
}

.loyalty-content {
  position: relative;
  z-index: 1;
}

.loyalty-chart-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px 16px;
}

.loyalty-chart {
  display: grid;
  grid-template-columns: 180px repeat(5, 1fr);
  gap: 2px;
  min-width: 900px;
  background: var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.chart-header-cell {
  padding: 20px 12px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--white-10);
}

.chart-header-cell:first-child { background: transparent; }

.chart-header-cell .tier-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.chart-header-cell .tier-duration {
  font-size: 0.6875rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-first-step { border-top: 3px solid var(--white-20); }
.tier-select { border-top: 3px solid var(--teal); }
.tier-premier { border-top: 3px solid var(--pink); }
.tier-elite { border-top: 3px solid var(--gold); }
.tier-founders { border-top: 3px solid var(--purple); }

.chart-cell {
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--white-90);
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--white-05);
}

.chart-cell:first-child {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: var(--white-70);
  background: rgba(255,255,255,0.03);
  padding-left: 18px;
  font-size: 0.75rem;
}

.chart-cell .value {
  font-weight: 700;
  color: var(--white);
}

.chart-cell .value.teal { color: var(--teal); }
.chart-cell .value.pink { color: var(--pink); }
.chart-cell .value.gold { color: var(--gold); }
.chart-cell .value.purple { color: var(--purple); }

.chart-cell .check {
  width: 22px;
  height: 22px;
  background: rgba(107, 201, 205, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-cell .check svg {
  width: 12px;
  height: 12px;
  color: var(--teal);
}

.chart-cell .dash {
  width: 16px;
  height: 2px;
  background: var(--white-20);
  border-radius: 1px;
}

.loyalty-cta {
  text-align: center;
  margin-top: 48px;
}

.loyalty-cta .note {
  font-size: 0.8125rem;
  color: var(--white-50);
  margin-bottom: 28px;
}

.loyalty-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9375rem;
  color: var(--teal);
  font-weight: 600;
}

.loyalty-link:hover { color: #8dd8db; }
.loyalty-link svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .loyalty-chart-wrapper::after {
    content: '← Scroll to see all tiers →';
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--white-50);
    margin-top: 12px;
  }
}

/* ==========================================
   TEAM / ABOUT SECTION (EEAT)
   ========================================== */
.team-section {
  background: var(--navy);
}

.team-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .team-content {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}

.team-text h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 20px;
}

.team-text p {
  font-size: 1.0625rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-credentials {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--white-10);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.credential-item svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item span {
  font-size: 0.9375rem;
  color: var(--white-70);
}

.team-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--white-10);
}

.team-images img:first-child {
  grid-column: span 2;
  height: 280px;
}

/* ==========================================
   AESTHETICS SECTION
   ========================================== */
.aesthetics-section {
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

.aesthetics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .aesthetics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aesthetic-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}

.aesthetic-card:hover {
  border-color: var(--white-20);
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.aesthetic-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

/* UPDATED: Removed hover zoom effect */
.aesthetic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Removed transition */
}

/* Removed .aesthetic-card:hover .aesthetic-image img { transform: scale(1.05); } */

.aesthetic-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.aesthetic-badge.pink {
  background: var(--pink);
  color: var(--white);
}

.aesthetic-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aesthetic-content h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--white);
}

.aesthetic-content h3 sup {
  font-size: 0.6em;
}

.aesthetic-tagline {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.aesthetic-card:nth-child(2) .aesthetic-tagline {
  color: var(--pink);
}

.aesthetic-desc {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 20px;
}

.aesthetic-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.aesthetic-perks .perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--white-70);
}

.aesthetic-perks .perk svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.aesthetic-card:nth-child(2) .aesthetic-perks .perk svg {
  color: var(--pink);
}

.aesthetic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
}

.aesthetic-card:nth-child(2) .aesthetic-link {
  color: var(--pink);
}

.aesthetic-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.aesthetic-card:hover .aesthetic-link svg {
  transform: translateX(4px);
}

.aesthetics-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================
   LOCATIONS SECTION (VERTICAL PILL CARDS)
   ========================================== */
.locations-section {
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.location-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.location-card:hover {
  border-color: var(--white-20);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* Map container - full width with padding for pill effect */
.location-map {
  width: 100%;
  height: 220px;
  background: var(--navy-lighter);
  padding: 20px 20px 0 20px;
  flex-shrink: 0;
}

.location-map-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: #2a3158;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) brightness(0.92);
  transition: filter var(--transition);
}

.location-card:hover .location-map iframe {
  filter: saturate(1) brightness(1);
}

/* Location info - centered, vertical layout */
.location-info {
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.location-area {
  font-size: 0.875rem;
  color: var(--white-50);
  margin-bottom: 28px;
}

/* Stacked details */
.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
  flex: 1;
}

.location-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.location-detail .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.2);
  border-radius: var(--radius-sm);
}

.location-detail .icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.location-card:nth-child(2) .location-detail .icon {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.2);
}

.location-card:nth-child(2) .location-detail .icon svg {
  color: var(--pink);
}

.location-detail .text {
  text-align: center;
}

.location-detail .label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-50);
  margin-bottom: 6px;
}

.location-detail .value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.location-detail .value a {
  color: var(--white);
  transition: color var(--transition);
}

.location-detail .value a:hover {
  color: var(--teal);
}

.location-card:nth-child(2) .location-detail .value a:hover {
  color: var(--pink);
}

/* Buttons - full width, stacked */
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.location-actions .btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.location-actions .btn-view {
  background: var(--teal);
  color: var(--navy);
}

.location-actions .btn-view:hover {
  background: #7dd4d8;
  transform: translateY(-2px);
}

.location-card:nth-child(2) .location-actions .btn-view {
  background: var(--pink);
  color: var(--white);
}

.location-card:nth-child(2) .location-actions .btn-view:hover {
  background: var(--pink-hover);
}

.location-actions .btn-directions {
  background: var(--white-05);
  color: var(--white);
  border: 1px solid var(--white-20);
}

.location-actions .btn-directions:hover {
  background: var(--white-10);
  border-color: var(--white-30);
}

/* Service Areas List (LOCAL SEO) */
.service-areas {
  margin-top: 60px;
  text-align: center;
}

.service-areas h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  padding: 8px 16px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--white-70);
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--white-10);
  border-color: var(--teal);
  color: var(--white);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background: var(--navy);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--white-10);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.75;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.12), rgba(237, 110, 160, 0.1));
}

.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--white-70);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy-light);
  border-top: 1px solid var(--white-10);
  padding: 70px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--white-50);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--white-50);
  padding: 7px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 35px;
  border-top: 1px solid var(--white-10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--white-50);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-legal a:hover { color: var(--white-70); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .hero { padding: calc(var(--header-height) + 55px) 0 50px; }
  .section { padding: 70px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .testimonial-images img { width: 80px; height: 80px; }
  .location-actions { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   PROGRAM PAGE — Hero
   ========================================================================== */
.prog-hero {
  position: relative;
  padding: calc(var(--header-height) + 20px) 0 60px;
  background: var(--navy);
  overflow: visible;
}

.prog-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 968px) {
  .prog-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.prog-hero-content {
  position: relative;
  z-index: 2;
}

.prog-hero-content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}

.prog-hero-desc {
  font-size: 1.0625rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ==========================================
   MEMBERSHIP PAGE
   ========================================== */
.membership-single .pricing-grid {
  max-width: 700px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .membership-single .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Medication add-on pricing in dual cards */
.med-addon-price {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.med-addon-price .med-addon-val {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.med-addon-price .med-addon-val.teal { color: var(--teal); }
.med-addon-price .med-addon-val.pink { color: var(--pink); }

.med-addon-price .med-addon-period {
  color: var(--white-50);
  font-size: 0.875rem;
  display: block;
  margin-top: 2px;
}

.med-addon-links {
  margin-top: 20px;
}

.med-addon-links a {
  display: inline-block;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  line-height: 1.8;
}

.med-addon-links a.teal { color: var(--teal); }
.med-addon-links a.pink { color: var(--pink); }
.med-addon-links a:hover { text-decoration: underline; }

/* Callout box (shared pattern) */
.mem-callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.06), transparent);
  max-width: 700px;
  margin: 32px auto 0;
}

.mem-callout-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(107, 201, 205, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mem-callout-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.mem-callout-content strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9375rem;
}

.mem-callout-content p {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.6;
  margin: 0;
}

.med-compare-desc {
  font-size: 0.875rem;
  color: var(--white-60);
  margin: 8px 0 0;
  line-height: 1.5;
}

/* Medication add-on dual cards */
.med-addon-card .med-candidate-header {
  margin-bottom: 20px;
}

.med-addon-card.sema {
  border-color: rgba(107, 201, 205, 0.3);
}

.med-addon-card.tirz {
  border-color: rgba(237, 110, 160, 0.3);
  background: linear-gradient(135deg, rgba(237, 110, 160, 0.06), rgba(237, 110, 160, 0.02));
}

.med-addon-card.tirz .med-candidate-header svg {
  color: var(--pink);
}

/* Benefits grid SVG sizing */
.membership-single .med-benefit-num svg {
  width: 24px;
  height: 24px;
}

/* Compare card arrow fix */
.membership-single .med-compare-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.membership-single .med-compare-card svg {
  max-width: 16px;
  max-height: 16px;
}

/* ==========================================
   BLOG GRID & CARDS
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

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

.blog-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(107, 201, 205, 0.15);
  color: var(--teal);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card-title a {
  color: var(--white);
  text-decoration: none;
}

.blog-card-title a:hover { color: var(--teal); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--white-40);
}

.blog-pagination {
  margin-top: 48px;
  text-align: center;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-70);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}

/* ==========================================
   BLOG POST (single)
   ========================================== */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--white-50);
  margin-top: 16px;
}

.blog-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 500;
}

.blog-post-image {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--white-80);
}

.blog-post-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--white);
}

.blog-post-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--white);
}

.blog-post-body p { margin-bottom: 16px; }

.blog-post-body ul,
.blog-post-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.blog-post-body li {
  margin-bottom: 8px;
}

.blog-post-body a { color: var(--teal); }
.blog-post-body a:hover { text-decoration: underline; }

.blog-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
}

.blog-review-box {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 201, 205, 0.2);
  background: rgba(107, 201, 205, 0.05);
  margin-top: 48px;
}

.blog-review-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
}

.blog-review-box p {
  font-size: 0.875rem;
  color: var(--white-60);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
}

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

.testimonial-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--white-20);
}

.testimonial-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-body {
  padding: 24px;
}

.testimonial-quote {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--white-90);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--teal);
}

.testimonial-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.testimonial-stat {
  display: flex;
  flex-direction: column;
}

.testimonial-stat-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
}

.testimonial-stat-lbl {
  font-size: 0.6875rem;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--white-50);
}

.testimonial-story {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--white-10);
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* ==========================================
   WEBINAR VIDEO EMBED
   ========================================== */
.webinar-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  background: var(--white-05);
}

.webinar-video iframe,
.webinar-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================
   DUAL PHONE NUMBERS — Both locations visible
   ========================================== */
.phone-both {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.phone-both a { white-space: nowrap; }
.phone-both .phone-loc {
  font-weight: 600;
  opacity: 0.85;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.phone-both--inline {
  display: inline;
}
.phone-both--inline a {
  color: var(--teal);
  text-decoration: none;
}
.phone-both--inline a:hover { text-decoration: underline; }
.phone-both--inline .phone-sep {
  color: var(--gray-300);
  margin: 0 4px;
}

.phone-both--stacked {
  flex-direction: column;
  gap: 6px;
}
.phone-both--stacked a {
  color: var(--teal);
  text-decoration: none;
  font-size: 1.05rem;
}
.phone-both--stacked a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .phone-both { flex-direction: column; gap: 8px; }
}

/* ==========================================
   9-BOX "WHAT'S INCLUDED" GRID
   ========================================== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.included-box {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.included-box:hover {
  border-color: var(--teal);
  background: rgba(107,201,205,0.03);
  transform: translateY(-3px);
}

.included-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(107,201,205,0.1);
  border: 1px solid rgba(107,201,205,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal);
}

.included-icon.pink {
  background: rgba(237,110,160,0.1);
  border-color: rgba(237,110,160,0.2);
  color: var(--pink);
}

.included-icon svg {
  width: 22px;
  height: 22px;
}

.included-box h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.included-box p {
  font-size: 0.8125rem;
  color: var(--white-50);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .included-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   HOMEPAGE BMI CALCULATOR WRAPPER
   ========================================== */
.hp-bmi-wrap {
  max-width: 480px;
  margin: 0 auto 56px;
}

.hp-bmi-wrap .bmi-calc {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

/* ==========================================
   GET STARTED — 3 OPTION CARDS
   ========================================== */
.start-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.start-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.start-option:hover {
  border-color: var(--teal);
  background: rgba(107,201,205,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.start-option-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(107,201,205,0.1);
  border: 1px solid rgba(107,201,205,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  transition: all 0.3s ease;
}

.start-option:hover .start-option-icon {
  background: var(--teal);
  color: var(--navy);
}

.start-option-icon.pink {
  background: rgba(237,110,160,0.1);
  border-color: rgba(237,110,160,0.2);
  color: var(--pink);
}

.start-option:hover .start-option-icon.pink {
  background: var(--pink);
  color: var(--navy);
}

.start-option-icon svg {
  width: 28px;
  height: 28px;
}

.start-option h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.start-option p {
  font-size: 0.875rem;
  color: var(--white-50);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.start-option-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s;
  white-space: nowrap;
}

.start-option-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.start-option:hover .start-option-link { gap: 10px; }

@media (max-width: 768px) {
  .start-options { grid-template-columns: 1fr; max-width: 400px; }
}
