/* ══════════════════════════════════════════════════
   LET'S GO JAIPUR — Premium Dark Theme
   Purple #6B2FD9 · Gold #F5C200 · Deep Night BG
══════════════════════════════════════════════════ */

/* ── BASE RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #07050F;
}

/* ── TOKENS ── */
:root {
  --bg: #07050F;
  --bg2: #0D0818;
  --bg3: #130D22;
  --bg-card: #0F0A1E;
  --purple: #6B2FD9;
  --purple-l: #8B4FFF;
  --purple-d: #3D1A8C;
  --purple-xl: #A97BFF;
  --gold: #F5C200;
  --gold-l: #FFD740;
  --gold-d: #C49A00;
  --white: #FFFFFF;
  --w80: rgba(255, 255, 255, 0.80);
  --w50: rgba(255, 255, 255, 0.50);
  --w20: rgba(255, 255, 255, 0.12);
  --w08: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.07);
  --border-p: rgba(107, 47, 217, 0.40);
  --border-g: rgba(245, 194, 0, 0.30);
  --text: #FFFFFF;
  --text-sub: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.38);
  --hero-glow1: rgba(107, 47, 217, 0.35);
  --hero-glow2: rgba(245, 194, 0, 0.14);
  --nav-bg: rgba(7, 5, 15, 0.92);

  /* Glow shadows */
  --glow-p: 0 0 20px rgba(107, 47, 217, 0.60), 0 0 60px rgba(107, 47, 217, 0.25);
  --glow-g: 0 0 20px rgba(245, 194, 0, 0.60), 0 0 60px rgba(245, 194, 0, 0.22);
  --glow-p-sm: 0 0 10px rgba(107, 47, 217, 0.50), 0 0 30px rgba(107, 47, 217, 0.20);
  --glow-g-sm: 0 0 10px rgba(245, 194, 0, 0.50), 0 0 30px rgba(245, 194, 0, 0.18);

  /* Card gradient border trick */
  --card-shine: linear-gradient(135deg, rgba(107, 47, 217, 0.12) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(245, 194, 0, 0.06) 100%);

  --stats-bg: linear-gradient(135deg, #5A20C8 0%, #3D1A8C 100%);
  --marquee-bg: #0D0818;
  --cta-bg: linear-gradient(135deg, rgba(107, 47, 217, 0.14), rgba(245, 194, 0, 0.06));
  --footer-bg: #060410;
  --section-alt: #0D0818;
  --pill-bg: rgba(107, 47, 217, 0.14);
  --pill-border: rgba(139, 79, 255, 0.45);
  --pill-text: #C589FF;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 2px;
  box-shadow: var(--glow-p-sm)
}

/* ── GLOBAL AMBIENT GLOW ── */
body::after {
  content: '';
  pointer-events: none;
  position: fixed;
  top: -30vh;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 60vh;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(107, 47, 217, 0.10) 0%, transparent 70%);
}

/* ══════════════════════
   NAVIGATION
══════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(107, 47, 217, 0.18);
  background: var(--nav-bg);
  backdrop-filter: blur(28px) saturate(180%);
  transition: all 0.3s;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 79, 255, 0.5) 30%, rgba(245, 194, 0, 0.4) 70%, transparent);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--text)
}

.nav-logo-text em {
  font-style: normal;
  color: var(--purple-l)
}

.nav-logo-badge {
  background: linear-gradient(135deg, var(--purple), var(--purple-d));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(107, 47, 217, 0.50);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple-l);
  transform: scaleX(0);
  transition: transform 0.25s;
  box-shadow: var(--glow-p-sm);
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-links .has-dropdown {
  position: relative
}

.nav-links .has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13, 8, 24, 0.96);
  border: 1px solid var(--border-p);
  border-radius: 18px;
  padding: 10px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s;
  z-index: 200;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(107, 47, 217, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: all 0.15s;
  letter-spacing: 0.01em;
}

.nav-dropdown a:hover {
  background: rgba(107, 47, 217, 0.14);
  color: #fff
}

.nav-dropdown a span {
  font-size: 16px
}

.nav-cta {
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 18px rgba(107, 47, 217, 0.55), 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.25s;
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(107, 47, 217, 0.75), 0 4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

/* ── PAGES ── */
.page {
  display: none;
  min-height: 100vh;
  background: var(--bg)
}

.page.active {
  display: block
}

