/**
 * The Long Shot — Main Stylesheet
 *
 * @package TheLongShot
 * @version 2.0.0
 *
 * Table of Contents:
 * 1. CSS Variables & Reset
 * 2. Layout & Typography
 * 3. Navigation
 * 4. Hero Section
 * 5. Ticker
 * 6. Section Headings
 * 7. Game Zone
 * 8. Menu Section
 * 9. Events Section
 * 10. Booking Section
 * 11. About Section
 * 12. Reviews Section
 * 13. Contact Section
 * 14. Footer
 * 15. Video Hero
 * 16. WhatsApp Widget
 * 17. Bookly Dark Overrides
 * 18. Animations
 * 19. WordPress Defaults
 * 20. Responsive
 */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */

:root {
  --bg: #08090c;
  --bg2: #0e1014;
  --card: #13151a;
  --elev: #1a1d24;
  --accent: #ffe141;
  --accent2: #ffe86a;
  --glow: rgba(255, 225, 65, 0.12);
  --glow2: rgba(255, 225, 65, 0.25);
  --gold: #d4a853;
  --white: #fff;
  --t1: #f0f0f0;
  --t2: #94969c;
  --t3: #5a5d65;
  --brd: rgba(255, 255, 255, 0.06);
  --brd2: rgba(255, 255, 255, 0.12);
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mw: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.w {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
}

/* Screen-reader-only utility (visually hidden, accessible to assistive tech). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   2. Layout & Typography — intentionally empty; inherited from variables
   ========================================================================== */

/* ==========================================================================
   3. Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: auto;
  max-width: 96%;
}

.np {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 9, 12, 0.8);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--brd);
  border-radius: 100px;
  padding: 6px 6px 6px 12px;
}

.nl {
  height: 44px;
  margin-right: 12px;
  flex-shrink: 0;
}

.nl img,
.nl .custom-logo {
  height: 100%;
  width: auto;
  min-width: 100px;
  object-fit: contain;
}

.nk {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nk a {
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t2);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.nk a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Nav dropdowns */
.nd {
  position: relative;
}

.ns {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 6px;
  min-width: 180px;
  z-index: 100;
}

.nd:hover .ns {
  display: flex;
  flex-direction: column;
}

.ns a {
  padding: 9px 14px !important;
  font-size: 0.78rem !important;
  border-radius: 8px !important;
  white-space: nowrap;
}

.ns a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
}

.bg::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: var(--accent);
  opacity: 0;
  filter: blur(16px);
  z-index: -1;
  transition: opacity 0.3s;
}

.bg:hover {
  transform: translateY(-1px);
}

.bg:hover::after {
  opacity: 0.4;
}

.nt {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nt svg {
  stroke: var(--white);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ho1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 225, 65, 0.07);
  top: -10%;
  left: -10%;
  animation: of 20s ease-in-out infinite;
}

.ho2 {
  width: 400px;
  height: 400px;
  background: rgba(212, 168, 83, 0.05);
  bottom: -5%;
  right: -5%;
  animation: of 25s ease-in-out infinite reverse;
}

@keyframes of {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hc {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.he {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px 6px 6px;
  background: var(--glow);
  border: 1px solid rgba(255, 225, 65, 0.15);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  animation: fu 0.8s var(--ease) both;
}

.he .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 225, 65, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero h1,
.hero .h1 {
  font-family: var(--fd);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fu 0.8s var(--ease) 0.1s both;
}

.hero h1 i,
.hero .h1 i {
  font-style: italic;
  color: var(--accent);
}

.hs {
  font-size: 1.1rem;
  color: var(--t2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fu 0.8s var(--ease) 0.2s both;
}

.ha {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fu 0.8s var(--ease) 0.3s both;
}

.hero-trust {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 18px;
  letter-spacing: 0.3px;
  animation: fu 0.8s var(--ease) 0.5s both;
}


.bo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--brd2);
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.3s var(--ease);
}

.bo:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glow);
}

.bl {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* Hero cards */
.hg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 64px;
  animation: fu 0.8s var(--ease) 0.5s both;
}

.hd {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
}

