/* ===================================
   RANGE Gyms - Vertical Scroll Layout
   =================================== */

@import url("./fonts.css");

/* CSS Variables */
:root {
  --color-bg: #000000;
  --color-primary: #1E60FE;
  --color-primary-dark: #0a2b6d;
  --color-text: #ffffff;
  --color-text-muted: #aaaaaa;
  --color-accent: #1E60FE;

  --font-main:
    "OrganettoRegular", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-light:
    "OrganettoLight", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-bold: "OrganettoBold", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: "Conquera", -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 70px;
  --section-padding: 80px;
  --container-width: 1200px;

  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-small: 12px;
  --radius-input: 12px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-variant: small-caps;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Starry Sky Background */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 200px 50px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 250px 180px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 280px 100px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 320px 30px, rgba(255, 255, 255, 0.6), transparent);
  background-size: 350px 350px;
  animation: twinkle 6s ease-in-out infinite;
}

.stars-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 100px 200px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(2px 2px at 200px 150px, rgba(30, 96, 254, 0.6), transparent),
    radial-gradient(1px 1px at 300px 250px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 150px 50px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 80px 300px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 350px 100px, rgba(30, 96, 254, 0.5), transparent),
    radial-gradient(1px 1px at 400px 220px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 450px 50px, rgba(255, 255, 255, 0.7), transparent);
  background-size: 500px 500px;
  animation: twinkle 8s ease-in-out infinite 2s;
}

.stars-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1.5px 1.5px at 70px 120px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 180px 80px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 250px 300px, rgba(30, 96, 254, 0.4), transparent),
    radial-gradient(1px 1px at 330px 180px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 420px 140px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 500px 250px, rgba(255, 255, 255, 0.6), transparent);
  background-size: 600px 600px;
  animation: twinkle 10s ease-in-out infinite 4s;
}

/* Animated Liquid Gradient Blobs */
.gradient-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  filter: blur(80px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 96, 254, 0.4) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation: floatBlob1 25s ease-in-out infinite;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 96, 254, 0.35) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation: floatBlob2 30s ease-in-out infinite;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 150, 255, 0.25) 0%, transparent 70%);
  bottom: 30%;
  left: 30%;
  animation: floatBlob3 20s ease-in-out infinite;
}

.blob-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 220, 255, 0.2) 0%, transparent 70%);
  top: 10%;
  right: 30%;
  animation: floatBlob4 22s ease-in-out infinite;
}

@keyframes floatBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, 50px) scale(1.1); }
  50% { transform: translate(50px, 100px) scale(0.95); }
  75% { transform: translate(-50px, 50px) scale(1.05); }
}

@keyframes floatBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-80px, -60px) scale(1.05); }
  50% { transform: translate(-120px, 40px) scale(1.1); }
  75% { transform: translate(-40px, -80px) scale(0.95); }
}

@keyframes floatBlob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(120px, 60px) scale(1); }
  75% { transform: translate(40px, 100px) scale(1.05); }
}

@keyframes floatBlob4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 60px) scale(1.08); }
  50% { transform: translate(60px, 80px) scale(0.95); }
  75% { transform: translate(80px, -40px) scale(1.02); }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   STICKY HEADER
   =================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-brand {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
}

.logo-sphere {
  width: 36px;
  height: 36px;
}

/* Metallic shimmer animation for GYMS text */
.logo-text {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #888888 0%,
    #cccccc 25%,
    #ffffff 50%,
    #cccccc 75%,
    #888888 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metallic-shimmer 3s linear infinite;
}

@keyframes metallic-shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-nav .nav-cta {
  position: relative;
  background: transparent;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav .nav-cta span {
  display: block;
  transform: translateY(0.15em);
}

.header-nav .nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(30, 96, 254, 0.4);
  border-radius: var(--radius-pill);
  animation: navBtnOutside 2s ease-in-out infinite;
}

.header-nav .nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid #1E60FE;
  box-shadow: 0 0 15px rgba(30, 96, 254, 0.8), inset 0 0 10px rgba(30, 96, 254, 0.3);
  border-radius: var(--radius-pill);
  animation: navBtnInside 2s ease-in-out infinite;
}

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

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