/* ═══════════════════
   PILL / CHIP
═══════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  box-shadow: 0 0 14px rgba(107, 47, 217, 0.18);
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: var(--glow-g-sm)
}

/* ═══════════════════
   BUTTONS
═══════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--purple-l) 0%, var(--purple) 100%);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(107, 47, 217, 0.50), 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(107, 47, 217, 0.70), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover::before {
  opacity: 1
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(139, 79, 255, 0.60);
  color: #fff;
  box-shadow: 0 0 18px rgba(107, 47, 217, 0.20)
}

/* ═══════════════════
   SECTION COMMON
═══════════════════ */
section {
  padding: 100px 60px;
  background: var(--bg)
}

section.alt {
  background: var(--section-alt)
}

.s-header {
  margin-bottom: 58px
}

.s-header.center {
  text-align: center
}

.s-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--text);
}

.s-h2 em {
  font-style: normal;
  color: var(--purple-l);
  text-shadow: var(--glow-p-sm)
}

.s-h2 mark {
  background: none;
  color: var(--gold);
  text-shadow: var(--glow-g-sm)
}

.s-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-sub);
  max-width: 520px;
  margin-top: 18px;
  line-height: 1.72
}

.s-header.center .s-sub {
  margin: 18px auto 0
}

/* ═══════════════════
   PAGE HERO
═══════════════════ */
.page-hero {
  min-height: 52vh;
  padding: 144px 60px 90px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Subtle dot grid */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(107, 47, 217, 0.20) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Main purple orb */
.page-hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107, 47, 217, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

/* Gold accent orb */
.page-hero .hero-gold-orb {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 194, 0, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px
}

.page-hero-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block
}

.page-hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold);
  text-shadow: var(--glow-g-sm);
  margin-bottom: 18px;
}

.page-hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(66px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 28px;
}

.page-hero-h1 em {
  font-style: normal;
  color: var(--purple-l);
  text-shadow: var(--glow-p)
}

.page-hero-h1 mark {
  background: none;
  color: var(--gold);
  text-shadow: var(--glow-g)
}

.page-hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.70;
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

/* Activities hero — two-column with video thumbnail */
#page-activities .page-hero {
  gap: 56px
}

#page-activities .page-hero-content {
  max-width: 640px;
  flex: 1 1 480px
}

.hero-video {
  position: relative;
  z-index: 1;
  flex: 1 1 560px;
  max-width: 620px;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(139, 79, 255, 0.22);
  background: linear-gradient(135deg, #1a1030, #0d0818);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(107, 47, 217, 0.18);
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.hero-video .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  border-radius: 50%;
  box-shadow: 0 10px 34px rgba(107, 47, 217, 0.6);
  transition: transform .25s ease;
}

.hero-video:hover .play-btn {
  transform: scale(1.08)
}

.hero-video .play-btn::after {
  content: '';
  margin-left: 5px;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}

@media(max-width:900px) {
  #page-activities .page-hero {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-video {
    max-width: 100%;
    flex-basis: auto
  }
}

/* ═══════════════════
   STATS BAR
═══════════════════ */
.stats-bar {
  background: var(--stats-bg);
  padding: 24px 60px;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, transparent 60%);
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 194, 0, 0.5), transparent);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}

.stat-item .lbl {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 4px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

.stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18)
}

/* ═══════════════════
   MARQUEE
═══════════════════ */
.marquee-wrap {
  background: var(--marquee-bg);
  border-top: 1px solid rgba(107, 47, 217, 0.20);
  border-bottom: 1px solid rgba(107, 47, 217, 0.20);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--marquee-bg), transparent)
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--marquee-bg), transparent)
}

.marquee-inner {
  display: flex;
  animation: marquee 34s linear infinite;
  white-space: nowrap
}

.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.30);
}

.marq-item:nth-child(odd) .marq-dot {
  background: var(--purple-l);
  box-shadow: 0 0 6px rgba(139, 79, 255, 0.7)
}

.marq-item:nth-child(even) .marq-dot {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(245, 194, 0, 0.7)
}

.marq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══════════════════
   ACTIVITY CARDS
═══════════════════ */
.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-p);
  border-radius: 22px;
  overflow: hidden
}

.act-card {
  background: var(--bg-card);
  padding: 32px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.28s;
}

.act-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 30% 40%, rgba(107, 47, 217, 0.14), transparent 65%);
  transition: opacity 0.28s;
}

