/* ============================================
   HUSTLR CLUB — Design System & Styles
   Pickleball & Social Club, Cheras KL
   ============================================ */

/* --- Google Fonts loaded via HTML <link> for performance --- */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --hustlr-black: #0A0A0A;
  --hustlr-dark: #111111;
  --hustlr-charcoal: #1A1A1A;
  --hustlr-dark-card: #141414;
  --hustlr-green: #4ADE80;
  --hustlr-green-dark: #22C55E;
  --hustlr-green-dim: #2D8B4E;
  --hustlr-green-glow: rgba(74, 222, 128, 0.15);
  --hustlr-green-glow-strong: rgba(74, 222, 128, 0.3);
  --hustlr-lime: #A3E635;
  --hustlr-white: #F5F5F5;
  --hustlr-white-soft: #E0E0E0;
  --hustlr-gray: #888888;
  --hustlr-gray-light: #AAAAAA;
  --hustlr-gray-dark: #555555;
  --hustlr-glass: rgba(255, 255, 255, 0.04);
  --hustlr-glass-hover: rgba(255, 255, 255, 0.08);
  --hustlr-glass-border: rgba(255, 255, 255, 0.08);
  --hustlr-glass-border-hover: rgba(255, 255, 255, 0.15);
  --hustlr-overlay: rgba(10, 10, 10, 0.7);
  --hustlr-promo-red: #EF4444;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 1280px;
  --container-padding: clamp(20px, 5vw, 40px);

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--hustlr-black);
  color: var(--hustlr-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--hustlr-gray-light);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hustlr-green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--hustlr-green);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 600px;
  margin-bottom: 40px;
}

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

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

.section--dark {
  background-color: var(--hustlr-dark);
}

.section--charcoal {
  background-color: var(--hustlr-charcoal);
}

/* Grid Pattern Background */
.grid-bg {
  position: relative;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hustlr-glass-border);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  z-index: 1001;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--hustlr-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--hustlr-black);
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hustlr-gray-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hustlr-green);
  transition: width var(--transition-medium);
}

.nav__link:hover {
  color: var(--hustlr-white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--hustlr-white);
}

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

.nav__login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hustlr-gray-light);
  transition: color var(--transition-fast);
}

.nav__login:hover {
  color: var(--hustlr-white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hustlr-white);
  transition: all var(--transition-medium);
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.nav__mobile.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--hustlr-white);
  transition: color var(--transition-fast);
}

.nav__mobile a:hover {
  color: var(--hustlr-green);
}

/* ============================================
   6. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--hustlr-green);
  color: var(--hustlr-black);
  box-shadow: 0 0 20px var(--hustlr-green-glow);
}

.btn--primary:hover {
  background: var(--hustlr-green-dark);
  box-shadow: 0 0 40px var(--hustlr-green-glow-strong);
  transform: translateY(-2px);
}

.btn--glass {
  background: var(--hustlr-glass);
  color: var(--hustlr-white);
  border: 1px solid var(--hustlr-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: var(--hustlr-glass-hover);
  border-color: var(--hustlr-glass-border-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--hustlr-green);
  border: 1px solid var(--hustlr-green);
}

.btn--outline:hover {
  background: var(--hustlr-green);
  color: var(--hustlr-black);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   7. GLASSMORPHISM CARD
   ============================================ */
.glass-card {
  background: var(--hustlr-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-medium);
}

.glass-card:hover {
  background: var(--hustlr-glass-hover);
  border-color: var(--hustlr-glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FCA5A5;
  margin-bottom: 24px;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { border-color: rgba(239, 68, 68, 0.3); }
  50% { border-color: rgba(239, 68, 68, 0.6); }
}

.hero__logo-text {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--hustlr-white) 0%, var(--hustlr-gray-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 30px rgba(74, 222, 128, 0.1); filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.1)); }
  50% { text-shadow: 0 0 60px rgba(74, 222, 128, 0.25); filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.2)); }
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hustlr-green);
  margin-bottom: 16px;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--hustlr-gray-light);
  margin-bottom: 40px;
  font-weight: 300;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--hustlr-gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--hustlr-gray), transparent);
}

/* ============================================
   9. STATS BAR
   ============================================ */
.stats {
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hustlr-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stats__item {
  background: var(--hustlr-dark);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--hustlr-green);
  line-height: 1;
  margin-bottom: 4px;
}

.stats__text {
  font-size: 0.85rem;
  color: var(--hustlr-gray);
  font-weight: 500;
}

/* ============================================
   10. VENUE GALLERY (THE SPACE)
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery__overlay p {
  font-size: 0.85rem;
  color: var(--hustlr-gray-light);
}

/* ============================================
   11. OUTDOOR CHILL ZONE
   ============================================ */
.chill-zone {
  position: relative;
  overflow: hidden;
}

.chill-zone__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.chill-zone__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.chill-zone__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--hustlr-black) 30%, transparent 70%);
}

