/* ==========================================================================
   DETOX WELLNESS - LUXURY FITNESS, SPA & WELLNESS WEBSITE
   Design System & Main Stylesheet
   San Fernando City, La Union, Philippines
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   1. CSS Variables & Design Tokens
   ========================================================================== */
:root {
  /* Brand Backgrounds */
  --bg-main: #07080c;
  --bg-secondary: #0c1115;
  --surface: #11171c;
  --surface-card: #141c22;
  --surface-card-hover: #1a252e;
  --surface-elevated: #1f2c37;

  /* Brand Accents */
  --purple: #5a175f;
  --purple-light: #7a2281;
  --violet: #82298f;
  --neon-violet: #a936ba;
  --teal: #00aaa8;
  --teal-light: #00c7c5;
  --cyan: #00d4d4;
  --cyan-glow: rgba(0, 212, 212, 0.45);
  --purple-glow: rgba(130, 41, 143, 0.45);
  --white: #ffffff;
  --text-main: #f0f3f6;
  --text-muted: #a6adb4;
  --text-subtle: #737e89;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-cyan: rgba(0, 212, 212, 0.35);
  --border-purple: rgba(130, 41, 143, 0.45);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #5a175f 0%, #00aaa8 100%);
  --grad-cyan-teal: linear-gradient(135deg, #00d4d4 0%, #00aaa8 100%);
  --grad-purple-violet: linear-gradient(135deg, #82298f 0%, #5a175f 100%);
  --grad-dark: linear-gradient(135deg, #050505 0%, #101820 100%);
  --grad-overlay: linear-gradient(180deg, rgba(7, 8, 12, 0.85) 0%, rgba(7, 8, 12, 0.95) 100%);

  /* Typography */
  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-subheading: 'Oswald', 'Poppins', sans-serif;
  --font-body: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow-cyan: 0 0 25px rgba(0, 212, 212, 0.3);
  --shadow-glow-purple: 0 0 25px rgba(130, 41, 143, 0.35);
}

/* ==========================================================================
   2. Reset & Global Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1e2832;
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* Selection Color */
::selection {
  background-color: var(--violet);
  color: var(--white);
}

/* Base Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6em;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--teal-light);
}

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

/* ==========================================================================
   3. Preloader & Progress Indicator
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #050608;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: var(--violet);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-ring:nth-child(2) {
  inset: 8px;
  border-top-color: var(--purple-light);
  border-left-color: var(--teal);
  animation: spin-reverse 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-brand {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-top: 1.25rem;
  text-align: center;
}

.preloader-brand span {
  background: var(--grad-cyan-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-tagline {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--teal) 50%, var(--cyan) 100%);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--cyan);
}

/* ==========================================================================
   4. Navigation Bar
   ========================================================================== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.site-navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(7, 8, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.brand-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 50%, var(--teal) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 212, 212, 0.35);
  position: relative;
  overflow: hidden;
}

.brand-logo-mark::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #0d0f14;
  z-index: 1;
}

.brand-logo-mark .brand-initial {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--white);
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--cyan);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--grad-cyan-teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
  box-shadow: 0 0 8px var(--cyan);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: 1px solid var(--border-cyan);
  background: rgba(0, 212, 212, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--cyan);
  font-size: 1.25rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 12px var(--cyan-glow);
  outline: none;
}

/* ==========================================================================
   Nav CTA Buttons (Top Actions)
   ========================================================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base Nav Button */
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: pointer;
}

.nav-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}

.nav-btn:hover .nav-btn-icon {
  transform: scale(1.18);
}

/* 1. JOIN THE GYM - Luxury Neon Violet Glass Aesthetic */
.nav-btn-join {
  background: linear-gradient(135deg, rgba(90, 23, 95, 0.4) 0%, rgba(17, 23, 28, 0.85) 100%);
  color: #ffffff;
  border: 1px solid rgba(169, 54, 186, 0.6);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(130, 41, 143, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-btn-join .nav-btn-icon {
  color: #e599ee;
  filter: drop-shadow(0 0 6px rgba(229, 153, 238, 0.7));
}

.nav-btn-join:hover {
  background: linear-gradient(135deg, #82298f 0%, #5a175f 100%);
  color: #ffffff;
  border-color: #d870e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(130, 41, 143, 0.65), 0 0 15px rgba(216, 112, 230, 0.45);
}

.nav-btn-join:hover .nav-btn-icon {
  color: #ffffff;
  transform: rotate(12deg) scale(1.25);
}

/* 2. BOOK NOW - High-Voltage Vibrant Cyan Gradient with Shimmer */
.nav-btn-book {
  background: linear-gradient(135deg, #00ffff 0%, #00d4d4 40%, #00aaa8 100%);
  color: #031015;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 20px rgba(0, 212, 212, 0.5), 0 0 10px rgba(0, 212, 212, 0.3);
  font-weight: 700;
}

.nav-btn-book .nav-btn-icon {
  color: #031015;
}

.nav-btn-book:hover {
  background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #00d4d4 100%);
  color: #010b0e;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 212, 212, 0.8), 0 0 20px rgba(0, 255, 255, 0.6);
  border-color: #ffffff;
}

.nav-btn-book:hover .nav-btn-icon {
  transform: translateY(-1px) scale(1.18);
}

/* Shimmer Sweep Animation across Book Now Button */
.nav-btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  animation: shine-sweep 3.8s infinite ease-in-out;
}

@keyframes shine-sweep {
  0%, 60% {
    left: -120%;
  }
  100% {
    left: 220%;
  }
}


/* ==========================================================================
   5. Buttons & Global Badges
   ========================================================================== */
.btn-detox-primary {
  background: var(--grad-cyan-teal);
  color: #041014;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 212, 212, 0.35);
}

.btn-detox-primary:hover {
  color: #02090b;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 212, 212, 0.6);
}

.btn-detox-primary:active {
  transform: translateY(0);
}

.btn-detox-secondary {
  background: rgba(130, 41, 143, 0.15);
  color: var(--white);
  border: 1px solid var(--purple-light);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-detox-secondary:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--purple-glow);
}

.btn-detox-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-detox-outline:hover {
  background: rgba(0, 212, 212, 0.12);
  color: var(--white);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0, 212, 212, 0.25);
}

.badge-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid var(--border-cyan);
  border-radius: 50px;
  color: var(--cyan);
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.badge-purple {
  background: rgba(130, 41, 143, 0.18);
  border-color: rgba(130, 41, 143, 0.45);
  color: #d870e6;
}

/* ==========================================================================
   6. Section Layouts & Section Headers
   ========================================================================== */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-title .text-gradient {
  background: var(--grad-cyan-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .text-gradient-purple {
  background: linear-gradient(135deg, #d870e6 0%, #82298f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Glow Background Orbs */
.glow-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}
.glow-orb-cyan {
  background: var(--cyan);
}
.glow-orb-purple {
  background: var(--violet);
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: #06070a;
}

.hero-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.38;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(7, 8, 12, 0.4) 0%, rgba(7, 8, 12, 0.88) 75%, #07080c 100%),
              linear-gradient(180deg, rgba(7, 8, 12, 0.6) 0%, transparent 40%, rgba(7, 8, 12, 0.95) 100%);
  z-index: 2;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
  background: rgba(0, 212, 212, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-cyan);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero-dynamic-wrapper {
  display: inline-block;
  min-width: 280px;
  color: var(--cyan);
  text-shadow: 0 0 35px var(--cyan-glow);
  position: relative;
}

.hero-dynamic-word {
  display: inline-block;
  animation: textGlitch 0.4s ease-out;
}

@keyframes textGlitch {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 3.5rem;
}

/* Hero Quick Stats Strip */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  background: rgba(17, 23, 28, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.hero-stat-number.highlight-cyan {
  color: var(--cyan);
}
.hero-stat-number.highlight-purple {
  color: #d870e6;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--cyan);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--cyan);
  border-radius: 2px;
  animation: mouseWheel 1.6s infinite;
}

@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   8. Quick Services Grid
   ========================================================================== */
.services-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-cyan-teal);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  background: var(--surface-card-hover);
  border-color: var(--border-cyan);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 212, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.service-card.card-purple .service-icon-box {
  background: rgba(130, 41, 143, 0.15);
  border-color: var(--border-purple);
  color: #d870e6;
}

.service-card:hover .service-icon-box {
  background: var(--cyan);
  color: #050608;
  box-shadow: 0 0 20px var(--cyan);
}

.service-card.card-purple:hover .service-icon-box {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 0 20px var(--violet);
}

.service-title {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  gap: 10px;
  color: var(--white);
}

/* ==========================================================================
   9. About Section (Split Layout & Photo Frame)
   ========================================================================== */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.about-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 212, 212, 0.15);
  border: 1px solid var(--teal);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.about-image-stack {
  position: relative;
}

.about-main-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(17, 23, 28, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-cyan);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 212, 212, 0.2);
  max-width: 240px;
}

.floating-badge-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 4px;
}

.floating-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   10. Gym Experience Section
   ========================================================================== */
.gym-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.gym-visual-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 212, 0.15);
}