.act-card:hover {
  background: #130f24
}

.act-card:hover::before {
  opacity: 1
}

.act-card:hover .act-arrow {
  opacity: 1;
  transform: translate(0, 0)
}

.act-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: block
}

.act-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 9px;
}

.act-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.58
}

.act-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 194, 0, 0.10);
  border: 1px solid rgba(245, 194, 0, 0.28);
  padding: 3px 11px;
  border-radius: 100px;
  margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
}

.act-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(6px, -6px);
  transition: all 0.25s;
  box-shadow: 0 0 14px rgba(107, 47, 217, 0.60);
}

.act-arrow svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ═══════════════════
   ACTIVITY DETAIL CARDS
═══════════════════ */
.act-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.act-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.28s;
  position: relative;
}

.act-detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-shine);
  pointer-events: none;
  z-index: 0;
}

.act-detail-card:hover {
  border-color: rgba(107, 47, 217, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(107, 47, 217, 0.20);
}

.act-detail-img-full {
  /* position: absolute;
      inset: 0; */
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover;
      z-index: 0; */
}

.act-detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(107, 47, 217, 0.20) 0%, transparent 60%);
}

.act-detail-body {
  padding: 26px 28px 30px;
  position: relative;
  z-index: 1
}

.act-detail-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  text-shadow: var(--glow-g-sm);
}

.act-detail-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}

.act-detail-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.68;
  margin-bottom: 20px
}

.act-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px
}

.act-feat-chip {
  font-size: 10px;
  font-weight: 700;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.act-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-xl);
  letter-spacing: 0.10em;
  font-family: 'Barlow Condensed', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}

.act-detail-link:hover {
  gap: 14px;
  color: var(--gold)
}

/* ═══════════════════
   PACKAGES
═══════════════════ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.pkg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
  background-image: var(--card-shine);
}

.pkg:hover {
  border-color: var(--border-p);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.pkg.featured {
  border-color: rgba(107, 47, 217, 0.55);
  background: #110D20;
  background-image: linear-gradient(160deg, rgba(107, 47, 217, 0.14) 0%, rgba(107, 47, 217, 0.04) 60%, rgba(245, 194, 0, 0.04) 100%);
  box-shadow: 0 0 0 1px rgba(107, 47, 217, 0.20), 0 20px 60px rgba(0, 0, 0, 0.45);
}

.pkg.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 0 12px rgba(245, 194, 0, 0.45);
}

.pkg-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-shadow: var(--glow-g-sm);
}

.pkg-old {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px
}

.pkg-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px
}

.pkg-sym {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.pkg-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.pkg-save {
  font-size: 11px;
  color: #4ade80;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pkg-hr {
  height: 1px;
  background: var(--border);
  margin: 22px 0
}

.pkg-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px
}

.pkg-items li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 10px
}

.pkg-items li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(107, 47, 217, 0.18);
  border: 1px solid rgba(139, 79, 255, 0.40);
  color: var(--purple-xl);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-btn {
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.pkg-btn.solid {
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  color: #fff;
  box-shadow: 0 0 18px rgba(107, 47, 217, 0.50);
}

.pkg-btn.solid:hover {
  box-shadow: 0 0 30px rgba(107, 47, 217, 0.70);
  transform: translateY(-1px)
}

.pkg-btn.outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
}

.pkg-btn.outline:hover {
  border-color: var(--border-p);
  color: var(--white)
}

/* ═══════════════════
   PARTY CARDS
═══════════════════ */
.party-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.party-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.28s;
  background-image: var(--card-shine);
}

.party-card:hover {
  border-color: var(--border-p);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(107, 47, 217, 0.18);
}

.party-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  background: var(--bg3);
  overflow: hidden;
}

.party-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(107, 47, 217, 0.22) 0%, transparent 65%);
}

.party-body {
  padding: 24px 26px 28px
}

.party-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 7px;
}

.party-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.58
}

.party-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px
}

.party-perk {
  font-size: 10px;
  font-weight: 700;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.party-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
}

.party-card:hover .party-cta {
  gap: 12px;
  color: var(--gold)
}

