/*
 * Rain Check Indoor Golf - Marketing Website Styles
 * Brand-consistent design system
 */

/* ================================
   CSS CUSTOM PROPERTIES (Variables)
   ================================ */
:root {
  /* ===== DARK SECTIONS ===== */

  /* Backgrounds (dark to light) */
  --dark-bg: #121212;
  --dark-header: #1e1e1e;
  --dark-card: #1e1e1e;
  --dark-card-hover: #2a2a2a;
  --dark-input: #2d2d2d;
  --dark-button: #333333;
  --dark-button-hover: #444444;

  /* Borders */
  --dark-border: #3d3d3d;
  --dark-border-light: #333333;
  --dark-border-dim: #444444;

  /* Text on dark */
  --text-white: #FFFFFF;
  --text-gray-400: #9CA3AF;
  --text-gray-500: #6B7280;

  /* ===== LIGHT SECTIONS ===== */

  /* Backgrounds */
  --light-bg: #FFFFFF;
  --light-bg-alt: #F5F5F5;
  --light-card: #FFFFFF;

  /* Borders */
  --light-border: #E5E5E5;

  /* Text on light */
  --text-dark: #1a1a1a;
  --text-dark-muted: #6B7280;

  /* ===== BRAND ACCENT (Neon Green) ===== */
  --neon: #39FF14;
  --neon-hover: #32D911;
  --neon-dim: rgba(57, 255, 20, 0.1);

  /* ===== SECONDARY ACCENT ===== */
  --gold: #D4A84B;

  /* ===== TYPOGRAPHY ===== */
  --font-primary: 'Outfit', 'DM Sans', 'Inter', sans-serif;

  /* ===== SPACING ===== */
  --container-width: 1200px;
  --container-width: 1200px;
  --section-padding: 8rem;
  /* Increased from 6rem */
  --section-padding-mobile: 5rem;
  /* Increased from 4rem */

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-neon: 0 8px 30px rgba(57, 255, 20, 0.3);
}

/* ================================
   BASE RESET & TYPOGRAPHY
   ================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-white);
  background-color: var(--dark-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul,
ol {
  list-style: none;
}

/* ================================
   LAYOUT UTILITIES
   ================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-white);
}

.section-dark-header {
  background-color: var(--dark-header);
  color: var(--text-white);
}

.section-light {
  background-color: var(--light-bg);
  color: var(--text-dark);
}

.section-light-alt {
  background-color: var(--light-bg-alt);
  color: var(--text-dark);
}

.section-navy {
  background-color: #0f172a;
  /* Slate 900 */
  color: white;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

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

.text-muted {
  color: var(--text-gray-400);
}

.text-muted-dark {
  color: var(--text-dark-muted);
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.tracking-wider {
  letter-spacing: 0.15em;
}

.leading-tight {
  line-height: 1.1;
}

.leading-relaxed {
  line-height: 1.7;
}

/* Spacing */
.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Max Widths */
.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-primary);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-medium);
  text-decoration: none;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Primary Button (Neon Green) */
.btn-primary {
  background: var(--neon);
  color: #000000;
  border-color: var(--neon);
}

.btn-primary:hover {
  background: var(--neon-hover);
  border-color: var(--neon-hover);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

/* Secondary Button on Dark */
.btn-secondary-dark {
  background: var(--dark-button);
  color: var(--text-white);
  border-color: var(--dark-border-dim);
}

.btn-secondary-dark:hover {
  background: var(--dark-button-hover);
  border-color: var(--neon);
}

/* Secondary Button on Light */
.btn-secondary-light {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-secondary-light:hover {
  background: var(--text-dark);
  color: var(--text-white);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--neon);
}

/* Button Block */
.btn-block {
  width: 100%;
}

/* ================================
   CARDS
   ================================ */
.card {
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-medium);
}

/* Cards on Dark Backgrounds */
.card-dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.card-dark:hover {
  background: var(--dark-card-hover);
  border-color: var(--neon);
  transform: translateY(-4px);
}

/* Cards on Light Backgrounds */
.card-light {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
}

.card-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--gold);
}

