/* =====================================================================
   Crown Sports Arena — Design tokens
   Bold, colorful, energetic sports-brand system, built from the client's
   own crest colors (navy, gold, cricket-ball red) pushed to full saturation.
   ===================================================================== */
:root {
  --ink:        #050914;   /* deep navy-black base */
  --ink-2:      #0A1230;   /* secondary navy for gradient depth */
  --panel:      #10173A;   /* saturated navy card surface */
  --panel-2:    #171F4D;   /* raised surface (inputs, hovered rows) */
  --line:       #3245871a;
  --line-solid: #35459A;

  --gold:       #FFC122;   /* vivid crown gold */
  --gold-bright:#FFDE5C;
  --gold-dim:   #B98600;

  --red:        #FF2D4E;   /* vivid cricket-ball red — now a full energy color */
  --red-dim:    #C4102C;

  --blue:       #2E8BFF;   /* electric accent blue for variety */

  --silver:     #FFFFFF;   /* headline white */
  --silver-dim: #E3E7F7;   /* body text — bright, high contrast */
  --silver-mute:#9BA6D9;   /* captions */

  --turf:       #23E074;   /* vivid success green */
  --amber:      #FFB020;   /* pending-approval amber/yellow */

  --radius: 14px;
  --radius-lg: 24px;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; touch-action: manipulation; }