/* ═══════════════════
   ABOUT
═══════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.about-left {
  position: relative
}

.about-card-main {
  border-radius: 24px;
  border: 1px solid rgba(107, 47, 217, 0.35);
  background: var(--bg3);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 80px;
  box-shadow: 0 0 0 1px rgba(107, 47, 217, 0.10), inset 0 0 80px rgba(107, 47, 217, 0.07);
}

.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(107, 47, 217, 0.22), transparent 65%);
}

.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg2);
  border: 1px solid rgba(245, 194, 0, 0.35);
  border-radius: 20px;
  padding: 22px 28px;
  box-shadow: 0 0 30px rgba(245, 194, 0, 0.18), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.float-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: var(--glow-g);
}

.float-lbl {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-right p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 15px
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub)
}

.feat-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(107, 47, 217, 0.18);
  border: 1px solid var(--border-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--purple-xl);
  font-weight: 700;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px
}

.ab-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  background-image: var(--card-shine);
  transition: border-color 0.2s;
}

.ab-stat:hover {
  border-color: var(--border-p)
}

.ab-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: var(--glow-g-sm);
}

.ab-stat-lbl {
  font-size: 10px;
  color: var(--text-dim);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════
   TEAM GRID
═══════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  transition: all 0.25s;
  background-image: var(--card-shine);
}

.team-card:hover {
  border-color: var(--border-p);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4)
}

.team-avatar {
  height: 180px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(107, 47, 217, 0.30) 100%)
}

.team-body {
  padding: 18px 16px 22px
}

.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px
}

.team-role {
  font-size: 10px;
  color: var(--text-dim);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase
}

/* ═══════════════════
   WHY US
═══════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.why-cards-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  transition: all 0.25s;
  background-image: var(--card-shine);
}

.why-card:hover {
  border-color: var(--border-p);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35)
}

.why-icon {
  font-size: 32px;
  margin-bottom: 14px
}

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px
}

.why-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.58
}

.why-big {
  margin-top: 40px
}

.why-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  font-weight: 400;
  color: var(--purple-l);
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: var(--glow-p);
}

.why-big-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-sub);
  margin-top: 10px
}

/* ═══════════════════
   TESTIMONIALS
═══════════════════ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  transition: all 0.25s;
  background-image: var(--card-shine);
}

.review-card:hover {
  border-color: rgba(245, 194, 0, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35)
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px
}

.star {
  color: var(--gold);
  font-size: 14px;
  text-shadow: 0 0 8px rgba(245, 194, 0, 0.55)
}

.review-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.70;
  margin-bottom: 20px;
  font-style: italic
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-l), var(--purple-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px rgba(107, 47, 217, 0.45);
}

.rev-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text)
}

.rev-role {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase
}

/* ═══════════════════
   INFO BLOCKS
═══════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  background-image: var(--card-shine);
}

.info-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border)
}

.info-item:last-child {
  border-bottom: none
}

.info-item-icon {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0
}

.info-item-label {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700
}

.info-item-val {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.55
}

/* ═══════════════════
   SAFETY / POOL
═══════════════════ */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px
}

.safety-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  background-image: var(--card-shine);
  transition: border-color 0.2s;
}

.safety-item:hover {
  border-color: var(--border-p)
}

.safety-icon {
  font-size: 28px;
  margin-bottom: 10px
}

.safety-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 4px
}

.safety-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.55
}

/* ═══════════════════
   PRICING TABLE
═══════════════════ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px
}

.price-table th {
  text-align: left;
  padding: 13px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif
}

.price-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-sub);
  border-bottom: 1px solid var(--border)
}

.price-table tr:last-child td {
  border-bottom: none
}

.price-table tr:hover td {
  background: rgba(107, 47, 217, 0.04)
}

.price-table .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-shadow: var(--glow-g-sm)
}

/* ═══════════════════
   GALLERY
═══════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 190px 190px;
  gap: 12px
}

.gal-item {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s;
}

.gal-item:hover {
  border-color: var(--border-p);
  box-shadow: 0 0 20px rgba(107, 47, 217, 0.20)
}

.gal-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2
}

.gal-item:nth-child(5) {
  grid-column: span 2
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s
}

.gal-item:hover .gal-overlay {
  opacity: 1
}

/* ═══════════════════
   CTA BAND
═══════════════════ */
.cta-band {
  background: var(--cta-bg);
  border-top: 1px solid var(--border-p);
  border-bottom: 1px solid var(--border-p);
  text-align: center;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(107, 47, 217, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-band .s-h2 {
  max-width: 620px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1
}

.cta-band .s-sub {
  margin: 0 auto 40px;
  position: relative;
  z-index: 1
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1
}

/* ═══════════════════
   FOOTER
═══════════════════ */
footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(107, 47, 217, 0.18);
  padding: 64px 60px 38px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 79, 255, 0.50) 30%, rgba(245, 194, 0, 0.35) 70%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px
}