/* Path Cards (larger featured cards) */
.path-card {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.path-card-image {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.path-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.path-card:hover .path-card-image img {
  transform: scale(1.1);
}

.path-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.8;
}

.path-card-overlay-play {
  background: linear-gradient(135deg, #14532d, #22c55e);
}

.path-card-overlay-improve {
  background: linear-gradient(135deg, #78350f, #ca8a04);
}

.path-card-icon {
  position: relative;
  z-index: 10;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.path-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.path-card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-play {
  background: #dcfce7;
  color: #166534;
}

.badge-improve {
  background: #fef3c7;
  color: #92400e;
}

.path-card-features {
  flex: 1;
}

.path-card-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.path-card-features li::before {
  content: '→';
  margin-right: 0.75rem;
  font-weight: bold;
}

.path-card-features.play li::before {
  color: var(--neon);
}

.path-card-features.improve li::before {
  color: var(--gold);
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002; /* Above mobile menu so toggle stays clickable */
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border-light);
  transition: all var(--transition-medium);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 1002; /* Above mobile menu */
}

.logo {
  display: block;
  cursor: pointer;
}

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

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.logo-sub {
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  align-items: center;
  background: rgba(42, 42, 42, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-400);
  transition: all var(--transition-medium);
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  background: var(--neon);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  min-width: 250px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu {
  background: var(--dark-header);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--dark-card);
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-gray-400);
  margin-bottom: 0.125rem;
  transition: color var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--text-white);
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-gray-500);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  position: relative;
  z-index: 1002; /* Above mobile menu */
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile browsers */
  background: var(--dark-bg);
  z-index: 1001; /* Above navbar */
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.mobile-nav-link.active {
  color: var(--neon);
}

.mobile-subnav {
  display: none;
  padding-left: 1rem;
  margin-top: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-subnav.active {
  display: block;
}

.mobile-subnav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-gray-400);
  font-size: 1rem;
}

.mobile-subnav a:hover,
.mobile-subnav a.active {
  color: var(--neon);
}

.mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1024px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: var(--neon-dim);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--neon) 1px, transparent 1px),
    linear-gradient(90deg, var(--neon) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray-400);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--neon), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-gray-400);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-ctas {
    justify-content: center;
  }
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

@media (max-width: 768px) {
  .hero-visual {
    /* Show on mobile - positioned after hero content */
    display: block;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-simulator {
    aspect-ratio: 16/10;
    border-radius: 12px;
  }

  .hero-data-bar {
    padding: 1rem;
    justify-content: center;
    gap: 3rem;
  }

  .hero-data-value {
    font-size: 1.25rem;
  }

  .hero-data-label {
    font-size: 0.5625rem;
  }
}

.hero-simulator {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4/3;
  background: var(--dark-card);
}

.hero-simulator img,
.hero-simulator video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Hero Slideshow */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-simulator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-bg), transparent 50%);
  z-index: 2;
}

.hero-data-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.hero-data-item {
  text-align: center;
}

.hero-data-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray-400);
  margin-bottom: 0.25rem;
}

.hero-data-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'SF Mono', 'Monaco', monospace;
}

.hero-data-unit {
  font-size: 0.75rem;
  color: var(--neon);
  margin-left: 0.25rem;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  z-index: 10;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-float-card:nth-child(2) {
  top: 10%;
  right: -2rem;
  animation-delay: 0s;
}

.hero-float-card:nth-child(3) {
  bottom: 20%;
  left: -3rem;
  animation-delay: 2s;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-icon.green {
  background: var(--neon-dim);
  color: var(--neon);
}

.hero-float-icon.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.hero-float-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero-float-sub {
  font-size: 0.75rem;
  color: var(--text-gray-400);
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.section-label-muted {
  color: var(--text-gray-500);
}

.section-label-gold {
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.section-light .section-title,
.section-light-alt .section-title {
  color: var(--text-dark);
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
}

.section-dark .section-description {
  color: var(--text-gray-400);
}

.section-light .section-description,
.section-light-alt .section-description {
  color: var(--text-dark-muted);
}

/* ================================
   INFO CARDS (What Is Simulator Golf)
   ================================ */
.info-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--light-bg-alt);
  border: 1px solid var(--light-border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--neon-hover);
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ================================
   MEMBERSHIP SECTION
   ================================ */
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.membership-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .membership-perks {
    grid-template-columns: 1fr;
  }
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
}

.perk-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  box-shadow: 0 0 15px var(--neon-dim);
}

.perk-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
}

/* Pricing Card */
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--neon), var(--gold));
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  margin-bottom: 0.25rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-gray-500);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-gray-500);
  margin-bottom: 2rem;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: border-color var(--transition-fast);
}

.tier-row:hover {
  border-color: rgba(57, 255, 20, 0.5);
}

.tier-name {
  font-weight: 500;
  color: var(--text-white);
}

.tier-price {
  font-weight: 700;
  color: var(--neon);
}

/* ================================
   NEW FACILITY SECTION
   ================================ */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.facility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 2rem;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-muted);
}

.facility-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.facility-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.facility-feature::before {
  content: '✓';
  color: var(--neon);
}