.gym-visual-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.gym-visual-box:hover img {
  transform: scale(1.03);
}

.gym-stat-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
}

.gym-stat-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 212, 212, 0.2);
}

.gym-stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.gym-stat-label {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.gym-stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.gym-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.gym-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.05rem;
  color: var(--text-main);
}

.gym-features-list li i {
  color: var(--cyan);
  font-size: 1.2rem;
}

/* ==========================================================================
   11. Personal Coaching & Purpose
   ========================================================================== */
.coaching-section {
  position: relative;
  background-color: var(--bg-main);
}

.coaching-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.coaching-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(130, 41, 143, 0.25);
}

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

.coaching-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.coaching-card:hover .coaching-img-box img {
  transform: scale(1.06);
}

.coaching-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  font-family: var(--font-subheading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.coaching-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.coaching-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.coaching-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   12. Massage & Spa Section (Ambient Luxury Purple)
   ========================================================================== */
.spa-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(90, 23, 95, 0.25) 0%, rgba(7, 8, 12, 0.95) 70%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
  border-top: 1px solid rgba(130, 41, 143, 0.2);
  border-bottom: 1px solid rgba(130, 41, 143, 0.2);
  overflow: hidden;
}

.spa-visual-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-purple);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(130, 41, 143, 0.3);
}