.chill-zone__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chill-zone__text {
  max-width: 500px;
}

.chill-zone__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.chill-zone__feature {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--hustlr-glass);
  border: 1px solid var(--hustlr-glass-border);
}

.chill-zone__feature-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.chill-zone__feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.chill-zone__feature p {
  font-size: 0.8rem;
  color: var(--hustlr-gray);
}

.chill-zone__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.chill-zone__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   12. COURT LAYOUT
   ============================================ */
.court-layout__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.court-map {
  position: relative;
  background: var(--hustlr-dark);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
}

/* --- Carpark (full width) --- */
.court-map__carpark {
  padding: 8px 0 16px;
}

.court-map__carpark-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hustlr-gray-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  width: 100%;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    var(--hustlr-charcoal),
    var(--hustlr-charcoal) 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 16px
  );
  border-radius: var(--radius-sm);
  border: 1px dashed var(--hustlr-glass-border);
}

/* --- Outdoor Courts --- */
.court-map__courts-outdoor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* --- Outdoor Chill Zone Divider --- */
.court-map__outdoor-label {
  text-align: center;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hustlr-lime);
  border-top: 2px dashed rgba(163, 230, 53, 0.2);
  border-bottom: 2px dashed rgba(163, 230, 53, 0.2);
  margin: 16px 0;
  background: linear-gradient(90deg, transparent, rgba(163, 230, 53, 0.03), transparent);
}

/* --- Indoor Floor Plan (CSS Grid) ---
   Layout:
   Col: [amenities 120px] [VIP 140px] [court-L 1fr] [court-R 1fr] [neon 48px]
   Rows: toilet | courts5/6 | courts3/4 | chill+neon | courts1/2
*/
.floorplan {
  display: grid;
  grid-template-columns: 120px 140px 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  gap: 8px;
  grid-template-areas:
    "toilet   vip   court5 court6"
    "evspace  vip   court3 court4"
    "office   vip   chill  chill"
    "cafe     vip   court1 court2";
}

/* --- Shared Room Tile Styling --- */
.floorplan__room {
  background: var(--hustlr-charcoal);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 10px 6px;
}

.floorplan__room-icon {
  font-size: 1.2rem;
  display: block;
}

.floorplan__room-name {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--hustlr-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* --- Grid Area Assignments --- */
.floorplan__toilet   { grid-area: toilet; }
.floorplan__evspace  { grid-area: evspace; }
.floorplan__office   { grid-area: office; }
.floorplan__cafe     { grid-area: cafe; }
.floorplan__vip      { grid-area: vip; }
.floorplan__court5   { grid-area: court5; }
.floorplan__court6   { grid-area: court6; }
.floorplan__court3   { grid-area: court3; }
.floorplan__court4   { grid-area: court4; }
.floorplan__chill    { grid-area: chill; }
.floorplan__court1   { grid-area: court1; }
.floorplan__court2   { grid-area: court2; }

/* --- Chilling Area (with Neon Tower inside) --- */
.floorplan__chill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.02), rgba(74, 222, 128, 0.06), rgba(74, 222, 128, 0.02));
  padding: 8px 12px;
  position: relative;
}

.floorplan__chill-icon {
  font-size: 0.9rem;
}

.floorplan__chill-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--hustlr-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Neon Tower (inside Chilling Area, right side) --- */
.floorplan__neon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 2px solid var(--hustlr-green);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(74, 222, 128, 0.18));
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6px 10px;
  margin-left: auto;
  min-width: 48px;
}

/* Green glow pulse effect */
.floorplan__neon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(74, 222, 128, 0.15), transparent 70%);
  animation: neonPulse 2s ease-in-out infinite;
  pointer-events: none;
}

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

.floorplan__neon-icon {
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.floorplan__neon-text {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--hustlr-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

/* --- VIP Court --- */
.court-map__vip {
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.08), rgba(74, 222, 128, 0.03));
  border: 2px solid var(--hustlr-green);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.court-map__vip-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--hustlr-green);
  color: var(--hustlr-black);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.court-map__vip-icon {
  font-size: 2rem;
}

.court-map__vip-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--hustlr-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.court-map__vip-sub {
  font-size: 0.6rem;
  color: var(--hustlr-green);
  font-weight: 600;
}

/* --- Court Tiles --- */
.court-tile {
  background: var(--hustlr-charcoal);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.court-tile:hover {
  border-color: var(--hustlr-green);
  background: rgba(74, 222, 128, 0.05);
}

.court-tile--indoor {
  border-left: 3px solid var(--hustlr-green-dark);
}

.court-tile--outdoor {
  border-left: 3px solid var(--hustlr-lime);
  background: rgba(163, 230, 53, 0.03);
}

.court-tile__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hustlr-white);
  line-height: 1;
}