.facility-image {
  position: relative;
  background: var(--light-bg-alt);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.facility-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.facility-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
}

.facility-placeholder {
  text-align: center;
  padding: 2rem;
}

.facility-placeholder-icon {
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.facility-placeholder-text {
  font-weight: 700;
  color: var(--text-dark-muted);
}

/* ================================
   FEATURE CARDS (Experience Section)
   ================================ */
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 2rem;
  border-radius: 20px;
  transition: all var(--transition-medium);
}

.feature-card:hover {
  border-color: rgba(57, 255, 20, 0.3);
  transform: translateY(-8px);
}

.feature-icon {
  color: var(--neon);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--text-gray-400);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
  padding: 8rem 0;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--text-dark-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--dark-bg);
  border-top: 2px solid var(--neon);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-gray-500);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-heading {
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--neon);
}

.footer-address {
  font-size: 0.875rem;
  color: var(--text-gray-400);
  line-height: 1.7;
}

.footer-phone {
  font-weight: 500;
  color: var(--text-white);
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-gray-400);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-400);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--neon);
  color: var(--dark-bg);
}

/* ================================
   SUB-PAGE HERO
   ================================ */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
}

.page-hero.dark {
  background: var(--dark-bg);
}

.page-hero.light {
  background: var(--light-bg);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero.dark .page-hero-title {
  color: var(--text-white);
}

.page-hero.light .page-hero-title {
  color: var(--text-dark);
}

.page-hero-desc {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero.dark .page-hero-desc {
  color: var(--text-gray-400);
}

.page-hero.light .page-hero-desc {
  color: var(--text-dark-muted);
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s ease forwards;
}

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

.fade-in-delay-1 {
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  animation-delay: 0.2s;
}

.fade-in-delay-3 {
  animation-delay: 0.3s;
}

.fade-in-delay-4 {
  animation-delay: 0.4s;
}

.fade-in-delay-5 {
  animation-delay: 0.5s;
}

/* ================================
   RESPONSIVE UTILITIES
   ================================ */
.hidden-mobile {
  display: block;
}

.visible-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }

  .visible-mobile {
    display: block;
  }
}

/* ================================
   SCROLLBAR STYLING
   ================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-header);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon);
}

/* ================================
   MEMBERSHIP REDESIGN STYLES
   ================================ */

/* --- Toggles --- */
.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.toggle-label {
  font-weight: 600;
  color: var(--text-gray-400);
}

.toggle-label.active {
  color: var(--text-white);
}

/* Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-border);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--neon);
}

input:checked+.slider:before {
  transform: translateX(22px);
}

/* Type Toggles (Pills) */
.type-toggles {
  display: flex;
  justify-content: center;
  background: var(--dark-border);
  padding: 0.25rem;
  border-radius: 50px;
  display: inline-flex;
  margin-bottom: 3rem;
}

.type-toggle-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-gray-400);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.type-toggle-btn.active {
  background: var(--dark-card);
  color: var(--text-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- Calculator Widget --- */
.calc-widget {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto 4rem;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-gray-400);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--neon);
}

select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  color: white;
  font-family: inherit;
}

.calc-result {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.calc-result.active {
  border-color: var(--neon);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.calc-save-amount {
  color: var(--neon);
  font-weight: 800;
  font-size: 1.25rem;
}

/* --- Updated Pricing Cards --- */
.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 1.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray-400);
  font-size: 0.875rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--neon);
  font-weight: bold;
}