.hd:hover {
  border-color: rgba(255, 225, 65, 0.25);
  transform: translateY(-6px);
}

.hd::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.hd:hover::before {
  opacity: 1;
}

.hd-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hd-img svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
}

.hd-body {
  padding: 16px;
  text-align: center;
  position: relative;
}

.hd-body h4 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.hd-body p {
  font-size: 0.72rem;
  color: var(--t3);
}

.hd-body .cp {
  font-family: var(--fd);
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 8px;
}

.hd-body .cp span {
  font-family: var(--fb);
  font-size: 0.65rem;
  color: var(--t3);
}

/* Game visual bgs */
.v1 { background: linear-gradient(145deg, #0f1f0f, #0a1508); }
.v2 { background: linear-gradient(145deg, #1f0f0f, #150a08); }
.v3 { background: linear-gradient(145deg, #0f0f1f, #080a15); }
.v4 { background: linear-gradient(145deg, #1f1f0f, #15150a); }

/* ==========================================================================
   5. Ticker
   ========================================================================== */

.tk {
  background: var(--accent);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.tt {
  display: flex;
  animation: tc 30s linear infinite;
}

.ti {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ti .sp {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

@keyframes tc {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   6. Section Headings
   ========================================================================== */

.sec {
  padding: 100px 0;
}

.se {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.st {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.st i {
  font-style: italic;
  color: var(--accent);
}

.ss {
  font-size: 1rem;
  color: var(--t2);
  max-width: 500px;
  line-height: 1.7;
}

.dv {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brd), transparent);
}

/* ==========================================================================
   7. Game Zone
   ========================================================================== */

.gg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.gc {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.gc:hover {
  border-color: rgba(255, 225, 65, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.gv {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gv svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

/* Game card — real photo variant */
.gv.gv-img {
  padding: 0;
}

.gv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gc:hover .gv-photo {
  transform: scale(1.05);
}

.gb {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(8, 9, 12, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--brd);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gbd {
  padding: 24px;
}

.gbd h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.gbd p {
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.gm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--brd);
}

.gp {
  font-family: var(--fd);
  font-size: 1.4rem;
  color: var(--accent);
}

.gp span {
  font-family: var(--fb);
  font-size: 0.72rem;
  color: var(--t3);
}

.gl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid var(--brd2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.gl:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glow);
}

/* ==========================================================================
   8. Menu Section
   ========================================================================== */

.ms {
  background: var(--bg2);
}

.mt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

.mc {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.cb {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: var(--card);
  color: var(--t2);
  border: 1px solid var(--brd);
  font-family: var(--fb);
}

.cb.a {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.cb:hover:not(.a) {
  color: var(--white);
  border-color: var(--brd2);
}

.mg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mi {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s var(--ease);
}

.mi:hover {
  border-color: var(--brd2);
}

.mh {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.mi h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.mp {
  font-family: var(--fd);
  font-size: 1.1rem;
  color: var(--accent);
  white-space: nowrap;
}

.mi p {
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.5;
}

.tgs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tg {
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 500;
  background: var(--elev);
  color: var(--t2);
  border: 1px solid var(--brd);
}

.mn {
  margin-top: 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--t3);
}

.mn a {
  color: var(--accent);
}

.hl {
  color: #4ade80;
  font-weight: 600;
}

/* ==========================================================================
   9. Events Section
   ========================================================================== */

.eg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.ec {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 22px;
  padding: 32px 26px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.ec::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.ec:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 225, 65, 0.2);
}

.ec:hover::after {
  transform: scaleX(1);
}

.ei {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.ec h3 {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ec > p {
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ef {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.ef div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--t1);
}

.ef div::before {
  content: '\2713';
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glow);
  flex-shrink: 0;
}

.ec .bg {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   10. Booking Section
   ========================================================================== */

.bk {
  background: var(--bg);
}

.bl2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.bi h3 {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.bi > p {
  font-size: 0.92rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bsp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bsn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--glow);
  border: 1px solid rgba(255, 225, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.bsp h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.bsp p {
  font-size: 0.8rem;
  color: var(--t3);
}

.be {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 22px;
  padding: 36px;
  min-height: 480px;
}

.bp {
  text-align: center;
  color: var(--t3);
  padding: 50px 16px;
}

.bp h4 {
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.bp p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   11. About Section
   ========================================================================== */

.ab {
  background: var(--bg2);
}

.al {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}

.at p {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 18px;
}

.at p:first-child {
  font-size: 1.1rem;
  color: var(--t1);
}

.sg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sc {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.sc:hover {
  border-color: rgba(255, 225, 65, 0.2);
  transform: translateY(-3px);
}

.sc h3 {
  font-family: var(--fd);
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}

.sc p {
  font-size: 0.8rem;
  color: var(--t3);
  margin-top: 5px;
}

/* ==========================================================================
   12. Reviews Section
   ========================================================================== */

.rg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.rv {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s var(--ease);
}

.rv:hover {
  border-color: var(--brd2);
}

.rs {
  color: #fbbf24;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.rv blockquote {
  font-size: 0.88rem;
  color: var(--t1);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.ra {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--accent);
}

.rn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.rsc {
  font-size: 0.7rem;
  color: var(--t3);
}

/* ==========================================================================
   13. Contact Section
   ========================================================================== */

.cg {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  margin-top: 48px;
}

.cc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cd {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  transition: all 0.3s var(--ease);
}

.cd:hover {
  border-color: var(--brd2);
}

.ci {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cd h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.cd p {
  font-size: 0.8rem;
  color: var(--t2);
  line-height: 1.5;
}

.cd a {
  color: var(--accent);
  transition: color 0.3s;
}

.cd a:hover {
  color: var(--accent2);
}

.cf {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 22px;
  padding: 32px;
}

.cf h3 {
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

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

.fg {
  margin-bottom: 12px;
}

.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 11px 14px;
  background: var(--elev);
  border: 1px solid var(--brd);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.86rem;
  transition: all 0.3s var(--ease);
  outline: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.fg textarea {
  min-height: 90px;
  resize: vertical;
}

/* Form feedback */
.tls-form-msg {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

.tls-form-msg--success {
  display: block;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.tls-form-msg--error {
  display: block;
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ==========================================================================
   14. Footer
   ========================================================================== */

.ft {
  background: var(--bg);
  border-top: 1px solid var(--brd);
  padding: 56px 0 24px;
}

.ftg {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.ftb p {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.6;
  max-width: 260px;
  margin: 12px 0 18px;
}

.ftb img,
.ftb .custom-logo {
  height: 42px;
  width: auto;
}

.ftc h5 {
  font-family: var(--fd);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}

.ftc li {
  margin-bottom: 9px;
}

.ftc li a {
  font-size: 0.8rem;
  color: var(--t3);
  transition: color 0.3s;
}

.ftc li a:hover {
  color: var(--accent);
}

.fbt {
  border-top: 1px solid var(--brd);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.fbt p {
  font-size: 0.72rem;
  color: var(--t3);
}

.sf {
  font-size: 0.7rem;
  color: var(--t3);
  opacity: 0.5;
  text-align: center;
  padding: 14px 24px;
  line-height: 1.8;
}

.sf a {
  color: var(--t3);
  border-bottom: 1px solid transparent;
}

.sf a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   15. Video Hero
   ========================================================================== */

.hero--video {
  background: transparent;
}

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

.hero-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/* Hide poster on desktop when video is also present */
.hero-vid ~ .hero-poster {
  display: none;
  position: absolute;
  inset: 0;
}

.hero-vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.95) 0%,
    rgba(8, 9, 12, 0.6) 40%,
    rgba(8, 9, 12, 0.5) 60%,
    rgba(8, 9, 12, 0.85) 100%
  );
}

.hero--video .hc {
  z-index: 3;
}

.hero--video .hero-orb {
  opacity: 0.5;
}

/* ==========================================================================
   16. WhatsApp Widget
   ========================================================================== */

.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9998;
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.08);
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-label {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
  opacity: 1;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.wa-label.hidden { opacity: 0; }

.wa-popup {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 340px;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  transform-origin: bottom right;
}

.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.wa-header {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.wa-info {
  flex: 1;
}

.wa-info h4 {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.wa-info p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
}

.wa-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

.wa-body {
  padding: 18px 16px;
  min-height: 80px;
}

.wa-bubble {
  background: var(--elev);
  border: 1px solid var(--brd);
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--t1);
  line-height: 1.5;
  max-width: 85%;
}

.wa-time {
  display: block;
  font-size: 0.62rem;
  color: var(--t3);
  text-align: right;
  margin-top: 4px;
}

.wa-footer {
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--brd);
}

.wa-footer input {
  flex: 1;
  padding: 10px 14px;
  background: var(--elev);
  border: 1px solid var(--brd);
  border-radius: 20px;
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.82rem;
  outline: none;
}

.wa-footer input:focus {
  border-color: var(--accent);
}

.wa-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   17. Bookly Dark Overrides
   ========================================================================== */

/* ── Structural fixes (Bookly v27 main CSS absent) ───────────────────────── */

/* ── Calendar: resolve bookly:* Tailwind utilities (bookly-tailwind.css dequeued) ── */

/* Layout */
.bookly-slot-calendar [class~="bookly:flex"]           { display: flex !important; }
.bookly-slot-calendar [class~="bookly:flex-row"]       { flex-direction: row !important; }
.bookly-slot-calendar [class~="bookly:flex-1"]         { flex: 1 1 0% !important; min-width: 0; }
.bookly-slot-calendar [class~="bookly:grow"]           { flex-grow: 1 !important; }
.bookly-slot-calendar [class~="bookly:grow-0"]         { flex-grow: 0 !important; flex-shrink: 0; }
.bookly-slot-calendar [class~="bookly:items-center"]   { align-items: center !important; }
.bookly-slot-calendar [class~="bookly:justify-center"] { justify-content: center !important; }
.bookly-slot-calendar [class~="bookly:relative"]       { position: relative !important; }

/* Controls row inner flex container (< Month > nav) */
.bookly-calendar-controls-mark > div { display: flex !important; width: 100%; align-items: center; }

/* Sizing */
.bookly-slot-calendar [class~="bookly:w-full"]   { width: 100% !important; }
.bookly-slot-calendar [class~="bookly:w-72"]     { width: 18rem !important; }
.bookly-slot-calendar [class~="bookly:max-w-lg"] { max-width: 32rem !important; }
.bookly-slot-calendar [class~="bookly:h-10"]     { height: 2.5rem !important; }

/* Spacing */
.bookly-slot-calendar [class~="bookly:p-0.5"]  { padding: 0.125rem !important; }
.bookly-slot-calendar [class~="bookly:py-2"]   { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.bookly-slot-calendar [class~="bookly:px-0"]   { padding-left: 0 !important; padding-right: 0 !important; }
.bookly-slot-calendar [class~="bookly:mb-0.5"] { margin-bottom: 0.125rem !important; }
.bookly-slot-calendar [class~="bookly:pb-0.5"] { padding-bottom: 0.125rem !important; }

/* Typography */
.bookly-slot-calendar [class~="bookly:text-center"]   { text-align: center !important; }
.bookly-slot-calendar [class~="bookly:leading-normal"] { line-height: 1.5 !important; }
.bookly-slot-calendar [class~="bookly:leading-4"]      { line-height: 1rem !important; }

/* Dark theme — override Tailwind light defaults */
.bookly-slot-calendar [class~="bookly:bg-white"]        { background: var(--card) !important; }
.bookly-slot-calendar [class~="bookly:border"]          { border: 1px solid var(--brd) !important; }
.bookly-slot-calendar [class~="bookly:border-b"]        { border-bottom: 1px solid var(--brd) !important; }
.bookly-slot-calendar [class~="bookly:border-slate-100"]{ border-color: var(--brd) !important; }
.bookly-slot-calendar [class~="bookly:text-muted"]      { color: var(--t2) !important; }
.bookly-slot-calendar [class~="bookly:rounded"]         { border-radius: 0.375rem !important; }
.bookly-slot-calendar [class~="bookly:shadow-none"]     { box-shadow: none !important; }
.bookly-slot-calendar [class~="bookly:border-none"]     { border: none !important; }
.bookly-slot-calendar [class~="bookly:cursor-pointer"]  { cursor: pointer !important; }

/* 1. Progress-tracker: render as a horizontal row of step labels */
.bookly-progress-tracker.bookly-table {
  display: table !important;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 4px;
}

.bookly-progress-tracker.bookly-table > div {
  display: table-cell !important;
  text-align: center;
  padding: 6px 3px 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  overflow: hidden;
}

.bookly-progress-tracker.bookly-table > div.active {
  color: var(--accent);
  font-weight: 600;
}

.bookly-progress-tracker.bookly-table .step {
  display: block;
  height: 2px;
  margin-top: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.bookly-progress-tracker.bookly-table > div.active .step {
  background: var(--accent);
}

/* 2. Stepper OL: remove list counters and hide (progress-tracker covers it) */
ol.bookly-stepper {
  display: none !important;
}

/* 3. Mobile-step-2: Bookly JS sets display:none on step 1, display:block on step 2.
      Do NOT force display:block here — that overrides JS and shows step-2 content on step 1.
      The step-1 Next button lives outside this div and renders correctly on its own. */

/* 4. Replicate critical bookly-main.css rules — that file loads dynamically via Bookly JS/AJAX
      so LiteSpeed may not capture it in the combined CSS. We duplicate the layout rules here
      so the form renders correctly regardless of LiteSpeed cache state. */

/* Bookly JS adds .bookly-none to hide Back button (step 1) and other step-state elements */
.bookly-none {
  display: none !important;
}

/* Modal hidden by default via .bookly-fade; JS adds .bookly-in to show it */
.bookly-fade {
  display: none;
}
.bookly-fade.bookly-in {
  display: block;
}

/* Modal overlay and dialog positioning */
.bookly-modal {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
}
.bookly-modal .bookly-modal-dialog {
  width: 400px;
  position: absolute;
  left: 50%;
  margin-left: -200px;
  top: 100px;
}
.bookly-modal .bookly-modal-content {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--brd2);
  border-radius: 8px;
  outline: 0;
}
.bookly-modal .bookly-modal-header {
  min-height: 16px;
  padding: 15px;
  border-bottom: 1px solid var(--brd);
  color: var(--t1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bookly-modal .bookly-modal-body {
  padding: 15px;
  color: var(--t2);
}
.bookly-modal .bookly-modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid var(--brd);
}
.bookly-modal .bookly-close {
  background: none;
  border: none;
  color: var(--t2);
  font-size: 21px;
  cursor: pointer;
  line-height: 1;
}

/* On desktop, step-1 inline nav is hidden — the main nav (Back/Next) handles navigation */
.bookly-mobile-step-1 .bookly-nav-steps {
  display: none !important;
}

/* Nav layout: Back floats left, Next floats right; overflow:hidden acts as clearfix */
.bookly-back-step {
  float: left !important;
  margin-right: 10px;
}
.bookly-next-step {
  float: right !important;
}
.bookly-nav-steps {
  overflow: hidden;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Step 1: service-selector columns in a flex row ─────────────────────── */
/* Bookly JS renders a div.bookly-table.bookly-box inside .bookly-js-chain containing the form-groups */
.bookly-js-chain .bookly-table {
  display: flex !important;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  table-layout: unset;
  margin-bottom: 12px;
}
.bookly-js-chain .bookly-table > .bookly-form-group {
  flex: 1 1 auto !important;
  display: block !important;
  width: auto !important;
  min-width: 140px;
}
.bookly-js-chain .bookly-table > .bookly-form-group.bookly-chain-actions {
  flex: 0 0 auto !important;
}

/* Column labels — scope to form-group labels only, not status messages */
.bookly-form .bookly-form-group > label,
.bookly-form .bookly-label {
  color: var(--accent) !important;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ── Appearance overrides ────────────────────────────────────────────────── */

.bookly-form .bookly-btn,
.bookly-form button {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  border: none !important;
}

/* ── Time slots — Bookly v27 removed main CSS (bookly.css), no styling for .bookly-hour ── */
/* Scope flex ONLY to the time-screen column, not all .bookly-column (which also wraps nav btns) */
.bookly-time-screen { padding: 8px 0; }
.bookly-time-screen .bookly-column {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}
.bookly-day {
  font-size: 0.8rem;
  color: var(--t2) !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 6px 0 0 !important;
  cursor: default !important;
  white-space: nowrap;
  font-weight: 400 !important;
}
.bookly-form .bookly-hour {
  background: var(--card) !important;
  color: var(--t1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 6px !important;
  padding: 5px 12px !important;
  font-weight: 500 !important;
  font-size: 0.82rem;
  white-space: nowrap;
  cursor: pointer;
}
.bookly-form .bookly-hour:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}

/* ── Navigation row — dark theme border only ── */
/* Bookly CSS handles layout: float:right for Next, float:left for Back, overflow:hidden clearfix.
   Bookly CSS also hides .bookly-mobile-step-1 .bookly-nav-steps on desktop.
   We only add the dark border — do NOT override display or float. */
.bookly-form .bookly-box.bookly-nav-steps {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* ── Customer-profile duplicate indicator ("Data already in use") ── */
.bookly-js-customer-info {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--t2) !important;
}
.bookly-js-customer-info a {
  color: var(--accent) !important;
  text-decoration: none;
  font-weight: 600;
}
.bookly-js-customer-info a:hover {
  text-decoration: underline;
}

.bookly-form input,
.bookly-form select,
.bookly-form textarea {
  background: var(--elev) !important;
  border: 1px solid var(--brd) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
}

.bookly-form input:focus,
.bookly-form select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--glow) !important;
}

.bookly-form .bookly-service-name {
  color: var(--white) !important;
}


/* ── Validation errors — Bookly v27 missing form CSS leaves these unstyled ── */
.bookly-form .bookly-label-error {
  color: #ff4d4d !important;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Highlight the TOS checkbox row when terms error shows */
.bookly-form .bookly-js-terms-error:not(:empty) {
  padding: 8px 12px;
  background: rgba(255, 77, 77, 0.1);
  border-radius: 8px;
  margin-top: 8px;
}

/* Bookly fallback CTA */
.bp-cta {
  margin-top: 16px;
}

/* Event card full-width button */
.ec-btn {
  width: 100%;
  justify-content: center;
}

/* Contact form submit */
.tls-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ==========================================================================
   18. Animations
   ========================================================================== */

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

.rv2 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.rv2.vis {
  opacity: 1;
  transform: translateY(0);
}

/* SVG game icons */
.svg-icon {
  fill: none;
  stroke: rgba(255, 225, 65, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   19. WordPress Defaults
   ========================================================================== */

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.8rem;
  color: var(--t3);
  margin-top: 8px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

/* Generic page content */
.page-content {
  padding: 160px 0 80px;
}

.page-content h1 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 24px;
}

.page-content p,
.page-content li {
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--accent);
}
.page-content a.bg {
  color: var(--bg);
}

.entry-content {
  max-width: 780px;
}

/* Normalize content-area headings; !important overrides Gutenberg inline styles */
.entry-content h2 {
  font-family: var(--fd) !important;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1.25 !important;
  margin: 32px 0 0 !important;
  display: inline !important;
}

/* Adjacent h1 after h2 = split heading (e.g. "Terms" / "& Conditions") — merge to one line */
.entry-content h2 + h1 {
  font-family: var(--fd) !important;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1.25 !important;
  letter-spacing: normal !important;
  flex: unset !important;
  margin: 0 !important;
  display: inline !important;
}

.entry-content h2 + h1::after {
  content: '';
  display: block;
  margin-bottom: 12px;
}

.entry-content h3 {
  font-family: var(--fd) !important;
  font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
  font-weight: 600 !important;
  color: var(--t1) !important;
  line-height: 1.3 !important;
  margin: 24px 0 10px !important;
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--fd) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--t1) !important;
  margin: 20px 0 8px !important;
}

.entry-content p {
  color: var(--t2) !important;
  font-family: var(--fb) !important;
}

/* Archive / search results */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.archive-card {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.archive-card:hover {
  border-color: rgba(255, 225, 65, 0.2);
  transform: translateY(-3px);
}

.archive-card__img {
  height: 200px;
  background: var(--elev);
  overflow: hidden;
}

.archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__body {
  padding: 24px;
}

.archive-card__body h2 {
  font-family: var(--fd);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.archive-card__body h2 a {
  color: var(--white);
  transition: color 0.3s;
}

.archive-card__body h2 a:hover {
  color: var(--accent);
}

.archive-card__meta {
  font-size: 0.75rem;
  color: var(--t3);
  margin-bottom: 12px;
}

.archive-card__excerpt {
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.6;
}

/* ==========================================================================
   20. Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .nk {
    display: none;
  }

  .nt {
    display: block;
  }

  .nk.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(8, 9, 12, 0.97);
    backdrop-filter: blur(24px);
    border: 1px solid var(--brd);
    border-radius: 18px;
    padding: 14px;
    gap: 4px;
  }

  .nk.open a {
    padding: 11px 14px;
  }

  .nd { position: static; }

  .ns {
    display: none;
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 10px;
    padding: 2px 0 2px 12px;
    min-width: auto;
    margin-top: 2px;
  }

  .nd.open .ns {
    display: flex;
    flex-direction: column;
  }

  .ns a {
    font-size: 0.76rem !important;
    padding: 8px 14px !important;
    color: var(--t2) !important;
  }

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

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

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

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

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

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

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

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

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

  .wa-popup {
    width: calc(100vw - 44px);
    right: -10px;
  }
}

@media (max-width: 768px) {
  .hero-vid {
    display: none;
  }

  .hero-vid-wrap {
    background: var(--bg);
  }

  .hero-poster,
  .hero-vid ~ .hero-poster {
    display: block;
  }
}

@media (max-width: 600px) {
  .hg {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

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

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

  .hero h1,
  .hero .h1 {
    font-size: 2.8rem;
  }

  /* Social icons: 26px on mobile */
  .tls-social-icons {
    gap: 12px;
    min-height: 34px;
  }

  .tls-si-a svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   21. Social Media Icons — reusable .tls-social-icons component
   Spec: 36px desktop / 26px mobile, 12–16px gap, scale(1.08) hover,
         brand colour transition, no CLS (reserved min-height).
   ========================================================================== */

/* Container ---------------------------------------------------------------- */
.tls-social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  min-height: 44px; /* CLS prevention */
}

/* Individual link ---------------------------------------------------------- */
.tls-si-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  opacity: .78;
  flex-shrink: 0;
  transition: color .22s var(--ease), transform .22s var(--ease), opacity .22s var(--ease);
  will-change: transform;
  border-radius: 4px;
}

/* SVG icon — desktop 36 × 36 px ------------------------------------------- */
.tls-si-a svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  display: block;
  pointer-events: none;
}

/* Hover & focus ------------------------------------------------------------ */
.tls-si-a:hover,
.tls-si-a:focus-visible {
  color: var(--accent);
  transform: scale(1.08);
  opacity: 1;
}

.tls-si-a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Legacy footer social nav (kept for backwards-compat) -------------------- */
.ft-soc {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  min-height: 40px;
}

.ft-soc-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--t2);
  opacity: .75;
  flex-shrink: 0;
  transition: color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
  will-change: transform;
}

.ft-soc-a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
  pointer-events: none;
}

.ft-soc-a:hover,
.ft-soc-a:focus-visible {
  color: var(--accent);
  transform: scale(1.08);
  opacity: 1;
}

.ft-soc-a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================================
   §18 SERVICE / ACTIVITY PAGES  (.sp-*)
   Used by: page-cricket, page-batting-cages, page-billiards, page-ping-pong,
            page-birthday-parties, page-corporate-events
   ============================================================================= */

/* ── Page wrapper ──────────────────────────────────────────────────── */
.sp-page {
  overflow-x: hidden;
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.sp-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg);
}

/* Accent colour bands per activity */
.sp-hero--cricket    { --sp-accent: #4ade80; }
.sp-hero--batting    { --sp-accent: #60a5fa; }
.sp-hero--billiards  { --sp-accent: #a78bfa; }
.sp-hero--pingpong   { --sp-accent: #fb923c; }
.sp-hero--birthday   { --sp-accent: #f472b6; }
.sp-hero--corporate  { --sp-accent: var(--accent); }

/* Decorative orbs */
.sp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .18;
}
.sho1 {
  width: 480px;
  height: 480px;
  background: var(--sp-accent, var(--accent));
  top: -120px;
  right: -80px;
}
.sho2 {
  width: 320px;
  height: 320px;
  background: var(--accent);
  bottom: -60px;
  left: -60px;
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
}

/* ── Breadcrumb ────────────────────────────────────────────────────── */
.sp-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--t2);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sp-bc a {
  color: var(--t2);
  text-decoration: none;
  transition: color .2s;
}
.sp-bc a:hover { color: var(--accent); }
.sp-bc span[aria-hidden] { color: var(--t3); }

/* ── Hero CTAs ─────────────────────────────────────────────────────── */
.sp-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Badges ────────────────────────────────────────────────────────── */
.sp-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.sp-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: var(--t1);
}
.sp-badge span {
  color: var(--accent);
  font-weight: 700;
}

/* ── 2-column layout ───────────────────────────────────────────────── */
.sp-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Pricing card ──────────────────────────────────────────────────── */
.sp-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 32px;
}
.sp-card-header {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
  color: var(--t2);
}
.sp-price-row:last-of-type { border-bottom: none; }
.sp-price-row strong {
  color: var(--t1);
  font-weight: 600;
}

/* ── Feature list ──────────────────────────────────────────────────── */
.sp-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-list li {
  padding-left: 22px;
  position: relative;
  font-size: .92rem;
  color: var(--t2);
  line-height: 1.5;
}
.sp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── 6-tile grid ───────────────────────────────────────────────────── */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.sp-tile {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.sp-tile:hover {
  border-color: rgba(255,225,65,.25);
  transform: translateY(-2px);
}
.sp-tile h4 {
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 8px;
}
.sp-tile p {
  font-size: .85rem;
  color: var(--t2);
  line-height: 1.55;
  margin: 0;
}

/* ── 3-column "What's Included" cards (birthday) ───────────────────── */
.sp-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sp-inc-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 28px;
}
.sp-inc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.sp-inc-icon svg {
  width: 100%;
  height: 100%;
}
.sp-inc-card h3 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 12px;
}

/* ── Why grid (2×2 or 2×3) ─────────────────────────────────────────── */
.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.sp-why h4 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 8px;
}
.sp-why p {
  font-size: .88rem;
  color: var(--t2);
  line-height: 1.6;
  margin: 0;
}

/* ── Steps (corporate How It Works) ────────────────────────────────── */
.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.sp-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.sp-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-step h3 {
  font-family: var(--fb);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t1);
  margin: 0 0 8px;
}
.sp-step p {
  font-size: .9rem;
  color: var(--t2);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ───────────────────────────────────────────────────────────── */
.sp-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  max-width: 800px;
}
.sp-faq-item {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.sp-faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sp-faq-item h3 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  margin: 0 0 10px;
}
.sp-faq-item p {
  font-size: .88rem;
  color: var(--t2);
  line-height: 1.65;
  margin: 0;
}

/* ── SEO prose block ───────────────────────────────────────────────── */
.sp-seo-block {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sp-seo-block h2 {
  font-family: var(--fd);
  font-size: 1.1rem !important;
  color: var(--t2) !important;
  font-weight: 400 !important;
  margin-bottom: 12px;
}
.sp-seo-block p {
  font-size: .85rem;
  color: var(--t3);
  line-height: 1.65;
  max-width: 760px;
  margin-bottom: 8px;
}

/* Last updated badge */
.sp-updated {
  padding: 16px 0 24px;
  text-align: right;
}
.sp-updated p {
  font-size: .75rem;
  color: var(--t3);
  opacity: .6;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sp-grid  { grid-template-columns: repeat(2, 1fr); }
  .sp-3col  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 110px 0 60px;
  }
  .sp-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sp-grid {
    grid-template-columns: 1fr;
  }
  .sp-3col {
    grid-template-columns: 1fr;
  }
  .sp-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sp-hero-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .sp-step {
    gap: 16px;
  }
}