.header-nav .nav-cta:hover {
  opacity: 1;
  background: rgba(30, 96, 254, 0.4);
}

.header-nav .nav-cta:hover::before,
.header-nav .nav-cta:hover::after {
  animation: none;
  opacity: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
}

/* ===================================
   SECTIONS - Base
   =================================== */
.section {
  padding: var(--section-padding) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section:first-of-type {
  padding-top: calc(var(--header-height) + var(--section-padding));
}

.section-header {
  font-family: var(--font-main);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

.section-label {
  font-family: var(--font-main);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ===================================
   HERO SECTION
   =================================== */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  text-align: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

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

/* Circle wrapper - no glow */
.hero-circle-wrapper {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Remove pseudo-elements - no glow */
.hero-circle-wrapper::before,
.hero-circle-wrapper::after {
  display: none;
}

.hero-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../img/range-circle-new.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: calc(100vh - var(--header-height));
  padding: 20px;
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.15em;
}

.hero-subtitle {
  font-family: var(--font-main);
  font-size: clamp(1rem, 3vw, 1.6rem);
  opacity: 0.95;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--color-text-muted);
  max-width: 450px;
  margin: 10px auto;
  line-height: 1.4;
  font-weight: normal;
}

.hero-image {
  max-width: 650px;
  width: 85vw;
  max-height: 55vh;
  margin: 30px 0;
  filter: drop-shadow(0 20px 60px rgba(30, 96, 254, 0.4));
  object-fit: contain;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  border: none;
  padding: 14px 36px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-top: 10px;
  border-radius: var(--radius-pill);
}

.btn-primary span {
  display: block;
  transform: translateY(0.15em);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  animation: btnOutside 2s ease-in-out infinite;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  animation: btnInside 2s ease-in-out infinite;
}

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

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

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.btn-primary:hover::before,
.btn-primary:hover::after {
  animation: none;
  opacity: 0;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.section-about {
  background: transparent;
  min-height: auto;
  padding: 120px 0;
}

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

.about-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===================================
   DIRECTIONS SECTION
   =================================== */
.section-directions {
  background: transparent;
  min-height: auto;
  padding: 100px 0;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.direction-card {
  text-align: center;
}

.direction-title {
  font-family: var(--font-main);
  font-size: 1.5rem;
  text-transform: lowercase;
  margin: 20px 0 12px;
}

.direction-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===================================
   VIDEO WRAPPER (Shared)
   =================================== */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
  transform: translate3d(0, 0, 0);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  transition: background var(--transition-fast);
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.play-btn span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent white;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.section-features {
  background: transparent;
  min-height: auto;
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  padding: 20px;
  transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 71, 255, 0.3);
  transform: translateY(-4px);
}

.feature-card .video-wrapper {
  aspect-ratio: 4/3;
  margin-bottom: 16px;
}

.feature-card-image .feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.feature-number {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  text-transform: lowercase;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* ===================================
   PRICING SECTION
   =================================== */
.section-pricing {
  background: transparent;
  min-height: auto;
  padding: 100px 0;
}

/* Price Type Tabs */
.price-type-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.price-type-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.price-type-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.price-type-tab.active {
  background: rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.4);
}

.price-type-tab .tab-label {
  font-family: var(--font-main);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
}

.price-type-tab .tab-clubs {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.price-type-tab.active .tab-clubs {
  color: rgba(100, 180, 255, 0.8);
}

/* Price content animation */
.price-content {
  animation: fadeIn 0.3s ease;
}

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

/* Discount badges in price list */
.price-list small {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  background: rgba(0, 200, 100, 0.15);
  border-radius: 4px;
  font-size: 0.65rem;
  color: rgba(100, 255, 150, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.price-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 30px;
}

.price-card-title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* New Price Table Layout */
.price-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 0 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.price-table-header:has(.price-col-header.single) {
  grid-template-columns: 1fr 1fr;
}

.price-col-header {
  font-family: var(--font-main);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

.price-col-header:first-child {
  text-align: left;
}

.price-col-header i {
  font-size: 1rem;
  margin-right: 4px;
  color: white;
}

.price-col-header small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.6;
}

.price-table-body {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: start;
}

.price-row.two-cols {
  grid-template-columns: 1fr 1fr;
}

.price-sessions {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-discount {
  font-family: var(--font-main);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #4ade80;
  font-weight: 400;
}

.price-cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-value {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 300;
  color: white;
}

.price-per {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* Keep old styles for backwards compatibility */
.price-columns {
  display: flex;
  gap: 30px;
}

.price-column {
  flex: 1;
  text-align: center;
}

.price-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.price-list {
  list-style: none;
  margin-bottom: 16px;
}

.price-list li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.price-note {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  opacity: 0.7;
}

.discount-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 71, 255, 0.1);
  border: 1px solid rgba(0, 71, 255, 0.2);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.discount-content {
  flex: 1;
  text-align: left;
  min-width: 200px;
}

.discount-title {
  font-family: var(--font-main);
  font-size: 1.8rem;
  text-transform: lowercase;
  margin-bottom: 16px;
}

.discount-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Premium Animated Atom Icon */
.atom-icon {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  perspective: 800px;
}

.nucleus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #60a5fa, #1E60FE 50%, #0a3a9e);
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(30, 96, 254, 0.9),
    0 0 40px rgba(30, 96, 254, 0.5),
    0 0 60px rgba(30, 96, 254, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3);
  animation: nucleus-pulse 2s ease-in-out infinite;
}

@keyframes nucleus-pulse {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(30, 96, 254, 0.9),
      0 0 40px rgba(30, 96, 254, 0.5),
      0 0 60px rgba(30, 96, 254, 0.3);
  }
  50% { 
    box-shadow: 
      0 0 30px rgba(30, 96, 254, 1),
      0 0 60px rgba(30, 96, 254, 0.7),
      0 0 90px rgba(30, 96, 254, 0.4);
  }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 1.5px solid transparent;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: linear-gradient(90deg, 
    rgba(30, 96, 254, 0) 0%,
    rgba(30, 96, 254, 0.6) 50%,
    rgba(30, 96, 254, 0) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1.5px;
}

.orbit-1 {
  transform: translate(-50%, -50%) rotateX(70deg) rotateY(0deg);
  animation: orbit-rotate-1 4s linear infinite;
}

.orbit-2 {
  transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg);
  animation: orbit-rotate-2 5s linear infinite;
}

.orbit-3 {
  transform: translate(-50%, -50%) rotateX(70deg) rotateY(120deg);
  animation: orbit-rotate-3 6s linear infinite;
}

@keyframes orbit-rotate-1 {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateY(0deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(70deg) rotateY(0deg) rotateZ(360deg); }
}

@keyframes orbit-rotate-2 {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg) rotateZ(360deg); }
}

@keyframes orbit-rotate-3 {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotateY(120deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(70deg) rotateY(120deg) rotateZ(360deg); }
}

.electron {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #93c5fd 50%, #1E60FE 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(30, 96, 254, 1);
  /* Keep electron spherical - counter the orbit's 3D rotation */
  animation: electron-counter-rotate 4s linear infinite;
}

.orbit-2 .electron {
  animation-duration: 5s;
}

.orbit-3 .electron {
  animation-duration: 6s;
}

@keyframes electron-counter-rotate {
  from { transform: translateX(-50%) rotateZ(0deg) rotateX(-70deg); }
  to { transform: translateX(-50%) rotateZ(-360deg) rotateX(-70deg); }
}

/* ===================================
   GALLERY SECTION
   =================================== */
.section-gallery {
  background: transparent;
  min-height: auto;
  padding: 80px 0;
}

/* Club Tabs */
.club-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.club-tab {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.club-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.club-tab.active {
  background: rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.4);
  color: #fff;
}

/* Club Gallery Grid (Variant B: Floorplan left + Photos right) */
.club-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* 3D Floorplan */
.club-floorplan {
  position: sticky;
  top: 100px;
}

.club-floorplan img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-card);
  transition: opacity 0.3s ease;
}