.f-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 12px
}

.f-brand em {
  font-style: normal;
  color: var(--purple-l);
  text-shadow: var(--glow-p-sm)
}

.f-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.68;
  margin-bottom: 22px
}

.f-socials {
  display: flex;
  gap: 8px
}

.f-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.40);
  text-decoration: none;
  transition: all 0.22s;
}

.f-soc:hover {
  border-color: var(--purple-l);
  background: rgba(107, 47, 217, 0.18);
  color: #fff;
  box-shadow: 0 0 14px rgba(107, 47, 217, 0.35)
}

.f-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer
}

.f-links a:hover {
  color: rgba(255, 255, 255, 0.88)
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22)
}

.f-made {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18)
}

.f-made span {
  color: var(--purple-l);
  opacity: 0.75
}

/* ═══════════════════
   MISC COMPONENTS
═══════════════════ */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0 60px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px
}

.breadcrumb span {
  font-size: 12px;
  color: var(--text-dim)
}

.breadcrumb a {
  font-size: 12px;
  color: var(--purple-xl);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s
}

.breadcrumb a:hover {
  color: var(--white)
}

.highlight-box {
  background: linear-gradient(135deg, rgba(107, 47, 217, 0.12), rgba(245, 194, 0, 0.05));
  border: 1px solid var(--border-p);
  border-radius: 22px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: inset 0 0 40px rgba(107, 47, 217, 0.05);
}

.highlight-box-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px
}

.highlight-box p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.68
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0
}

.tl-item {
  display: flex;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  position: relative
}

.tl-item:last-child {
  border-bottom: none
}

.tl-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: rgba(107, 47, 217, 0.30);
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  margin-top: 4px;
}

.tl-body {}

.tl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px
}

.tl-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.65
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px
}

.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
  background-image: var(--card-shine);
}

.contact-item:hover {
  border-color: var(--border-p);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3)
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 12px
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: 'Barlow Condensed', sans-serif
}

.contact-val {
  font-size: 14px;
  color: var(--text-sub)
}

/* ═══════════════════
   HOVER CURSOR GLOW (act-cards)
═══════════════════ */
.act-card {
  cursor: pointer
}


