/* ================================================================
   Quiz Embassy — Global Stylesheet
   All shared variables, base styles, layout, header, footer
   components and responsive utilities.
================================================================ */

 /* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080a0f;
  --bg2: #0d1018;
  --red: #e8302a;
  --red-glow: rgba(232,48,42,0.35);
  --yellow: #f5a623;
  --yellow-glow: rgba(245,166,35,0.35);
  --cyan: #00f5d4;
  --cyan-glow: rgba(0,245,212,0.3);
  --white: #f0f2f5;
  --muted: #5a6070;
  --card-bg: rgba(13,16,24,0.85);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}
 html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
 /* ─── CUSTOM CURSOR ──────────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: absolute; transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.2s;
  box-shadow: 0 0 10px var(--red), 0 0 30px var(--red-glow);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232,48,42,0.5);
  border-radius: 50%;
  position: absolute; transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover #cursor-dot { transform: translate(-50%,-50%) scale(2.5); background: var(--yellow); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--yellow); }
 /* ─── NOISE OVERLAY ──────────────────────────────────── */
#noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
 /* ─── CANVAS (Three.js) ──────────────────────────────── */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}
 /* ─── WRAPPER ────────────────────────────────────────── */
.page { position: relative; z-index: 2; }
 /* ─── HEADER / NAV ───────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  height: 72px;
  background: rgba(8,10,15,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  overflow: visible;
}
/* cover the border-bottom line beneath the semicircle */
header::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 138px;
  height: 2px;
  background: rgba(8,10,15,0.7);
  z-index: 101;
  pointer-events: none;
}
.header-left { display: flex; align-items: center; }
.header-center { display: flex; justify-content: center; overflow: visible; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
 .logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
/* Logo — floats over the header, independent of semicircle */
.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
  height: 80px;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 8px rgba(232,48,42,0.5));
  position: relative;
  z-index: 110;
  /* logo sits ON TOP of the semicircle, slightly overlapping its top edge */
  transform: translateY(8px);
}
 /* Semi-circle: attached to header bottom, independent of logo */
header::after {
  content: '';
  position: absolute;
  bottom: -49px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 50px;
  /* match header background exactly */
  background: rgba(8,10,15,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 0 0 140px 140px;
  /* continue the header bottom border around the curve */
  border: 1px solid var(--border);
  border-top: none;
  z-index: 100;
  pointer-events: none;
  /* cover the header border-bottom line in the middle */
  margin-top: -1px;
}
 nav {
  display: flex; gap: 32px; align-items: center;
}
nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--white); }
 /* Language Switcher — desktop pill */
.lang-switcher {
  display: flex; gap: 4px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 8px;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 999px;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 10px var(--red-glow);
}
 /* ─── MOBILE BURGER ──────────────────────────────────── */
.burger-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.burger-btn:hover { border-color: var(--red); }
.burger-line {
  display: block; width: 18px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.open .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.open .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.open .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 /* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(8,10,15,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.mobile-nav.open {
  max-height: 520px;
  padding: 24px 5vw 32px;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: rgba(240,242,245,0.7);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); padding-left: 8px; }
 /* Mobile lang dropdown */
.mobile-lang-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.mobile-lang-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.mobile-lang-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.mobile-lang-btn {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.2s;
}
.mobile-lang-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 10px var(--red-glow);
}
.mobile-cta-row { margin-top: 20px; }
.mobile-cta-row .btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
 /* CTA button */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
 .btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow), 0 4px 15px rgba(232,48,42,0.4);
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--red-glow), 0 8px 25px rgba(232,48,42,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.btn-yellow {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 0 20px var(--yellow-glow);
}
.btn-yellow:hover {
  box-shadow: 0 0 40px var(--yellow-glow);
  transform: translateY(-2px);
}
 /* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 5vw 80px;
  position: relative;
}
 .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,245,212,0.08);
  border: 1px solid rgba(0,245,212,0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
 .hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }
.hero-title .accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  text-shadow: 0 0 40px var(--red-glow);
  position: relative;
}
.hero-title .red { color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.hero-title .yellow { color: var(--yellow); text-shadow: 0 0 40px var(--yellow-glow); }
 .hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(240,242,245,0.6);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
  opacity: 0;
}
 .hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
}
 .hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 80px;
  opacity: 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
 /* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
}
.scroll-ind span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--cyan); }
  50% { opacity: 0.4; box-shadow: 0 0 4px var(--cyan); }
}
 /* ─── SECTION LAYOUT ─────────────────────────────────── */
section {
  padding: 120px 5vw;
  position: relative;
}
 .section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
 /* ─── HOW IT WORKS ───────────────────────────────────── */
.how-it-works {
  background: linear-gradient(to bottom, transparent, rgba(13,16,24,0.8), transparent);
}
.how-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px; flex-wrap: wrap; gap: 24px;
}
.how-sub {
  max-width: 360px;
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
}
 .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 64px; left: calc(33.33% - 1px); right: calc(33.33% - 1px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), var(--yellow), transparent);
}
 .step-card {
  padding: 48px 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step-card:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.step-card:hover {
  border-color: rgba(232,48,42,0.3);
  transform: translateY(-4px);
}
.step-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,48,42,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover::after { opacity: 1; }
 .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.step-num::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--border);
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
}
.step-icon.icon-red { background: rgba(232,48,42,0.12); border: 1px solid rgba(232,48,42,0.25); }
.step-icon.icon-yellow { background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); }
.step-icon.icon-cyan { background: rgba(0,245,212,0.12); border: 1px solid rgba(0,245,212,0.25); }
 .step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
 /* ─── BOOKING WIDGET ─────────────────────────────────── */
