/* ==========================================================================
   SR PLAY HOUSE - 3D IMMERSIVE & MOBILE-FIRST SPORTS DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Dynamic 3D Theme Palette */
  --bg-deep: #05070a;
  --bg-surface: #0a0e17;
  --bg-card-glass: rgba(14, 20, 32, 0.75);
  --bg-card-glass-hover: rgba(20, 28, 45, 0.9);
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-light: rgba(255, 255, 255, 0.15);
  --border-glow-gold: rgba(255, 217, 0, 0.4);
  --border-glow-emerald: rgba(16, 185, 129, 0.4);

  --color-gold: #ffd900;
  --color-gold-hover: #fac720;
  --color-emerald: #10b981;
  --color-emerald-light: #34d399;
  
  --text-white: #ffffff;
  --text-main: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-3d-sm: 0 8px 20px rgba(0, 0, 0, 0.6);
  --shadow-3d-lg: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.15);
  --shadow-gold-btn: 0 10px 25px rgba(255, 217, 0, 0.35), 0 3px 0 #b39700;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 75px; /* space for mobile bottom bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

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

/* 3D WebGL Canvas Layer */
#canvas3d-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Ambient Glowing Spheres */
.ambient-glow-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
}

.glow-emerald {
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.glow-gold {
  bottom: -150px;
  left: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #ffd900 0%, transparent 70%);
}

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

.text-yellow { color: var(--color-gold); }
.text-emerald { color: var(--color-emerald); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.yellow-accent-bar {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: 14px 0 24px;
  border-radius: 2px;
}

.yellow-accent-bar.center-bar {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-tag-3d {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 217, 0, 0.1);
  border: 1px solid rgba(255, 217, 0, 0.25);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

/* 3D Buttons */
.btn-3d-yellow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffe033 0%, #ffd900 60%, #e6be00 100%);
  color: #05070a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold-btn);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
  text-align: center;
}

.btn-3d-yellow:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 217, 0, 0.5), 0 4px 0 #b39700;
}

.btn-3d-yellow:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(255, 217, 0, 0.3), 0 1px 0 #b39700;
}

.btn-3d-yellow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-3d-yellow .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-3d-yellow .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-3d-yellow:hover .btn-glow {
  left: 140%;
}

.btn-3d-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #ffe033 0%, #ffd900 60%, #e6be00 100%);
  color: #05070a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold-btn);
  transition: var(--transition);
}

.btn-3d-play:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 35px rgba(255, 217, 0, 0.5), 0 4px 0 #b39700;
}

.play-icon-box {
  width: 32px;
  height: 32px;
  background: #05070a;
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding-left: 2px;
}

.btn-3d-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-light);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-3d-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-3d {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-ball-orb {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 35% 35%, #ff4d4d, #cc0000 70%, #660000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5);
  animation: orb-float 4s infinite ease-in-out;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--color-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.light-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 217, 0, 0.12);
  border: 1px solid rgba(255, 217, 0, 0.3);
  color: var(--color-gold);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.light-toggle-btn:hover {
  background: rgba(255, 217, 0, 0.25);
  box-shadow: 0 0 15px rgba(255, 217, 0, 0.4);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO 3D SECTION
   ========================================================================== */
.hero-3d-section {
  padding: 50px 0 70px;
  position: relative;
}

.hero-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-emerald-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-emerald);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

.highlight-3d-text {
  background: linear-gradient(135deg, #ffd900 0%, #ffea75 50%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 217, 0, 0.3));
}

.hero-description {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 540px;
}

.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}

.hero-stats-3d {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-glass);
}

.stat-box-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.stat-number small {
  font-size: 0.72rem;
  color: var(--color-gold);
}