/* ══════════════════════════════════════════
   AGE PACKAGE CARDS — 5-col compact
══════════════════════════════════════════ */
.apk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.apk {
  border-radius: 16px;
  padding: 16px 13px 13px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.apk-purple {
  background: linear-gradient(145deg, #7B2FBE, #9845E0)
}

.apk-green {
  background: linear-gradient(145deg, #2E9E35, #4DC44A)
}

.apk-orange {
  background: linear-gradient(145deg, #D83A0E, #F05A28)
}

.apk-blue {
  background: linear-gradient(145deg, #1E45B8, #3060D8)
}

.apk-gold {
  background: linear-gradient(145deg, #B38800, #D4A800)
}

.apk-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 2px 8px;
  border-radius: 100px;
}

.apk-age {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.88;
  color: #fff;
  margin-bottom: 2px;
}

.apk-age span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 1;
  margin-bottom: 11px;
}

.apk-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-bottom: 11px;
  align-content: start;
}

.apk-row {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  padding: 7px 9px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.apk-icon {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.3
}

.apk-row b {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}

.apk-row p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  margin: 0;
}

.apk-btn {
  width: 100%;
  padding: 11px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-top: auto;
}

.apk-btn:hover {
  background: rgba(0, 0, 0, 0.42)
}

@media(max-width:1100px) {
  .apk-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:700px) {
  .apk-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:460px) {
  .apk-grid {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════════════════
   MOBILE NAV HAMBURGER
══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(7, 5, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 90px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open {
  transform: translateX(0)
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.mobile-nav-close:hover {
  background: rgba(107, 47, 217, 0.18);
  border-color: var(--purple-l);
  color: #fff;
  box-shadow: 0 0 14px rgba(107, 47, 217, 0.4);
}

.mobile-nav-section {
  margin-bottom: 32px
}

.mobile-nav-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(107, 47, 217, 0.20);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
  font-family: 'Barlow', sans-serif;
}

.mobile-nav-link:hover {
  color: #fff
}

.mobile-nav-link span {
  font-size: 20px;
  width: 28px;
  flex-shrink: 0
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(107, 47, 217, 0.50);
  margin-top: 24px;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width:1024px) {
  nav {
    padding: 0 32px
  }

  section {
    padding: 80px 32px
  }

  .page-hero {
    padding: 120px 32px 70px
  }

  .stats-bar {
    padding: 20px 32px
  }

  footer {
    padding: 56px 32px 32px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

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

  .act-detail-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

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

  .about-grid {
    gap: 50px
  }

  .why-grid {
    gap: 48px
  }

  .contact-row {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .about-stats-row {
    grid-template-columns: repeat(3, 1fr) !important
  }
}

/* ── MOBILE (max 768px) ── */
@media (max-width:768px) {

  /* Nav — hide links, show hamburger */
  nav {
    padding: 0 20px;
    height: 64px
  }

  .nav-links {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  .mobile-nav-drawer {
    display: block
  }

  .nav-logo img {
    height: 55px
  }

  .nav-cta {
    display: none
  }

  /* Hero */
  .page-hero {
    padding: 100px 20px 56px;
    min-height: auto
  }

  .page-hero-h1 {
    font-size: clamp(48px, 12vw, 80px);
    line-height: 0.90
  }

  .page-hero-sub {
    font-size: 15px
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Stats bar */
  .stats-bar {
    padding: 20px 20px
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
    justify-items: center;
  }

  .stat-div {
    display: none
  }

  .stat-item .num {
    font-size: 28px
  }

  .stat-item .lbl {
    font-size: 9px
  }

  /* Sections */
  section {
    padding: 56px 20px
  }

  .s-h2 {
    font-size: clamp(40px, 10vw, 60px)
  }

  .s-sub {
    font-size: 15px
  }

  /* Activity grid — 1 col on mobile */
  .act-grid {
    grid-template-columns: 1fr;
    gap: 1px
  }

  .act-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .act-detail-img {
    height: 160px
  }

  /* Packages — 1 col */
  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .pkg-num {
    font-size: 52px !important
  }

  /* Party cards — 1 col */
  .party-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .party-img {
    height: 160px
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-card-main {
    aspect-ratio: 16/9;
    font-size: 60px
  }

  .about-float {
    bottom: -16px;
    right: -8px;
    padding: 16px 18px
  }

  .float-num {
    font-size: 36px
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px
  }

  .ab-stat-num {
    font-size: 30px
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .why-cards-2x2 {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .why-big-num {
    font-size: 70px
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  /* Reviews */
  .review-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  /* Info grid */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  /* Safety grid */
  .safety-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px
  }

  /* Contact */
  .contact-row {
    grid-template-columns: 1fr;
    gap: 12px
  }

  /* Footer */
  footer {
    padding: 48px 20px 28px
  }

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

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

  /* CTA band */
  .cta-band {
    padding: 60px 20px
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Breadcrumb */
  .breadcrumb {
    flex-wrap: wrap
  }

  /* Tables — scroll on mobile */
  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  /* Marquee */
  .marquee-wrap::before,
  .marquee-wrap::after {
    width: 40px
  }

  /* Pill */
  .pill {
    font-size: 9px;
    padding: 4px 14px
  }

  /* Highlight box */
  .highlight-box {
    padding: 22px 20px
  }

  /* Timeline */
  .tl-item {
    gap: 16px
  }

  .tl-num {
    font-size: 40px;
    width: 44px
  }

  /* Info block standalone */
  .info-block {
    padding: 22px 18px
  }
}

/* ── SMALL MOBILE (max 420px) ── */
@media (max-width:420px) {
  .page-hero-h1 {
    font-size: 42px
  }

  .s-h2 {
    font-size: 36px
  }

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

  .about-stats-row {
    grid-template-columns: 1fr 1fr !important
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr
  }

  .stat-item .num {
    font-size: 22px
  }
}

/* ── AGE-WISE ACTIVITIES (School) ── */
.age-list {
  display: flex;
  flex-direction: column
}

.age-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  padding: 30px 26px;
  border-top: 1px solid var(--border);
  border-radius: 16px;
  transition: background 0.28s, box-shadow 0.28s, transform 0.28s;
}

.age-row:last-child {
  border-bottom: 1px solid var(--border)
}

.age-row:hover {
  background: #130f24;
  box-shadow: inset 0 0 44px rgba(107, 47, 217, 0.10), 0 0 0 1px var(--border-p);
  transform: translateX(4px)
}

.age-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.03em;
  color: var(--purple-l);
  text-shadow: var(--glow-p-sm);
  line-height: 1
}

.age-row-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 6px
}

.age-row-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6
}

/* ── SPECIAL SCHOOL OFFER ── */
.offer {
  background: linear-gradient(135deg, rgba(107, 47, 217, 0.13), rgba(245, 194, 0, 0.05));
  border: 1px solid var(--border-p);
  border-radius: 24px;
  padding: 40px;
  box-shadow: inset 0 0 60px rgba(107, 47, 217, 0.06)
}

.offer-head {
  text-align: center;
  margin-bottom: 30px
}

.offer-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Barlow Condensed', sans-serif
}

.offer-price .cur {
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: var(--glow-g-sm)
}

.offer-price .amt {
  font-size: 68px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: var(--glow-g);
  line-height: 1
}

.offer-price .per {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  margin-left: 8px
}

.offer-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px
}

.offer-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-l);
  background: rgba(245, 194, 0, 0.08);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  padding: 7px 16px
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.offer-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  transition: background 0.28s, border-color 0.28s, box-shadow 0.28s
}

.offer-col:hover {
  background: #130f24;
  border-color: var(--border-p);
  box-shadow: inset 0 0 40px rgba(107, 47, 217, 0.08)
}

.offer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pill-text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px
}

.offer-act {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px
}

.offer-act span {
  font-size: 13.5px;
  color: var(--text-sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--w08);
  display: flex;
  align-items: center;
  gap: 8px
}

.offer-act span::before {
  content: '▹';
  color: var(--purple-l);
  font-size: 13px;
  flex-shrink: 0
}

.offer-food {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.offer-food li {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.55;
  padding-left: 22px;
  position: relative
}

.offer-food li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700
}

.offer-food li b {
  color: var(--text);
  font-weight: 700
}

.offer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px
}

@media(max-width:760px) {
  .age-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 16px
  }

  .age-tag {
    font-size: 26px
  }

  .offer {
    padding: 24px 18px
  }

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

  .offer-price .amt {
    font-size: 54px
  }
}

@media(max-width:430px) {
  .offer-act {
    grid-template-columns: 1fr
  }
}

/* ── CONTACT (redesigned) ── */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px
}

.reach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden
}

.reach-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(107, 47, 217, 0.18), transparent 62%);
  transition: opacity 0.28s
}