.spa-visual-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spa-visual-frame:hover img {
  transform: scale(1.03);
}

.spa-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(130, 41, 143, 0.18);
  border: 1px solid var(--border-purple);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.spa-feature-pill i {
  color: #d870e6;
  font-size: 1.2rem;
}

.spa-feature-pill:hover {
  background: rgba(130, 41, 143, 0.3);
  transform: translateY(-2px);
}

.home-hotel-callout {
  background: linear-gradient(135deg, rgba(90, 23, 95, 0.35) 0%, rgba(17, 23, 28, 0.8) 100%);
  border: 1px solid rgba(130, 41, 143, 0.5);
  border-radius: 14px;
  padding: 1.8rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.home-hotel-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d870e6 0%, var(--purple) 100%);
}

.callout-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.callout-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-purple);
  border-radius: 30px;
  color: #e599ee;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   13. Membership & Pricing Section
   ========================================================================== */
.membership-section {
  position: relative;
  background-color: var(--bg-main);
}

/* Pricing Nav Pills / Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(20, 28, 34, 0.8);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid var(--border-card);
  max-width: 460px;
  margin: 0 auto 3.5rem;
}

.pricing-tab-btn {
  flex: 1;
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-radius: 40px;
  color: var(--text-muted);
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pricing-tab-btn.active {
  background: var(--grad-cyan-teal);
  color: #050608;
  box-shadow: 0 4px 15px rgba(0, 212, 212, 0.4);
}

.pricing-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 212, 212, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(20, 32, 40, 0.95) 0%, rgba(17, 23, 28, 0.98) 100%);
  border: 2px solid var(--cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 212, 212, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cyan-teal);
  color: #041014;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 212, 212, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-tier-name {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 1.25rem 0 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  color: var(--text-main);
  font-size: 0.95rem;
}

.pricing-features-list li i {
  color: var(--cyan);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-distinction-note {
  background: rgba(17, 23, 28, 0.8);
  border: 1px dashed var(--border-card);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  max-width: 860px;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pricing-distinction-note i {
  font-size: 1.8rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.pricing-distinction-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   14. Train Now, Pay Later (0% Installments)
   ========================================================================== */
.installment-section {
  background: linear-gradient(135deg, rgba(7, 8, 12, 0.98) 0%, rgba(12, 17, 21, 0.95) 100%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.installment-banner-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.installment-img-side {
  position: relative;
  min-height: 400px;
  height: 100%;
}

.installment-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.installment-content-side {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.percent-zero-callout {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1rem;
}

.percent-zero-number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  background: var(--grad-cyan-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.percent-zero-label {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.card-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.75rem 0;
}

.card-brand-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.card-brand-pill i {
  font-size: 1.3rem;
  color: var(--cyan);
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* ==========================================================================
   15. Referral Program (Milestone Timeline)
   ========================================================================== */
.referral-section {
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
}

.referral-container-card {
  background: linear-gradient(135deg, rgba(20, 28, 34, 0.9) 0%, rgba(12, 17, 21, 0.95) 100%);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 212, 212, 0.15);
}

.referral-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
}

.referral-tier-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.referral-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-cyan-teal);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.referral-tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 212, 0.2);
}

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