body {
  margin: 0;
  touch-action: manipulation;
  background:
    radial-gradient(900px 500px at 12% 0%, #FFC12212, transparent 60%),
    radial-gradient(700px 460px at 100% 20%, #FF2D4E0e, transparent 55%),
    radial-gradient(800px 500px at 50% 100%, #23E0740a, transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%) fixed;
  background-attachment: fixed;
  color: var(--silver-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: .98; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.04; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 60px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  display: inline-block;
  border-radius: 2px;
}

/* ---------- Buttons — bold, skewed, high-energy ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transform: skewX(-8deg);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
}
.btn > * { display: inline-block; transform: skewX(8deg); }
.btn:active { transform: skewX(-8deg) translateY(1px); }
.btn-gold {
  background: #05070f;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px -2px #FFC12299, inset 0 0 10px -4px #FFC12244;
}
.btn-gold:hover { background: #0A0E1F; box-shadow: 0 0 24px -2px #FFC122cc, inset 0 0 12px -4px #FFC12266; transform: skewX(-8deg) translateY(-3px); }
.btn-outline {
  background: #05070f;
  border-color: var(--line-solid);
  color: var(--silver);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 16px -4px #FFC12277; transform: skewX(-8deg) translateY(-3px); }
.btn-whatsapp {
  background: #05070f;
  color: var(--turf);
  border: 2px solid var(--turf);
  box-shadow: 0 0 16px -2px #23E07499, inset 0 0 10px -4px #23E07444;
}
.btn-whatsapp:hover { background: #0A0E1F; box-shadow: 0 0 24px -2px #23E074cc, inset 0 0 12px -4px #23E07466; transform: skewX(-8deg) translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12.5px; border-radius: 7px; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ---------- Crest-cut card: signature shape + bold accent stripe ---------- */
.crest-card {
  --cut: 18px;
  background: var(--panel);
  border: 1px solid var(--line-solid);
  clip-path: polygon(
    var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)
  );
  padding: 30px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.crest-card::before {
  content: '';
  position: absolute; inset: 0;
  clip-path: polygon(
    var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)
  );
  padding: 1px;
  background: var(--line-solid);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background .2s ease;
}
.crest-card:hover::before { background: var(--gold); }
.crest-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px #000000cc; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #050914f5;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px -6px #FFC12233;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1240px; margin: 0 auto;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.brand img { height: 42px; width: auto; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand-name span { color: var(--gold); }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding: 8px 0;
  margin-left: 24px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:first-child { margin-left: 0; }
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links a.btn { margin-left: 22px; border-bottom: none; padding: 10px 20px; font-size: 12px; }
.nav-links a.btn:hover { border-bottom: none; }
.nav-toggle {
  display: none;
  background: #05070f; border: 2px solid var(--gold); border-radius: 8px;
  color: var(--gold); width: 40px; height: 40px; font-size: 18px; cursor: pointer;
  align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 12px -4px #FFC12299;
}

/* ---------- Announcement ticker bar ---------- */
.announce-bar {
  background: #05070f;
  border-bottom: 1px solid #FFC12244;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.announce-track {
  display: inline-flex;
  align-items: center;
  animation: announce-scroll 28s linear infinite;
  padding: 9px 0;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  padding: 0 40px;
  white-space: nowrap;
}
.announce-item .ur { font-family: 'Noto Nastaliq Urdu', serif; color: #fff; font-size: 15px; font-weight: 500; }
.announce-item::after { content: '★'; color: var(--red); margin-left: 40px; }
@keyframes announce-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* ---------- Page header band — bold colored strip under nav on inner pages ---------- */
.page-header-band {
  position: relative;
  padding: 58px 0 42px;
  background:
    linear-gradient(115deg, #0A1230 0%, #10173A 55%, #1a1040 100%);
  border-bottom: 3px solid var(--gold);
  clip-path: polygon(0 26px, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.page-header-band::after {
  content: '';
  position: absolute; right: -6%; top: -60%; width: 60%; height: 220%;
  background: linear-gradient(120deg, #FF2D4E22, #FFC12222);
  transform: rotate(18deg);
  filter: blur(2px);
  pointer-events: none;
}
.page-header-band h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 6px; position: relative; z-index: 1; }
.page-header-band p { color: var(--silver-dim); max-width: 560px; margin: 0; position: relative; z-index: 1; }
.page-header-band .eyebrow { position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 110px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), 0 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/gallery/cage-night.jpeg') center 38% / cover no-repeat;
  opacity: .62;
  filter: saturate(1.3) contrast(1.08);
  mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 96%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 96%);
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 460px at 50% 0%, #FFC12244, transparent 62%),
    radial-gradient(700px 340px at 90% 30%, #FF2D4E22, transparent 60%),
    linear-gradient(180deg, #05091455 0%, var(--ink) 94%);
}
@media (max-width: 700px) {
  .hero-bg {
    opacity: .85;
    background-position: center 22%;
    background-size: cover;
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 98%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 98%);
  }
  .hero-glow {
    background:
      radial-gradient(700px 400px at 50% 0%, #FFC12233, transparent 65%),
      linear-gradient(180deg, #05091433 0%, var(--ink) 96%);
  }
}
@media (max-width: 420px) {
  .hero-bg {
    background-position: center 14%;
  }
}
/* Floodlight beam sweep — bolder, more colorful */
.beam {
  position: absolute; top: -20%; width: 260px; height: 160%;
  background: linear-gradient(180deg, #FFDE5C33, transparent 70%);
  transform: rotate(18deg);
  filter: blur(6px);
  animation: sweep 9s ease-in-out infinite;
}
.beam.b2 { left: 62%; animation-delay: -4.5s; opacity: .7; background: linear-gradient(180deg, #FF2D4E33, transparent 70%); }
.beam.b1 { left: 8%; }
@keyframes sweep {
  0%, 100% { transform: rotate(14deg) translateX(0); opacity: .55; }
  50% { transform: rotate(22deg) translateX(30px); opacity: .95; }
}
@media (prefers-reduced-motion: reduce) { .beam { animation: none; } }

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.next-slot-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 700;
  color: #6FF5AC; background: #06170e; border: 1px solid var(--turf);
  border-radius: 20px; padding: 8px 18px; margin-bottom: 22px;
  box-shadow: 0 0 14px -4px #23E07477; transition: all .15s ease;
}
.next-slot-badge:hover { background: #0a2416; box-shadow: 0 0 20px -3px #23E074aa; }
.next-slot-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turf); box-shadow: 0 0 6px var(--turf); flex-shrink: 0; }
.next-slot-badge strong { color: #fff; }
.hero-inner .lead { font-size: 1.2rem; color: var(--silver-dim); max-width: 580px; margin: 0 auto 36px; }
.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; margin: -6px; }
.hero-cta > * { margin: 6px; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap;
  background: var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 58px;
  box-shadow: 0 20px 50px -20px #000000cc;
}
.hero-stat { background: var(--panel); padding: 24px 16px; text-align: center; flex: 1 1 33%; border-left: 2px solid var(--gold); }
.hero-stat:first-child { border-left: none; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat .lbl { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--silver-mute); }

/* ---------- Rate cards ---------- */
.rates-grid { display: flex; flex-wrap: wrap; margin: 44px -12px 0; }
.rate-card { flex: 1 1 320px; margin: 0 12px 24px; }
.rate-card h3 { display: flex; align-items: center; gap: 10px; }
.rate-card .price { font-family: var(--font-display); font-size: 2.9rem; font-weight: 700; color: var(--gold); margin: 12px 0 2px; }
.rate-card .price small { font-family: var(--font-mono); font-size: 13px; color: var(--silver-mute); text-transform: none; }
.rate-card ul { list-style: none; padding: 0; margin: 18px 0 26px; }
.rate-card li { padding: 9px 0; border-top: 1px solid var(--line); color: var(--silver-dim); font-size: 14px; display: flex; gap: 10px; }
.rate-card li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.rate-card.featured { border-color: var(--gold); background: linear-gradient(160deg, #1a1f57, #10173A); box-shadow: 0 20px 50px -24px #FFC12266; }
.badge {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #1A1204; background: var(--gold);
  padding: 5px 12px; border-radius: 20px;
  position: absolute; top: 22px; right: 22px;
}

/* ---------- Bold energy band (color-block CTA sections) ---------- */
.energy-band {
  position: relative;
  background: linear-gradient(115deg, var(--red) 0%, var(--gold) 100%);
  color: #1A0A05;
  clip-path: polygon(0 34px, 100% 0, 100% calc(100% - 34px), 0 100%);
  padding: 78px 0;
}
.energy-band h2, .energy-band h1 { color: #1A0A05; }
.energy-band p { color: #3a1810; }
.energy-band .eyebrow { color: #1A0A05; }
.energy-band .eyebrow::before { background: #1A0A05; }
.energy-band .btn-outline { border-color: #1A0A05aa; color: #1A0A05; }
.energy-band .btn-outline:hover { border-color: #1A0A05; background: #1A0A0511; }

/* ---------- Steps ---------- */
.steps { display: flex; flex-wrap: wrap; margin: 46px -11px 0; }
.step { position: relative; padding-left: 4px; flex: 1 1 220px; margin: 0 11px; }
.step .idx {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1;
  color: var(--gold);
  opacity: .85;
}
.step h3 { margin-top: 4px; font-size: 1.05rem; }
.step p { font-size: 14px; color: var(--silver-mute); margin: 0; }

/* ---------- Forms ---------- */
label { display: block; font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--silver-mute); margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line-solid);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 9px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px #FFC12222; }
input::placeholder, textarea::placeholder { color: var(--silver-mute); }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.help { font-size: 12px; color: var(--silver-mute); margin-top: 6px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; }
.checkbox-row input { width: auto; }

/* Toggle switch — used for lights / addon-kit options on the booking form */
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 11px 0; border-top: 1px solid var(--line);
}
.toggle-row:first-of-type { border-top: none; }
.toggle-row .t-label { font-weight: 700; color: var(--silver); font-size: 14.5px; }
.toggle-row .t-help { font-size: 12.5px; color: var(--silver-mute); margin-top: 2px; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 2; }
.switch .track {
  position: absolute; inset: 0; background: var(--panel-2); border: 1px solid var(--line-solid);
  border-radius: 20px; transition: background .15s ease, border-color .15s ease;
}
.switch .thumb {
  position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--silver-mute); transition: transform .15s ease, background .15s ease;
}
.switch input:checked ~ .track { background: #FFC12244; border-color: var(--gold); }
.switch input:checked ~ .thumb { transform: translateX(20px); background: #fff; }

.form-section-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin: 18px 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.form-section-label::before { content: ''; width: 16px; height: 2px; background: var(--red); display: inline-block; border-radius: 2px; }
.form-section-label:first-child { margin-top: 0; }

[lang="ur"] { font-family: 'Noto Nastaliq Urdu', serif; line-height: 2; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Full-width homepage "Schedule Your Booking" band ---------- */
.schedule-band { width: 100%; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.schedule-cols { display: flex; flex-wrap: wrap; min-height: 620px; }
.schedule-col { padding: 50px 42px; flex: 1 1 320px; }
.schedule-col-book { flex: 2 1 480px; }
.schedule-col-cta { flex: 1.2 1 300px; }
.schedule-col-services { flex: 1.5 1 340px; }
.schedule-col h2, .schedule-col h3 { margin-bottom: 6px; }

.schedule-col-book { background: var(--panel); border-right: 1px solid var(--line); }
.schedule-col-book .calendar-widget { padding: 14px; margin-top: 24px; }
.schedule-col-book .step-label {
  display: flex; align-items: center; gap: 10px; margin: 26px 0 14px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold);
}
.schedule-col-book .step-label .n {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #1A1204;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.schedule-col-book .step-label:first-of-type { margin-top: 0; }

.schedule-col-cta {
  background: radial-gradient(560px 340px at 50% 20%, #FF2D4E33, transparent 65%), var(--ink-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border-right: 1px solid var(--line);
}
.schedule-col-cta .cta-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--panel-2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 22px;
}
.schedule-col-cta p { color: var(--silver-mute); font-size: 14px; margin-bottom: 28px; max-width: 260px; }
.schedule-col-cta .btn { width: 100%; max-width: 260px; margin-bottom: 12px; }

.schedule-col-services {
  position: relative; color: var(--silver);
  background: linear-gradient(180deg, #05070Bcc, #05070Bee), url('../img/gallery/celebration.jpeg') center / cover no-repeat;
}
.schedule-col-services h3 { text-transform: uppercase; font-size: 1.4rem; margin-bottom: 24px; }
.services-list { list-style: none; padding: 0; margin: 0; }
.services-list li { display: flex; align-items: center; gap: 13px; padding: 11px 0; font-size: 14.5px; font-weight: 700; }
.services-list .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold); color: #1A1204; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}

@media (max-width: 960px) {
  .schedule-col { flex-basis: 100% !important; }
  .schedule-col-book, .schedule-col-cta { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---------- Booking Calendar ---------- */
.calendar-widget { padding: 16px; background: #05070f; border-radius: var(--radius); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: .02em; color: #fff; font-size: 13px; }
.cal-nav {
  background: #0A0E1F; border: 1px solid var(--line-solid); color: #fff;
  width: 28px; height: 28px; border-radius: 6px; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .15s ease;
}
.cal-nav:hover:not([disabled]) { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 10px -3px #FFC12299; }
.cal-nav[disabled] { opacity: .3; cursor: not-allowed; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 5px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  color: #fff; text-align: center;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 12.5px; font-weight: 700; font-family: var(--font-mono); color: #fff;
  cursor: default; border: 1px solid #1A2246; background: #0A0E1F; position: relative;
}
.cal-day.blank { visibility: hidden; }
.cal-day.past { color: #55608f; opacity: .5; background: #05070f; border-color: #12172e; }
.cal-day.available { cursor: pointer; border-color: var(--turf); background: #06170e; color: #fff; }
.cal-day.available:hover { background: #0a2416; box-shadow: 0 0 10px -3px #23E07499; }
.cal-day.full { cursor: not-allowed; border-color: var(--red); background: #1a0a10; color: #ff8fa0; text-decoration: line-through; }
.cal-day.loading { opacity: .4; }
.cal-day.selected { background: #05070f; border: 2px solid var(--gold); color: var(--gold); box-shadow: 0 0 14px -2px #FFC122aa; }
.cal-legend { display: flex; gap: 14px; margin-top: 12px; font-size: 10.5px; color: #fff; }
.cal-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 5px; }
.dot-available { background: var(--turf); box-shadow: 0 0 6px var(--turf); }
.dot-full { background: var(--red); box-shadow: 0 0 6px var(--red); }

/* Slot picker */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(66px, 1fr)); gap: 7px; margin: 12px 0 6px; }
.slot-btn {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  background: #06170e; border: 1px solid var(--turf); color: #fff;
  border-radius: 6px; padding: 8px 5px; text-align: center; cursor: pointer;
  transition: all .15s ease;
}
.slot-btn:hover:not([disabled]) { border-color: var(--gold); color: var(--gold); background: #0A0E1F; box-shadow: 0 0 10px -3px #FFC12299; }
.slot-btn.selected { background: #05070f; border: 2px solid var(--gold); color: var(--gold); box-shadow: 0 0 12px -2px #FFC122aa; font-weight: 700; }
/* Booked & fully approved by admin — red, locked */
.slot-btn[disabled].status-booked,
.slot-btn[disabled] { background: #1a0a10; border: 1px solid var(--red); color: #ff8fa0; opacity: .8; text-decoration: line-through; cursor: not-allowed; }
/* Booked but still waiting for admin approval — amber/yellow, locked */
.slot-btn[disabled].status-pending { background: #201705; border: 1px solid var(--amber); color: var(--amber); opacity: .9; text-decoration: line-through; cursor: not-allowed; }

.slots-legend { display: flex; flex-wrap: wrap; gap: 14px; margin: 2px 0 12px; font-size: 10.5px; color: #fff; }
.slots-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 5px; }
.dot-open { background: var(--turf); box-shadow: 0 0 6px var(--turf); }
.dot-pending { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.dot-booked { background: var(--red); box-shadow: 0 0 6px var(--red); }

/* Price summary */
.summary { border-top: 2px dashed var(--line-solid); margin-top: 20px; padding-top: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--silver-dim); }
.summary-row.total { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--gold); border-top: 1px solid var(--line-solid); margin-top: 8px; padding-top: 12px; }
.summary-row.discount { color: var(--turf); }

/* ---------- Bank details ---------- */
.bank-box { background: var(--panel-2); border: 2px dashed var(--gold-dim); border-radius: var(--radius); padding: 22px; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.bank-row:last-child { border-bottom: none; }
.bank-row .k { color: var(--silver-mute); font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.bank-row .v { color: var(--silver); font-weight: 700; font-family: var(--font-mono); }
.copy-btn { background: none; border: 1px solid var(--line-solid); color: var(--gold); font-family: var(--font-mono); font-weight: 700; font-size: 11px; padding: 4px 9px; border-radius: 6px; cursor: pointer; }
.copy-btn:hover { border-color: var(--gold); background: #FFC12214; }

/* ---------- Status pill ---------- */
.pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill-pending { background: #FFC12222; color: var(--gold); }
.pill-successful { background: #23E07422; color: var(--turf); }
.pill-rejected { background: #FF2D4E22; color: var(--red); }

/* ---------- Menu (QR page) ---------- */
.menu-cat { margin: 52px 0 20px; display: flex; align-items: center; gap: 14px; }
.menu-cat h2 {
  margin: 0; font-size: 1.15rem; color: var(--gold);
  border: 2px solid var(--gold); border-radius: 8px; padding: 8px 18px;
  box-shadow: 0 0 14px -4px #FFC12266; background: #05070f;
  display: inline-block;
}
.menu-cat::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--line-solid), transparent); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.food-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 14px; border: 1px solid var(--line-solid); }
.food-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.food-card .row h3 { margin: 0; font-size: 1rem; }
.food-card .price {
  font-family: var(--font-display); font-weight: 700; color: var(--gold); white-space: nowrap;
  border: 1px solid var(--gold); border-radius: 20px; padding: 2px 12px; font-size: 13px;
}
.food-card p { font-size: 13px; color: var(--silver-mute); margin: 8px 0 0; }

/* Empty state — used across list pages (teams, challenges, reviews, faqs) */
.empty-state {
  border: 2px dashed var(--line-solid); border-radius: var(--radius);
  padding: 40px 24px; text-align: center; color: var(--silver-mute);
  font-family: var(--font-mono); font-size: 13.5px;
}

.admin-grid img.crest-card { height: 210px; object-fit: cover; }

/* ---------- Home gallery (flexbox-based for broad renderer support) ---------- */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 42px -9px 0;
}
.gallery-item {
  position: relative;
  width: calc(33.333% - 18px);
  margin: 0 9px 18px;
  height: 232px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line-solid);
  transition: border-color .2s ease, transform .2s ease;
}
.gallery-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, transparent, #05070Bee 80%);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--silver);
}
@media (max-width: 860px) {
  .gallery-item { width: calc(50% - 18px); }
}
@media (max-width: 560px) {
  .gallery-item { width: calc(100% - 18px); height: 210px; }
}

/* ---------- Activity notification (real bookings only) ---------- */
.activity-toast {
  position: fixed; left: 20px; bottom: 20px; z-index: 55;
  max-width: 300px; background: #05070f; border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start;
  box-shadow: 0 16px 40px -10px #000000dd, 0 0 20px -6px #FFC12255;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.activity-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.activity-avatar {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: #1A1204; font-weight: 700; font-size: 16px;
}
.activity-body { font-size: 12.5px; line-height: 1.5; }
.activity-body .name { color: var(--silver); font-weight: 700; }
.activity-body .meta { color: var(--silver-mute); font-size: 11px; margin-top: 2px; }
.activity-close { background: none; border: none; color: var(--silver-mute); cursor: pointer; font-size: 14px; margin-left: auto; padding: 0 2px; }
.activity-close:hover { color: var(--silver); }
@media (max-width: 520px) { .activity-toast { left: 12px; right: 12px; max-width: none; bottom: 88px; } }

/* ---------- Footer ---------- */
.footer { border-top: 3px solid var(--gold); padding: 50px 0 32px; background: var(--ink-2); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer .brand-name { margin-bottom: 10px; }
.footer-links { display: flex; flex-wrap: wrap; margin: -6px -13px; }
.footer-links a { font-size: 13px; font-weight: 700; color: var(--silver-mute); padding: 6px 13px; }
.footer-links a:hover { color: var(--gold); }
.fine { font-size: 12px; color: var(--silver-mute); margin-top: 32px; font-family: var(--font-mono); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 16px;
  background: #1FAE55;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px #1FAE5566;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Alerts ---------- */
.alert { border-radius: 10px; padding: 14px 16px; font-size: 14px; margin-bottom: 20px; border: 2px solid; }
.alert-error { background: #FF2D4E14; border-color: #FF2D4E55; color: #FF9CAC; }
.alert-success { background: #23E07414; border-color: #23E07455; color: #6FF5AC; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: 68px 12px auto 12px; background: #05070f;
    border: 2px solid var(--gold); border-radius: var(--radius);
    flex-direction: column; align-items: flex-start; padding: 18px 22px;
    box-shadow: 0 16px 40px -10px #000000dd, 0 0 20px -6px #FFC12244;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { margin-left: 0; padding: 10px 0; width: 100%; }
  .nav-links a.btn { margin-left: 0; margin-top: 6px; width: 100%; }
  .nav-toggle { display: flex; }
  .brand img { height: 32px; }
  .brand-name { font-size: 13px; }
}
@media (max-width: 860px) {
  .rate-card { flex-basis: 100%; }
  .step { flex-basis: calc(50% - 22px); }
  .field-row { grid-template-columns: 1fr; }
  .hero-stat { flex-basis: 100%; border-left: none; border-top: 2px solid var(--gold); }
  .hero-stat:first-child { border-top: none; }
}
@media (max-width: 520px) {
  .step { flex-basis: 100%; }
  .section { padding: 60px 0; }
  .energy-band { clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%); }
  .slots { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: 6px; }
  .slot-btn { padding: 7px 3px; font-size: 10px; }
  .cal-day { font-size: 10.5px; }
  .page-header-band { padding: 44px 0 32px; }
}

/* Booking policy popup */
.policy-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(3,5,14,0.82); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.policy-overlay[hidden] { display: none; }
.policy-modal {
  max-width: 460px; width: 100%; max-height: 85vh; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--red); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: 0 0 40px -6px #FF2D4E55;
}
.policy-modal h3 { color: var(--red); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; margin: 0 0 14px; font-size: 1.15rem; }
.policy-modal ul { margin: 0 0 20px; padding-left: 18px; color: var(--silver-dim); font-size: 14px; line-height: 1.6; }
.policy-modal li { margin-bottom: 8px; }
.policy-modal li strong { color: var(--silver); }
.policy-note {
  background: #1a0a10; border: 1px solid var(--red); border-radius: var(--radius);
  padding: 14px 16px; font-size: 13px; color: #ff8fa0; margin: 16px 0;
}
.policy-note strong { color: var(--red); }
.policy-checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 4px; }
.policy-checkbox-row input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.policy-checkbox-row label { font-size: 13px; color: var(--silver-dim); line-height: 1.5; }
.win-cashback-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #06170e; border: 1px solid var(--turf);
  color: #7CE0A2; border-radius: 20px; padding: 6px 14px; font-size: 12.5px; font-weight: 700; margin: 10px 0;
}
.promo-hero-badge {
  display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #FFC12222, #FF2D4E22);
  border: 1px solid var(--gold); color: var(--gold); border-radius: 20px; padding: 8px 18px;
  font-size: 13px; font-weight: 800; margin: 14px 0; animation: loyaltyPulse 1.8s ease-in-out infinite;
}
.was-price { font-size: 13px; color: var(--silver-mute); text-decoration: line-through; margin-top: -2px; }
.loyalty-status-note {
  background: #0A0E1F; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 16px; font-size: 13px; color: var(--silver-dim); margin: 14px 0 6px;
}
.loyalty-status-note strong { color: var(--gold); }
@keyframes loyaltyPulse {
  0%, 100% { box-shadow: 0 0 0 0 #23E07455; }
  50% { box-shadow: 0 0 0 8px #23E07400; }
}
.loyalty-win-banner {
  background: linear-gradient(135deg, #06170e, #0a2318); border: 1px solid var(--turf);
  color: #9CF0BA; border-radius: var(--radius); padding: 16px 18px; margin: 14px 0 6px;
  font-size: 15px; font-weight: 800; text-align: center; letter-spacing: .01em;
  animation: loyaltyPulse 1.8s ease-in-out infinite;
}
.loyalty-bar-track { width: 100%; height: 10px; background: #0A0E1F; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.loyalty-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--turf)); border-radius: 6px; transition: width .5s ease; }