.reach-card:hover {
  border-color: var(--border-p);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45)
}

.reach-card:hover::before {
  opacity: 1
}

.reach-ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--purple-l), var(--purple-d));
  box-shadow: 0 0 22px rgba(107, 47, 217, 0.45);
  position: relative;
  z-index: 1
}

.reach-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 6px;
  position: relative;
  z-index: 1
}

.reach-val {
  font-size: 13.5px;
  color: var(--text-sub);
  position: relative;
  z-index: 1
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start
}

.form-card,
.visit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  background-image: var(--card-shine)
}

.cf-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px
}

.cf-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pill-border);
  box-shadow: 0 0 0 3px rgba(107, 47, 217, 0.18)
}

.field textarea {
  resize: vertical;
  min-height: 112px
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--purple-l) 50%), linear-gradient(135deg, var(--purple-l) 50%, transparent 50%);
  background-position: calc(100% - 20px) 20px, calc(100% - 15px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat
}

.visit-addr {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 6px 0 22px
}

.visit-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.visit-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 230px
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05)
}

@media(max-width:900px) {
  .reach-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-split {
    grid-template-columns: 1fr
  }
}

@media(max-width:460px) {
  .reach-grid {
    grid-template-columns: 1fr
  }

  .form-card,
  .visit-card {
    padding: 24px 20px
  }
}

/* ── FLOATING WHATSAPP BUTTON (mobile) ── */
.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.50);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.70)
}

@media (max-width:768px) {
  .wa-float {
    display: flex
  }
}


@media (max-width: 768px) {

  .stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .stat-div {
    display: none;
  }

  .stat-item {
    width: calc(50% - 10px);
    text-align: center;
  }

  /* 5th item (Operating Hours) */
  .stat-item:nth-child(9) {
    width: 100%;
    text-align: center;
  }
}