.booking-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.booking-left { position: sticky; top: 120px; }
.booking-tagline {
  font-size: 15px; color: var(--muted);
  margin: 20px 0 40px;
  font-weight: 300;
  max-width: 380px;
}
.booking-features { display: flex; flex-direction: column; gap: 16px; }
.bfeat {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: rgba(240,242,245,0.7);
}
.bfeat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
 /* Booking Form */
.booking-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}
 .form-steps {
  display: flex; gap: 0; margin-bottom: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 4px;
}
.form-step-tab {
  flex: 1; text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 8px;
  border-radius: 7px;
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
}
.form-step-tab.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 15px var(--red-glow);
}
 .form-group { margin-bottom: 20px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.form-input, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,48,42,0.12);
}
.form-select option { background: #1a1d26; }
 /* Players selector */
.players-selector {
  display: flex; gap: 8px;
}
.player-btn {
  flex: 1; text-align: center;
  padding: 12px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.player-btn:hover { border-color: rgba(232,48,42,0.3); color: var(--white); }
.player-btn.active {
  background: rgba(232,48,42,0.12);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
}
 /* Price display */
.price-display {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  margin-top: 24px; margin-bottom: 24px;
}
.price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--yellow);
  text-shadow: 0 0 20px var(--yellow-glow);
}
.price-note {
  font-size: 12px; color: var(--muted);
}
 /* Calendar mini */