/* Photo Grid (Right side) */
.club-photos {
  display: flex;
  flex-direction: column;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  animation: fadeIn 0.3s ease;
}

.photo-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .club-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .club-floorplan {
    position: static;
  }
  
  .club-floorplan img {
    max-width: 100%;
  }
  
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .club-tabs {
    gap: 6px;
  }
  
  .club-tab {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.section-testimonials {
  background: transparent;
  min-height: auto;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
}

.testimonial-name {
  font-family: var(--font-main);
  font-size: 1.4rem;
  text-transform: lowercase;
  margin: 20px 0 8px;
}

.testimonial-role {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===================================
   CONTACTS SECTION
   =================================== */
.section-contacts {
  background: transparent;
  min-height: auto;
  padding: 100px 0;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-name {
  font-family: var(--font-main);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.contact-address:hover {
  color: var(--color-accent);
}

.contact-address i {
  font-size: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: var(--color-accent);
}

.contact-links i {
  font-size: 1rem;
}

.contact-links img {
  width: 14px;
  height: 14px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark theme for Google Maps iframe */
.map-container iframe {
  filter: invert(90%) hue-rotate(180deg) saturate(0.3) brightness(0.9);
}

#yandex-map {
  width: 100%;
  height: 100%;
}

/* Custom marker style */
.range-marker {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Dark theme for Yandex Maps balloons - make outer container transparent */
.ymaps-2-1-79-balloon {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ==== YANDEX MAPS BALLOON - MAKE ALL CONTAINERS TRANSPARENT ==== */
/* Only .range-balloon should have visible styling */

.ymaps-2-1-79-balloon,
.ymaps-2-1-79-balloon__layout,
.ymaps-2-1-79-balloon_layout_panel,
.ymaps-2-1-79-balloon__content,
.ymaps-2-1-79-balloon__content > ymaps,
.ymaps-2-1-79-balloon__content ymaps {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/* Hide the default Yandex close button - we use our custom one */
.ymaps-2-1-79-balloon__close-button,
.ymaps-2-1-79-balloon__close-button::before,
.ymaps-2-1-79-balloon__close-button::after,
.ymaps-2-1-79-balloon__close + .ymaps-2-1-79-balloon__close-button {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide balloon tail for cleaner look */
.ymaps-2-1-79-balloon__tail {
  display: none !important;
}

/* Make sure all balloon backgrounds are dark */
.ymaps-2-1-79-b-cluster-content {
  background: #1a1a2e !important;
  color: #fff !important;
}

/* ===================================
   CUSTOM RANGE BALLOON STYLES
   =================================== */
.range-balloon {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  padding-right: 40px;
  background: #1a1a2e;
  border-radius: 16px;
  min-width: 260px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.range-balloon-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}

.range-balloon-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.range-balloon-photo {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.range-balloon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-balloon-info {
  flex: 1;
  min-width: 0;
}

.range-balloon-title {
  margin: 0 0 4px 0;
  color: #1E60FE;
  font-size: 15px;
  font-weight: 600;
}

.range-balloon-address {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

.range-balloon-link {
  display: inline-block;
  color: #1E60FE;
  text-decoration: none;
  font-size: 12px;
  transition: opacity 0.2s;
}

.range-balloon-link:hover {
  opacity: 0.8;
}

.contact-email {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===================================
   FORM SECTION
   =================================== */
.section-form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Form Circle wrapper - no glow */
.form-circle-wrapper {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Remove pseudo-elements - no glow */
.form-circle-wrapper::before,
.form-circle-wrapper::after {
  display: none;
}

.form-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../img/range-circle-new.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.form-wrapper {
  position: relative;
  z-index: 1;
}

.booking-form {
  max-width: 400px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-main);
  font-size: 2.2rem;
  text-transform: lowercase;
  margin-bottom: 16px;
}

.form-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.booking-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  color: white;
  font-family: var(--font-main);
  font-size: 0.95rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.booking-form input:focus {
  border-color: var(--color-primary);
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.booking-form .btn-primary {
  width: 100%;
  margin-top: 10px;
}

#success-message {
  font-size: 1.2rem;
  color: var(--color-primary);
  line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: #000;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.social-icons img:hover {
  opacity: 1;
}

/* ===================================
   VIDEO OVERLAY
   =================================== */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#overlay video {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

#overlay .close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#overlay .close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  top: 50%;
  left: 0;
}

#overlay .close span:first-child {
  transform: rotate(45deg);
}

#overlay .close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}

#overlay .loader {
  display: flex;
  gap: 8px;
}

#overlay .loader span {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: loaderPulse 1s ease-in-out infinite;
}

#overlay .loader span:nth-child(2) {
  animation-delay: 0.2s;
}
#overlay .loader span:nth-child(3) {
  animation-delay: 0.4s;
}

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

/* ===================================
   RESPONSIVE
   =================================== */
@media screen and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .contacts-list {
    grid-template-columns: 1fr 1fr;
  }

  .map-container {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --header-height: 60px;
  }

  html {
    font-size: 14px;
  }

  .sticky-header {
    padding: 0 20px;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }

  .header-nav.active {
    display: flex;
  }

  .header-nav a {
    font-size: 1.2rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .directions-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contacts-list {
    grid-template-columns: 1fr;
  }

  .price-columns {
    flex-direction: column;
    gap: 30px;
  }

  .gallery-scroll img {
    width: 250px;
    height: 170px;
  }

  .hero-circle,
  .form-circle {
    width: 550px;
    height: 550px;
  }

  /* Mobile typography improvements */
  .section-header {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

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

  .feature-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .direction-title {
    font-size: 1.3rem;
  }

  .direction-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-image {
    max-width: 400px;
    width: 85vw;
    max-height: 50vh;
  }

  .hero-tagline {
    font-size: 1rem;
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .hero-circle,
  .form-circle {
    width: 450px;
    height: 450px;
  }

  .gallery-scroll img {
    width: 200px;
    height: 140px;
  }

  .hero-image {
    max-width: 320px;
    width: 90vw;
  }

  /* Price cards mobile - reduce horizontal space */
  .price-card {
    padding: 20px 10px;
  }

  .price-table-header,
  .price-row {
    gap: 6px;
  }

  .price-per {
    word-break: break-word;
  }

  /* Price type tabs - allow wrapping */
  .price-type-tabs {
    gap: 12px;
  }

  .price-type-tab {
    padding: 16px 12px;
    min-width: 0;
  }

  .price-type-tab h3 {
    font-size: 1.1rem;
  }

  .price-type-tab p {
    font-size: 0.7rem;
  }
}

/* ============================================
   GALLERY LIGHTBOX - Fullscreen Photo Viewer
   ============================================ */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-container {
  width: 100%;
  height: 80vh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  align-items: center;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lightbox-container::-webkit-scrollbar {
  display: none;
}

.lightbox-track {
  display: flex;
  gap: 40px;
  padding-left: calc(50vw - 200px);
  padding-right: 50vw;
  min-width: fit-content;
}

.lightbox-track img {
  height: 75vh;
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  scroll-snap-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-track img:active {
  cursor: grabbing;
}

.lightbox-track img.active {
  transform: scale(1.02);
}

/* Club separator between galleries */
.lightbox-separator {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 70vh;
  scroll-snap-align: center;
}

.lightbox-separator span {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.lightbox-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-main);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

/* Photo grid click hint */
.photo-grid img {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 100, 255, 0.3);
}

/* Floorplan click hint */
.club-floorplan img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.club-floorplan img:hover {
  transform: scale(1.02);
}

/* ============================================
   LIGHTBOX - Mobile Responsive
   ============================================ */
@media screen and (max-width: 768px) {
  .lightbox-track {
    gap: 16px;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .lightbox-track img {
    height: auto;
    max-height: 65vh;
    width: 80vw;
    max-width: 80vw;
    border-radius: 12px;
  }

  .lightbox-counter {
    bottom: 24px;
    font-size: 0.9rem;
    padding: 6px 16px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .lightbox-track {
    gap: 12px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .lightbox-track img {
    max-height: 55vh;
    width: 85vw;
    max-width: 85vw;
    border-radius: 10px;
  }

  .lightbox-counter {
    bottom: 16px;
    font-size: 0.85rem;
  }
}