.referral-badge-month {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid var(--border-card);
  margin-bottom: 1.5rem;
}

.referral-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.referral-reward-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1.1;
  margin-bottom: 6px;
}

.referral-reward-sub {
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.referral-perks-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.referral-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.referral-perk-item i {
  color: var(--cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.referral-perk-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.referral-perk-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   16. Fitness Motivation Parallax Banner
   ========================================================================== */
.motivation-banner {
  position: relative;
  padding: 130px 0;
  background-color: #06070a;
  overflow: hidden;
  text-align: center;
}

.motivation-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.motivation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
  transform: scale(1.05);
}

.motivation-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 8, 12, 0.4) 0%, rgba(7, 8, 12, 0.9) 85%);
  z-index: 2;
}

.motivation-content {
  position: relative;
  z-index: 3;
}

.motivation-title {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.motivation-title .limit-text {
  color: var(--cyan);
  text-shadow: 0 0 35px var(--cyan-glow);
}

.motivation-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 2rem;
}

.motivation-pill {
  background: rgba(17, 23, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-card);
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   17. Gallery & Lightbox
   ========================================================================== */
.gallery-section {
  position: relative;
  background-color: var(--bg-secondary);
}

/* Filter Pills */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 30px;
  padding: 8px 22px;
  color: var(--text-muted);
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--cyan);
  color: #050608;
  border-color: var(--cyan);
  box-shadow: 0 4px 15px rgba(0, 212, 212, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 8, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 212, 212, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-category {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 4px;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-card);
}

.lightbox-caption {
  margin-top: 15px;
  text-align: center;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-card);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-btn:hover {
  background: var(--cyan);
  color: #050608;
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.lightbox-close {
  top: -20px;
  right: -20px;
}

.lightbox-prev {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 15px; right: 15px; }
}

/* ==========================================================================
   18. Facility & Location Section
   ========================================================================== */
.facility-section {
  position: relative;
  background-color: var(--bg-main);
}

.location-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.8rem;
}

.location-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-label {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.location-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.map-container {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  height: 440px;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(88%) contrast(90%);
}

/* ==========================================================================
   19. Contact & Booking Form Section
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #050608 100%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.booking-form-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.form-label {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control, .form-select {
  background-color: #0b1014;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  background-color: #0f151b;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 212, 212, 0.25);
  color: var(--white);
  outline: none;
}

.form-control::placeholder {
  color: #55606d;
}

.form-select option {
  background-color: #0f151b;
  color: var(--white);
}

/* ==========================================================================
   20. Floating Actions & Mobile Bottom Sticky Bar
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  border: 1px solid var(--border-card);
  background: rgba(17, 23, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.floating-btn.btn-book {
  background: var(--grad-cyan-teal);
  color: #050608;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 212, 212, 0.4);
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.06);
}

.floating-btn.btn-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform var(--transition-base);
}

.floating-btn.btn-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 8, 12, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px;
  z-index: 1001;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-bottom-grid .btn {
  padding: 10px 8px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  .floating-actions {
    bottom: 80px;
    right: 20px;
  }
}

/* ==========================================================================
   21. Footer
   ========================================================================== */
.site-footer {
  background-color: #030406;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 35px;
  position: relative;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin-top: 1.25rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--cyan);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.15rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--cyan);
  color: #050608;
  border-color: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
  transform: translateY(-3px);
}

.footer-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}

.hashtag-pill {
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  color: var(--text-subtle);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   22. Toast & Modal Confirmation Styling
   ========================================================================== */
.modal-content {
  background-color: var(--surface-card);
  border: 1px solid var(--border-cyan);
  border-radius: 18px;
  color: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 212, 212, 0.2);
}

.modal-header {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 2rem;
}

.btn-close-white {
  filter: invert(1);
}

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 100000;
}

.custom-toast {
  background: var(--surface-card);
  border: 1px solid var(--border-cyan);
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 212, 0.25);
}

/* ==========================================================================
   23. Responsive Refinements
   ========================================================================== */
@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(7, 8, 12, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .navbar-collapse {
    background: #0d1217;
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid var(--border-card);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  }
  .nav-actions {
    margin-top: 1rem;
    flex-direction: column;
    width: 100%;
  }
  .nav-actions .btn,
  .nav-actions .nav-btn {
    width: 100%;
    justify-content: center;
  }
  .about-floating-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
  .referral-timeline {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 70px 0;
  }
  .hero-section {
    padding-top: 110px;
    padding-bottom: 70px;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .booking-form-card {
    padding: 2rem 1.25rem;
  }
  .referral-container-card {
    padding: 2rem 1.25rem;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