.mini-calendar {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cal-header span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.cal-nav {
  background: none; border: 1px solid var(--border);
  color: var(--white); width: 28px; height: 28px;
  border-radius: 6px; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.cal-nav:hover { border-color: var(--red); color: var(--red); }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day-name {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center; padding: 4px 0 8px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; border-radius: 6px;
  cursor: pointer; transition: all 0.15s;
  color: var(--muted);
}
.cal-day.avail { color: var(--white); }
.cal-day.avail:hover {
  background: rgba(232,48,42,0.12);
  color: var(--red);
}
.cal-day.selected {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 12px var(--red-glow);
  font-weight: 700;
}
.cal-day.past { opacity: 0.25; cursor: not-allowed; }
 /* Time slots */
.time-slots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 20px;
}
.time-slot {
  padding: 10px 8px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.time-slot.avail { color: var(--white); }
.time-slot.avail:hover { border-color: var(--red); color: var(--red); }
.time-slot.selected {
  background: rgba(232,48,42,0.15);
  border-color: var(--red);
  color: var(--red);
}
.time-slot.booked {
  opacity: 0.3; cursor: not-allowed;
  text-decoration: line-through;
}
 /* ─── REVIEWS ────────────────────────────────────────── */
.reviews-section { overflow: hidden; }
.reviews-header { margin-bottom: 64px; }
.rating-hero {
  display: flex; align-items: center; gap: 20px; margin-top: 20px;
}
.rating-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px; line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 40px var(--yellow-glow);
}
.stars-col { display: flex; flex-direction: column; gap: 6px; }
.stars { font-size: 20px; letter-spacing: 2px; }
.rating-count { font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
 .reviews-track-wrap {
  position: relative; overflow: hidden;
}
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 80px;
  pointer-events: none;
}
.reviews-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.reviews-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.reviews-track {
  display: flex; gap: 24px;
  animation: slideLeft 30s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
 .review-card {
  width: 320px; flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(245,166,35,0.3); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: #fff; flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.review-stars { font-size: 12px; color: var(--yellow); letter-spacing: 1px; }
.review-text { font-size: 14px; color: rgba(240,242,245,0.7); line-height: 1.7; font-weight: 300; }
.review-date { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 14px; letter-spacing: 0.1em; }
 /* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
  max-width: 800px; margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(232,48,42,0.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--red); }
.faq-arrow {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
  color: var(--muted);
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  border-color: var(--red);
  color: var(--red);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0,1,0,1), padding 0.3s;
  padding: 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
  transition: max-height 0.5s cubic-bezier(1,0,1,0), padding 0.3s;
}
 /* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  margin: 0 5vw 120px;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 30% 50%, rgba(232,48,42,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.15) 0%, transparent 60%),
              rgba(13,16,24,0.9);
  border: 1px solid rgba(232,48,42,0.2);
  padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--red), var(--yellow), transparent);
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  max-width: 500px;
}
 /* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 5vw 40px;
  background: rgba(8,10,15,0.95);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px; color: var(--muted);
  max-width: 260px; line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: rgba(240,242,245,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.05em;
  flex-wrap: wrap; gap: 12px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(232,48,42,0.1);
}
 /* ─── STICKY MOBILE CTA ──────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 16px 20px;
  background: rgba(8,10,15,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.sticky-mobile-cta .btn { width: 100%; justify-content: center; font-size: 14px; }
 /* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
 /* ─── GLITCH EFFECT ──────────────────────────────────── */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; left: 0;
  font-family: inherit; font-weight: inherit;
  font-size: inherit; line-height: inherit;
  animation: none; clip: rect(0,900px,0,0);
  background: transparent; color: inherit;
}
.glitch:hover::before {
  animation: glitch1 0.3s steps(2,end) forwards;
  color: var(--cyan); left: 2px; top: 0;
}
.glitch:hover::after {
  animation: glitch2 0.3s steps(2,end) forwards;
  color: var(--red); left: -2px; top: 0;
}
@keyframes glitch1 {
  0%   { clip: rect(0,900px,0,0); }
  20%  { clip: rect(30px,900px,50px,0); }
  40%  { clip: rect(10px,900px,25px,0); }
  60%  { clip: rect(50px,900px,70px,0); }
  80%  { clip: rect(0,900px,0,0); }
  100% { clip: rect(0,900px,0,0); }
}
@keyframes glitch2 {
  0%   { clip: rect(0,900px,0,0); }
  20%  { clip: rect(60px,900px,80px,0); }
  40%  { clip: rect(5px,900px,20px,0); }
  60%  { clip: rect(40px,900px,55px,0); }
  80%  { clip: rect(0,900px,0,0); }
  100% { clip: rect(0,900px,0,0); }
}
 /* ─── GLOW LINES ─────────────────────────────────────── */
.glow-line {
  position: absolute; height: 1px; pointer-events: none;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  opacity: 0.4;
}
 /* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  header { grid-template-columns: 1fr auto; }
  .header-left { display: none; }
  .header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 102;
  }
  .header-center .logo { pointer-events: all; }
  .header-right { gap: 10px; }
  .lang-switcher { display: none; }
  .header-book-btn { display: none; }
  .burger-btn { display: flex; }
  .mobile-nav { display: block; top: 72px; }
  /* first nav link gets padding to clear the semicircle overhang (~50px) */
  .mobile-nav .mobile-nav-links a:first-child { padding-top: calc(10px + 50px); }
   .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step-card { border-radius: 0; }
  .step-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .step-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .booking-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-mobile-cta { display: block; }
  .cta-banner { padding: 48px 32px; flex-direction: column; }
   .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-brand .social-links { justify-content: center; }
}
@media (max-width: 580px) {
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 30px; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}
  