.stat-title {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Stadium Glass Card for 3D Pitch Viewport */
.stadium-glass-card {
  background: rgba(14, 20, 32, 0.75);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-3d-lg);
  backdrop-filter: blur(16px);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.card-badge-top {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.pitch-viewport {
  width: 100%;
  height: 300px;
  background: radial-gradient(circle at center, #063d27 0%, #031c12 80%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}

.pitch-overlay-tags {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pitch-tag {
  position: absolute;
  background: rgba(5, 7, 10, 0.75);
  border: 1px solid var(--border-glass-light);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.tag-top { top: 12px; left: 12px; border-color: var(--color-gold); color: var(--color-gold); }
.tag-center { top: 45%; right: 12px; border-color: var(--color-emerald); }
.tag-bottom { bottom: 12px; left: 12px; }

.card-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  background: rgba(5, 7, 10, 0.6);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.info-meta {
  display: flex;
  flex-direction: column;
}

.info-meta-label {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.info-meta-val {
  font-size: 0.85rem;
  color: var(--text-white);
  font-weight: 700;
}

.price-val {
  color: var(--color-gold);
  font-size: 1.05rem;
}

.btn-3d-mini-book {
  background: var(--color-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   ABOUT 3D SECTION & GALLERY
   ========================================================================== */
.about-3d-section {
  padding: 70px 0;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-white);
}

.about-card-narrative {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
  margin-bottom: 20px;
}

.narrative-p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}

.narrative-p:last-child {
  margin-bottom: 0;
}

.narrative-p.highlight-p strong {
  color: var(--text-white);
}

.feature-bullets-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bullet-card-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet-icon-box {
  width: 34px;
  height: 34px;
  background: rgba(255, 217, 0, 0.15);
  color: var(--color-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.bullet-card-3d h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.bullet-card-3d p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 3D Gallery Grid */
.gallery-grid-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  perspective: 1000px;
}

.photo-card-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: var(--shadow-3d-sm);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.photo-card-3d:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--color-gold);
}

.photo-inner {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
}

.photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card-3d:hover .photo-inner img {
  transform: scale(1.06);
}

.photo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(5, 7, 10, 0.85);
  border: 1px solid var(--border-glass-light);
  color: var(--text-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   LOCATION 3D SECTION
   ========================================================================== */
.location-3d-section {
  padding: 60px 0 80px;
}

.location-frame-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-3d-lg);
}

.location-header-bar {
  text-align: center;
  margin-bottom: 20px;
}

.loc-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.loc-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
}

.loc-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.map-3d-viewport {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  line-height: 0;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.location-contact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.loc-quick-item {
  background: rgba(5, 7, 10, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.loc-quick-item i {
  font-size: 1.2rem;
}

.loc-quick-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.loc-quick-item strong {
  font-size: 0.9rem;
  color: var(--text-white);
}

/* ==========================================================================
   PAGES CONTENT (RULES & CONTACT)
   ========================================================================== */
.page-3d-wrapper {
  padding: 50px 0 80px;
  min-height: 70vh;
}

.page-title-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.page-headline-3d {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-white);
}

.page-subtext-3d {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* Rules Grid */
.rules-cards-grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.rule-card-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.rule-card-3d:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow-gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 217, 0, 0.15);
}

.rule-num-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: rgba(255, 217, 0, 0.2);
}

.rule-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 217, 0, 0.12);
  color: var(--color-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.rule-title-3d {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.rule-desc-3d {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.extra-info-blocks-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.glass-info-block {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
}

.info-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.info-block-head h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
}

.glass-info-block p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.values-badges-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.val-badge-item {
  background: rgba(5, 7, 10, 0.6);
  border: 1px solid var(--border-glass);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact Hub */
.contact-hub-grid-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(12px);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card-3d:hover {
  transform: translateX(4px);
  border-color: var(--border-glass-light);
}

.contact-icon-sphere {
  width: 40px;
  height: 40px;
  background: rgba(255, 217, 0, 0.15);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.whatsapp-sphere {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.c-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.c-val {
  font-size: 0.9rem;
  color: var(--text-white);
  margin: 2px 0 4px;
}

.c-phone-large {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold);
}

.c-action-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.glass-form-card-3d {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-3d-lg);
}

.form-card-header {
  margin-bottom: 18px;
}

.form-card-header i {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.form-body-3d {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-input-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
}

.form-input-group input, .form-input-group textarea {
  background: rgba(5, 7, 10, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  min-height: 46px;
}

.form-input-group textarea {
  min-height: 90px;
}

.form-input-group input:focus, .form-input-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(255, 217, 0, 0.2);
}

.btn-block-3d {
  width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer-3d {
  background: rgba(3, 4, 6, 0.95);
  border-top: 1px solid var(--border-glass);
  padding: 40px 0 24px;
  text-align: center;
}

.footer-content-3d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-address-line {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-address-line a:hover {
  color: var(--color-gold);
}

.footer-links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-copy-line {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BOOKING WIZARD & PHONEPE / UPI PAYMENT MODAL
   ========================================================================== */
.modal-backdrop-3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop-3d.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog-3d {
  background: rgba(14, 20, 32, 0.98);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-3d-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop-3d.active .modal-dialog-3d {
  transform: scale(1);
}

.btn-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.btn-modal-close:hover {
  color: #ff4d4d;
}

/* Stepper Progress Bar */
.wizard-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

.s-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #06090e;
  border: 2px solid var(--border-glass-light);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.s-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stepper-step.active .s-circle {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #000;
  box-shadow: 0 0 12px rgba(255, 217, 0, 0.4);
}

.stepper-step.active .s-title {
  color: var(--color-gold);
}

.stepper-step.completed .s-circle {
  border-color: var(--color-emerald);
  background: var(--color-emerald);
  color: #000;
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: var(--border-glass-light);
  margin: -14px 4px 0;
  z-index: 1;
  transition: var(--transition);
}

.stepper-line.completed {
  background: var(--color-emerald);
}

/* Wizard Panes */
.wizard-pane {
  display: none;
  animation: fadeInPane 0.25s ease-out;
}

.wizard-pane.active {
  display: block;
}

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

.wizard-pane-head {
  margin-bottom: 18px;
}

.wizard-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.wizard-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Step 1: Services Cards */
.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-select-card {
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.service-select-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 217, 0, 0.2);
}

.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.service-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.day-icon {
  background: rgba(255, 217, 0, 0.15);
  color: var(--color-gold);
}

.night-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.service-price-tag {
  display: flex;
  align-items: baseline;
}

.service-price-tag .curr {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
}

.service-price-tag .val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-gold);
}

.service-price-tag .per {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
}

.service-timing {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.service-perks {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex: 1;
}

.service-perks li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-select-service {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass-light);
  color: var(--text-white);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.service-select-card:hover .btn-select-service {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
}

/* Step 2: Full Month Switcher & Grid */
.month-tabs-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.month-tab-btn {
  flex: 1;
  background: rgba(5, 7, 10, 0.8);
  border: 1px solid var(--border-glass-light);
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.month-tab-btn:hover {
  color: var(--text-white);
  border-color: var(--color-gold);
}

.month-tab-btn.active {
  background: rgba(255, 217, 0, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 14px rgba(255, 217, 0, 0.25);
}

.full-month-dates-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 20px;
}

.w-date-card {
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.w-date-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.w-date-card.selected {
  background: rgba(255, 217, 0, 0.2);
  border-color: var(--color-gold);
  box-shadow: 0 0 16px rgba(255, 217, 0, 0.35);
}

.w-date-day {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.w-date-card.selected .w-date-day {
  color: var(--color-gold);
}

.w-date-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 1px 0;
}

.w-date-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 5px;
  border-radius: var(--radius-pill);
  color: var(--text-dim);
}

.w-date-badge.badge-today {
  background: var(--color-emerald);
  color: #000;
  font-weight: 800;
}

/* Step 3: Slots Grid */
.wizard-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 20px;
}

.w-slot-chip {
  background: rgba(5, 7, 10, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.w-slot-chip.available:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.w-slot-chip.selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(255, 217, 0, 0.4);
}

.w-slot-chip.selected .w-slot-rate {
  color: #000 !important;
}

/* Passed / Expired Slots */
.w-slot-chip.slot-expired {
  opacity: 0.32;
  cursor: not-allowed;
  background: rgba(15, 20, 28, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
}

/* Already Booked & Locked Slots */
.w-slot-chip.booked-locked {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(40, 10, 15, 0.6);
  border-color: rgba(239, 68, 68, 0.35);
  text-decoration: line-through;
  position: relative;
}

.w-slot-chip.booked-locked .w-slot-rate {
  color: #ef4444 !important;
  font-weight: 700;
}

.w-slot-time {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
}

.w-slot-rate {
  font-size: 0.7rem;
  margin-top: 2px;
}

.all-slots-passed-notice {
  grid-column: 1 / -1;
  background: rgba(255, 217, 0, 0.1);
  border: 1px solid rgba(255, 217, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-switch-service-quick {
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Step 4: Summary Pill & Form */
.wizard-summary-pill {
  background: rgba(5, 7, 10, 0.8);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 6px;
}

.wizard-summary-pill span {
  color: var(--text-muted);
}

.wizard-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Step 5: Payment Tabs & Boxes */
.payment-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.pay-mode-tab {
  background: rgba(5, 7, 10, 0.7);
  border: 1px solid var(--border-glass-light);
  color: var(--text-dim);
  padding: 12px 8px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.pay-mode-tab:hover {
  border-color: var(--color-gold);
  color: var(--text-white);
}

.pay-mode-tab.active {
  background: rgba(255, 217, 0, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 16px rgba(255, 217, 0, 0.25);
}

.payment-box-3d {
  background: rgba(5, 7, 10, 0.8);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.payable-amount-box {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 217, 0, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payable-amount-box .p-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}

.payable-amount-box .p-amount {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-gold);
}

.upi-qr-card {
  background: #ffffff;
  padding: 10px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.qr-image-wrapper {
  width: 170px;
  height: 170px;
}

.qr-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-scan-hint {
  font-size: 0.7rem;
  font-weight: 700;
  color: #111827;
  margin-top: 4px;
  text-align: center;
}

.upi-id-copy-bar {
  width: 100%;
  background: rgba(14, 20, 32, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.btn-copy-upi {
  background: var(--color-gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-pay-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-pay-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  transition: var(--transition);
}

.phonepe-btn {
  background: #5f259f;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(95, 37, 159, 0.4);
}

.phonepe-btn:hover {
  background: #6e2cb8;
  transform: translateY(-2px);
}

.gpay-btn {
  background: #1a73e8;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

.gpay-btn:hover {
  background: #2580f5;
  transform: translateY(-2px);
}

.utr-input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.utr-input-box label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}

.utr-input-box input {
  background: rgba(5, 7, 10, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-white);
  font-size: 0.88rem;
  outline: none;
}

.utr-input-box input:focus {
  border-color: var(--color-gold);
}

/* Offline Info Card */
.offline-info-card {
  width: 100%;
  background: rgba(14, 20, 32, 0.9);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.offline-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 217, 0, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 10px;
}

.offline-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.offline-info-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 12px;
}

.offline-terms-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-main);
  background: rgba(5, 7, 10, 0.6);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.offline-terms-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.after-pay-section {
  width: 100%;
}

.wizard-nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-wizard-back {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass-light);
  color: var(--text-white);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-wizard-back:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-gold);
}

/* Policy Dialog */
.policy-dialog {
  max-width: 600px;
}

.policy-modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.policy-modal-body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.policy-modal-body h4 {
  color: var(--text-white);
  margin: 14px 0 4px;
}

/* Floating Actions */
.floating-3d-tools {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 769px) {
  .floating-3d-tools {
    bottom: 25px;
    right: 25px;
  }
}

.float-tool-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-tool {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-tool:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.booking-tool {
  background: var(--color-gold);
  color: #000000;
}

.booking-tool:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 217, 0, 0.6);
}

/* ==========================================================================
   MOBILE BOTTOM BAR
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass-light);
  padding: 8px 16px;
  z-index: 998;
  align-items: center;
  justify-content: space-between;
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  gap: 2px;
  padding: 4px 10px;
}

.bottom-bar-item i {
  font-size: 1.15rem;
}

.bottom-bar-item.whatsapp-item {
  color: #25d366;
}

.bottom-bar-book-btn {
  background: linear-gradient(180deg, #ffe033 0%, #ffd900 60%, #e6be00 100%);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 217, 0, 0.4);
  cursor: pointer;
}

/* ==========================================================================
   DIGITAL MATCH TICKET / GROUND PASS (STEP 6)
   ========================================================================== */
.pass-success-header {
  margin-bottom: 20px;
}

.success-check-orb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 12px;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.digital-ticket-card-3d {
  background: linear-gradient(135deg, rgba(14, 20, 32, 0.95), rgba(5, 7, 10, 0.98));
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 217, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
}

.digital-ticket-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-emerald), var(--color-gold));
}

.ticket-header {
  background: rgba(255, 217, 0, 0.1);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border-glass-light);
}

.ticket-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.ticket-id {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-gold);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 217, 0, 0.3);
}

.ticket-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ticket-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.t-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.t-val {
  font-size: 0.92rem;
  color: var(--text-white);
}

.ticket-venue-row {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-footer {
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 18px;
  border-top: 1px dashed var(--border-glass-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-qr-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-emerald);
}

.ticket-qr-seal i {
  font-size: 1.2rem;
}

.ticket-helpline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ticket-helpline strong {
  font-size: 0.85rem;
  color: var(--color-gold);
}

.pass-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media print {
  body * {
    visibility: hidden;
  }
  #digitalGroundPass, #digitalGroundPass * {
    visibility: visible;
  }
  #digitalGroundPass {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (ULTRA FLUID MOBILE FIRST)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid-container, .about-container, .contact-hub-grid-3d, .extra-info-blocks-3d {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(5, 7, 10, 0.98);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  }

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

  .main-nav .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  .main-nav .btn-3d-yellow {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }

  /* Hide floating tool buttons on mobile to prevent blocking content & overlapping bottom bar */
  .floating-3d-tools {
    display: none !important;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 12px;
  }

  .brand-logo-3d {
    gap: 8px;
    min-width: 0;
  }

  .logo-ball-orb {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .logo-title {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .logo-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }

  .header-tools {
    gap: 6px;
  }

  .light-toggle-btn {
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .light-toggle-label {
    display: none; /* Icon-only on mobile header to save horizontal space */
  }
}

@media (max-width: 580px) {
  .hero-3d-section {
    padding: 24px 0 40px;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    line-height: 1.25;
    word-break: break-word;
    margin-bottom: 1rem;
  }

  .live-status-pill {
    font-size: 0.65rem;
    padding: 5px 12px;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
  }

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

  .hero-cta-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-3d-play, .btn-3d-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  /* Full width stacked stat boxes on mobile - Zero cutoffs */
  .hero-stats-3d {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .stat-box-3d {
    width: 100%;
    padding: 10px 14px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

  .stat-title {
    font-size: 0.75rem;
  }

  /* Stadium glass card & pitch viewport mobile fit */
  .stadium-glass-card {
    padding: 12px;
  }

  .pitch-viewport {
    height: 220px;
  }

  .card-bottom-info {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
    padding: 12px;
  }

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

  .btn-3d-mini-book {
    width: 100%;
    padding: 10px;
    justify-content: center;
  }

  .gallery-grid-3d {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .photo-inner {
    height: 130px;
  }

  .feature-bullets-3d, .services-cards-grid, .mobile-pay-buttons, .payment-mode-tabs, .location-contact-bar, .rules-cards-grid-3d {
    grid-template-columns: 1fr;
  }

  .full-month-dates-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .wizard-slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .modal-dialog-3d {
    padding: 18px 12px;
    border-radius: var(--radius-md);
    width: 94vw;
    margin: 10px auto;
  }

  .s-title {
    font-size: 0.55rem;
  }

  .s-circle {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .stepper-line {
    margin: -12px 2px 0;
  }
}