.court-tile__label {
  font-size: 0.65rem;
  color: var(--hustlr-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* --- Entrance --- */
.court-map__entrance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 0 4px;
  margin-top: 16px;
  color: var(--hustlr-gray);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.court-map__entrance-gate {
  width: 56px;
  height: 26px;
  border: 2px solid var(--hustlr-glass-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: var(--hustlr-charcoal);
}

/* --- Legend --- */
.court-map__legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--hustlr-glass-border);
  flex-wrap: wrap;
}

.court-map__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--hustlr-gray-light);
}

.court-map__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.court-map__legend-dot--indoor {
  background: var(--hustlr-green-dark);
}

.court-map__legend-dot--outdoor {
  background: var(--hustlr-lime);
}

.court-map__legend-dot--vip {
  background: var(--hustlr-green);
  box-shadow: 0 0 8px var(--hustlr-green-glow);
}

/* ============================================
   13. PRICING
   ============================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--hustlr-dark-card);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--hustlr-glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
  border-color: var(--hustlr-green);
  box-shadow: 0 0 30px var(--hustlr-green-glow);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 50px var(--hustlr-green-glow-strong);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--hustlr-green);
  color: var(--hustlr-black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 var(--radius-xl) 0 var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__promo-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  animation: shimmer 3s infinite;
}

.pricing-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-card__type {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--hustlr-gray);
  margin-bottom: 24px;
}

.pricing-card__prices {
  margin-bottom: 24px;
}

.pricing-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--hustlr-glass-border);
}

.pricing-card__price-row:last-child {
  border-bottom: none;
}

.pricing-card__price-label {
  font-size: 0.85rem;
  color: var(--hustlr-gray-light);
}

.pricing-card__price-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-card__original {
  text-decoration: line-through;
  color: var(--hustlr-gray);
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 8px;
}

.pricing-card__promo {
  color: var(--hustlr-green);
}

.pricing-card__note {
  font-size: 0.75rem;
  color: var(--hustlr-gray);
  margin-bottom: 24px;
  font-style: italic;
}

/* ============================================
   14. EVENTS SECTION
   ============================================ */
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--hustlr-dark-card);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.event-card:hover {
  border-color: var(--hustlr-glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.event-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card__image img {
  transform: scale(1.05);
}

.event-card__content {
  padding: 24px;
}

.event-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--hustlr-green-glow);
  color: var(--hustlr-green);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.event-card__desc {
  font-size: 0.85rem;
  color: var(--hustlr-gray);
  margin-bottom: 16px;
}

/* ============================================
   15. FIND US / MAP SECTION
   ============================================ */
.findus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.findus__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--hustlr-glass-border);
}

.findus__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(83%);
}

.findus__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.findus__item {
  display: flex;
  gap: 16px;
}

.findus__item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--hustlr-glass);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.findus__item-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.findus__item-content p {
  font-size: 0.85rem;
  color: var(--hustlr-gray);
}

.findus__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.findus__social {
  width: 44px;
  height: 44px;
  background: var(--hustlr-glass);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.findus__social:hover {
  background: var(--hustlr-green);
  color: var(--hustlr-black);
  border-color: var(--hustlr-green);
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
  background: var(--hustlr-dark);
  border-top: 1px solid var(--hustlr-glass-border);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--hustlr-gray);
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hustlr-white);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--hustlr-gray);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--hustlr-green);
}

.footer__bottom {
  border-top: 1px solid var(--hustlr-glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--hustlr-gray);
}

/* ============================================
   17. FAQ SECTION / PAGE
   ============================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--hustlr-dark-card);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item.active {
  border-color: var(--hustlr-green);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--hustlr-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--hustlr-green);
}

.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--hustlr-gray-light);
  line-height: 1.7;
}

/* ============================================
   18. ENQUIRY FORM
   ============================================ */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--hustlr-gray-light);
  margin-bottom: 8px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 16px;
  background: var(--hustlr-charcoal);
  border: 1px solid var(--hustlr-glass-border);
  border-radius: var(--radius-md);
  color: var(--hustlr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--hustlr-green);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* ============================================
   19. FLOATING BOOK NOW BUTTON
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-medium);
  transform: translateY(20px);
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ============================================
   20. SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger.revealed > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* ============================================
   21. PAGE HEADER (Sub-pages)
   ============================================ */
.page-header {
  padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ============================================
   22. RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

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

  .gallery__item--large {
    grid-column: span 2;
  }

  .chill-zone__content {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .court-map {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .court-map__courts-outdoor {
    min-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero__logo-text {
    letter-spacing: 0.05em;
  }

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

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

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

  .gallery__item--large {
    grid-column: span 1;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .chill-zone__features {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .court-map {
    padding: 16px;
  }

  /* Floor plan keeps desktop layout, scrollable */
  .floorplan {
    min-width: 500px;
  }

  .court-map__courts-outdoor {
    min-width: 500px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
}

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