/* ================================
   BOOKING MODAL (Injected by JS)
   ================================ */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.booking-modal-content {
  background: var(--dark-bg);
  width: 90%;
  max-width: 1000px;
  /* Wide for booking portal */
  height: 85vh;
  border-radius: 20px;
  position: relative;
  border: 1px solid var(--dark-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal.active .booking-modal-content {
  transform: translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.booking-modal-close:hover {
  background: var(--neon);
  color: black;
}

.booking-modal-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================
   ENHANCED HEROES
   ================================ */
.page-hero {
  position: relative;
  overflow: hidden;
}

/* Add grid pattern to dark page heroes */
.page-hero.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Add a subtle glow to dark page heroes */
.page-hero.dark::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-title,
.page-hero-desc,
.section-label {
  position: relative;
  z-index: 1;
}

/* ================================
   MOBILE FIXES - Phase 1-4
   ================================ */

/* Darker green for light backgrounds (readability fix) */
:root {
  --neon-dark: #16a34a;
}

/* Fix horizontal scroll on all pages */
html,
body {
  overflow-x: hidden;
}

/* Green text on light backgrounds - use darker variant */
.section-light .text-neon,
.section-light-alt .text-neon {
  color: var(--neon-dark);
}

.section-light .section-label,
.section-light-alt .section-label {
  color: var(--neon-dark);
}

.section-light .stat-number,
.section-light-alt .stat-number {
  color: var(--neon-dark);
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  .container {
    overflow-x: hidden;
    max-width: 100%;
  }

  main {
    overflow-x: hidden;
  }

  /* Hero section background fixes */
  .hero-glow {
    opacity: 0.6;
    width: 500px;
    height: 500px;
    top: -15%;
    right: -25%;
    filter: blur(120px);
  }

  .hero-grid {
    opacity: 0.025;
  }

  /* Add second glow for lower left on mobile */
  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -25%;
    width: 400px;
    height: 400px;
    background: var(--neon-dim);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    pointer-events: none;
  }

  /* Page hero glow fix */
  .page-hero.dark::after {
    opacity: 0.5;
    width: 400px;
    height: 400px;
    top: -30%;
    right: -30%;
  }

  /* Hide floating cards that may cause overflow */
  .hero-float-card {
    display: none;
  }


  /* Performance: Simplify animations */
  .fade-in {
    animation-duration: 0.5s;
    will-change: opacity, transform;
  }

  /* Remove staggered delays for faster content appearance */
  .fade-in-delay-1,
  .fade-in-delay-2,
  .fade-in-delay-3,
  .fade-in-delay-4,
  .fade-in-delay-5 {
    animation-delay: 0s;
  }

  /* Simplify hover effects for better scroll performance */
  .card-dark:hover,
  .card-light:hover,
  .info-card:hover,
  .feature-card:hover {
    transform: none;
  }

  /* Reduce backdrop blur for performance */
  .navbar {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Membership section mobile layout */
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .membership-perks {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .perk-item {
    justify-content: flex-start;
    text-align: left;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-value {
    font-size: 2.5rem;
  }

  .pricing-amount {
    justify-content: center;
  }

  /* Facility section mobile layout */
  .facility-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .facility-image {
    order: -1;
  }

  .facility-image img {
    min-height: 220px;
    object-fit: cover;
  }

  .facility-stats {
    justify-items: center;
    text-align: center;
  }

  /* Feature cards grid */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.8125rem;
  }

  /* CTA section */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .pricing-value {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* ================================
   ENHANCED MOBILE OPTIMIZATION
   ================================ */

/* === Mobile-First Improvements (768px and below) === */
@media (max-width: 768px) {
  /* Root spacing adjustments for mobile */
  :root {
    --section-padding-mobile: 3.5rem;
  }

  /* Container padding */
  .container {
    padding: 0 1rem;
  }

  /* === HERO SECTION MOBILE === */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero-badge {
    padding: 0.375rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-badge-text {
    font-size: 0.625rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* Hero visual mobile optimization */
  .hero-visual {
    margin-top: 1.5rem;
  }

  .hero-simulator {
    border-radius: 12px;
  }

  .hero-data-bar {
    padding: 0.75rem 1rem;
    gap: 1.5rem;
  }

  .hero-data-item {
    min-width: 0;
  }

  .hero-data-value {
    font-size: 1.125rem;
  }

  .hero-data-label {
    font-size: 0.5rem;
  }

  .hero-data-unit {
    font-size: 0.625rem;
  }

  /* === SECTION HEADERS MOBILE === */
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-label {
    font-size: 0.6875rem;
    margin-bottom: 0.5rem;
  }

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

  .section-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* === INFO CARDS MOBILE === */
  .info-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .info-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .info-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .info-card-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* === PATH CARDS MOBILE === */
  .path-card {
    border-radius: 16px;
  }

  .path-card-image {
    height: 160px;
  }

  .path-card-icon {
    padding: 0.75rem;
  }

  .path-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .path-card-content {
    padding: 1.5rem;
  }

  .path-card-badge {
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .path-card-content h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  .path-card-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem !important;
  }

  .path-card-features li {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }

  .path-card .btn {
    margin-top: 1.25rem !important;
    padding: 0.875rem 1.5rem;
  }

  /* === MEMBERSHIP SECTION MOBILE === */
  .membership-grid {
    gap: 2rem;
  }

  .membership-grid .section-title {
    font-size: 1.75rem !important;
  }

  .membership-grid .section-description {
    margin-bottom: 1.5rem !important;
  }

  .membership-perks {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .perk-item {
    padding: 0.75rem;
    border-radius: 10px;
  }

  .perk-icon {
    width: 36px;
    height: 36px;
  }

  .perk-icon svg {
    width: 16px;
    height: 16px;
  }

  .perk-text {
    font-size: 0.8125rem;
  }

  .pricing-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .pricing-label {
    font-size: 0.8125rem;
  }

  .pricing-value {
    font-size: 2.25rem;
  }

  .pricing-period {
    font-size: 0.875rem;
  }

  .pricing-note {
    font-size: 0.6875rem;
    margin-bottom: 1.25rem;
  }

  .pricing-benefits {
    margin-bottom: 1.25rem !important;
  }

  .pricing-benefits span {
    font-size: 0.8125rem;
  }

  /* === FACILITY SECTION MOBILE === */
  .facility-grid {
    gap: 2rem;
  }

  .facility-grid .section-title {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .facility-grid .section-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem !important;
  }

  .facility-stats {
    gap: 1rem;
    padding: 1.25rem 0;
    margin-bottom: 1.25rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.6875rem;
  }

  .facility-features {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .facility-feature {
    font-size: 0.875rem;
  }

  .facility-image {
    border-radius: 16px;
  }

  .facility-image img {
    min-height: 200px;
    border-radius: 16px;
  }

  .facility-badge {
    font-size: 0.6875rem;
    padding: 0.375rem 0.625rem;
    top: 1rem;
    right: 1rem;
  }

  /* === FEATURE CARDS MOBILE === */
  .feature-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }

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

  .feature-title {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
  }

  .feature-text {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  /* === CTA SECTION MOBILE === */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .cta-text {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    gap: 0.625rem;
  }

  .cta-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .cta-buttons .btn-lg {
    padding: 1rem 1.75rem;
  }

  /* === FOOTER MOBILE === */
  .footer {
    padding: 1.5rem 0;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand-desc {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }

  .footer-heading {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .footer-links {
    gap: 0.5rem;
  }

  .footer-link {
    font-size: 0.8125rem;
  }

  .footer-address {
    font-size: 0.8125rem;
  }

  .footer-phone {
    font-size: 0.9375rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  /* === BUTTONS TOUCH-FRIENDLY === */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }

  .btn-sm {
    min-height: 40px;
    padding: 0.5rem 1rem;
  }

  .btn-block {
    padding: 0.875rem 1.5rem;
  }

  /* === MOBILE MENU IMPROVEMENTS === */
  .mobile-menu {
    padding: 5rem 1rem 1.5rem;
  }

  .mobile-nav-item {
    padding: 0.875rem 0;
  }

  .mobile-nav-link {
    font-size: 1.125rem;
  }

  .mobile-subnav a {
    padding: 0.625rem 0;
    font-size: 0.9375rem;
  }

  .mobile-actions {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .mobile-actions .btn {
    padding: 0.875rem 1.5rem;
  }
}

/* === Extra Small Screens (480px and below) === */
@media (max-width: 480px) {
  .container {
    padding: 0 0.875rem;
  }

  /* Hero adjustments */
  .hero {
    padding-top: 90px;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 1.625rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .hero-ctas .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-data-bar {
    padding: 0.625rem 0.75rem;
    gap: 1rem;
  }

  .hero-data-value {
    font-size: 1rem;
  }

  /* Section adjustments */
  .section {
    padding: 3rem 0;
  }

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

  .section-title {
    font-size: 1.375rem;
  }

  .section-description {
    font-size: 0.875rem;
  }

  /* Cards adjustments */
  .info-card {
    padding: 1.25rem;
  }

  .info-card-title {
    font-size: 1rem;
  }

  .path-card-content {
    padding: 1.25rem;
  }

  .path-card-content h3 {
    font-size: 1.125rem !important;
  }

  /* Grid gaps */
  .grid {
    gap: 1rem;
  }

  .grid-2,
  .grid-3 {
    gap: 1.25rem;
  }

  /* Membership */
  .pricing-card {
    padding: 1rem;
  }

  .pricing-value {
    font-size: 2rem;
  }

  /* Facility */
  .facility-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.625rem;
  }

  /* Feature cards - single column */
  .grid-4 {
    gap: 0.75rem;
  }

  .feature-card {
    padding: 1rem;
  }

  /* CTA */
  .cta-section {
    padding: 2.5rem 0;
  }

  .cta-title {
    font-size: 1.375rem;
  }

  /* Footer */
  .footer-grid {
    gap: 1.5rem;
  }

  .logo img {
    height: 40px;
  }
}

/* === Very Small Screens (375px and below) === */
@media (max-width: 375px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-badge-text {
    font-size: 0.5625rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .pricing-value {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.25rem;
  }

  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}