:root {
  --orange: #ee7b36;
  --blue: #7b3fc2; 
  --blue-light: #a363d9;
  --blue-dark: #1a0b2e;
  --purple: #7b3fc2;
  --purple-light: #a363d9;
  --purple-dark: #ffffff; /* Changed to white */
  --black: #000000;
  --dark-grey: #f8f9fa; /* Changed to light grey */
  --grey: #555555; /* Darkened for white background */
  --white: #ffffff;
  --off-white: #f4f5f7; /* Changed to light greyish blue */
  --light-purple: rgba(123, 63, 194, 0.05);
}


/* ========== GLOBALS ========== */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--blue-light), var(--orange)); border-radius: 6px; border: 3px solid var(--off-white); }
::selection { background: rgba(238,123,54,0.3); color: var(--white); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
input, select, textarea, button { font-family: inherit; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--blue-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Eliminate tap-delay on iOS/Android and enforce instant interaction */
a, button, select, input, .float-btn, .chat-btn {
  touch-action: manipulation;
}

/* Ensure no image overflows its grid/card bounds on mobile devices */
img {
  max-width: 100%;
  height: auto;
}

/* ========== NAVBAR & DYNAMIC SPRING TRANSITION ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Buttery smooth transitions for size changes */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  height: 80px;
}
#navbar:hover {
  padding: 24px 60px; /* Expands slightly when touched/hovered at the top */
}
#navbar.scrolled {
  top: 15px;
  width: 92%;
  max-width: 1200px;
  height: 56px;
  background: rgba(26, 11, 46, 0.82); /* Dark purple glassmorphic pill */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 50px;
  padding: 8px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(123, 63, 194, 0.12);
  justify-content: space-between;
}
#navbar.scrolled:hover {
  top: 15px;
  width: 95%;
  max-width: 1240px;
  height: 64px; /* Grows slightly bigger on hover! */
  padding: 12px 40px;
  background: rgba(26, 11, 46, 0.92);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35), 0 0 25px rgba(123, 63, 194, 0.2);
}
#navbar.scrolled .nav-links {
  gap: clamp(8px, 1.2vw, 18px);
}
#navbar.scrolled .nav-logo img {
  height: 50px !important;
  transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
#navbar.scrolled:hover .nav-logo img {
  height: 56px !important;
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.82rem, 1vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px; /* Premium fully rounded pill buttons */
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(238, 123, 54, 0.2);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238, 123, 54, 0.4);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
/* ========== MOBILE DRAWER MENU & BACKDROP ========== */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 5, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
}
.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: -320px; /* Hidden offscreen */
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #100a26 0%, #1e1145 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.5);
  padding: 40px 32px;
  z-index: 1003;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
  right: 0; /* Slide in drawer */
}
.mobile-menu-close {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.mobile-menu-close:hover {
  background: rgba(255, 153, 0, 0.2);
  color: var(--orange);
  border-color: rgba(255, 153, 0, 0.4);
  transform: rotate(90deg);
}
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-menu a:hover {
  color: var(--orange);
  padding-left: 8px;
}
.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
}

/* ========== HERO SLIDER ========== */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-slides {
  position: absolute; inset: 0;
  display: flex; transition: none;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.65) 100%);
  background-size: 200% 200%;
  animation: gradientFlow 12s ease infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; 
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { 
  opacity: 1; 
}

.slide-1 { background-image: url('picture/WhatsApp%20Image%202026-06-28%20at%2014.51.56.jpeg'); }
.slide-2 { background-image: url('picture/WhatsApp%20Image%202026-06-28%20at%2014.51.56%20(1).jpeg'); }
.slide-3 { background-image: url('picture/WhatsApp%20Image%202026-06-28%20at%2014.51.56%20(2).jpeg'); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 900px; margin: 0 auto; padding: 0 40px;
  text-align: center; width: 100%;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(238,123,54,0.15); border: 1px solid rgba(238,123,54,0.4);
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 900;
  color: var(--white); line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -3px; text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-h1 span { background: linear-gradient(135deg, var(--orange), #ff4e50); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--white);
  max-width: 720px; margin: 0 auto 40px; line-height: 1.75; font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-bullets {
  list-style: none;
  padding: 0;
  width: fit-content;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-bullets li {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--white);
  font-weight: 700; /* Bold */
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-bullets li::before {
  content: '•';
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #f5a26b); color: var(--white);
  padding: 16px 36px; border-radius: 12px; font-weight: 800;
  font-size: 1.05rem; text-decoration: none; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.4); cursor: pointer; font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 24px rgba(238,123,54,0.25);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 30px rgba(238,123,54,0.25); border-color: rgba(255,255,255,0.8); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  background: rgba(123, 63, 194, 0.05); color: var(--blue);
  padding: 16px 36px; border-radius: 12px; font-weight: 700;
  font-size: 1.05rem; text-decoration: none; display: inline-block;
  border: 2px solid var(--blue); backdrop-filter: blur(4px);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer; font-family: 'Poppins', sans-serif;
}
.btn-secondary:hover { transform: translateY(-4px) scale(1.02); background: var(--blue); color: var(--white); box-shadow: 0 12px 30px rgba(123,63,194,0.15); border-color: var(--blue); }
.hero-location {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--white); font-size: 0.88rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-location svg { color: var(--orange); flex-shrink: 0; }
.hero-chevron {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; animation: bounce 2s infinite;
}
.hero-chevron svg { color: var(--blue-dark); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.slide-dots {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ========== SECTION COMMON ========== */
.section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ff4e50);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--blue-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--grey); max-width: 600px; line-height: 1.7;
}

/* ========== TRUST STRIP ========== */
#trust { background: var(--off-white); padding: 0; }
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 20px; background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.05); backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.trust-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.trust-icon {
  width: 48px; height: 48px; background: rgba(238,123,54,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { color: var(--orange); }
.trust-label { font-size: 0.88rem; color: var(--grey); font-weight: 400; }
.trust-value { font-size: 1rem; color: var(--blue-dark); font-weight: 700; margin-top: 2px; }

/* ========== HOW IT WORKS ========== */
#how { background: transparent; }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px;
}
.how-card {
  background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); padding: 32px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative; overflow: hidden;
}
.how-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--blue), var(--orange));
}
.how-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.how-num {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--orange), #f5a26b);
  border-radius: 50%; color: var(--white); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.how-icon { margin-bottom: 16px; }
.how-icon svg { color: var(--orange); }
.how-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--blue-dark); }
.how-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

/* ========== ROTATION VISUALIZER ========== */
#visualizer { background: var(--off-white); padding: 80px 0; }
.vis-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.vis-header { text-align: center; margin-bottom: 48px; }
.rink-wrap {
  max-width: 1100px; margin: 0 auto;
  background: var(--white); border-radius: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(0,0,0,0.03);
  padding: 60px 40px; position: relative;
}
.rink {
  position: relative;
  width: 100%; max-width: 900px; height: clamp(250px, 30vw, 380px);
  margin: 0 auto;
  background: #2e7d32; /* Grass green */
  border: 4px solid #fff;
  border-radius: 200px; /* Oval shape */
  box-shadow: inset 0 0 60px rgba(0,0,0,0.3), 0 15px 35px rgba(0,0,0,0.15);
  display: flex;
  overflow: hidden;
}

.rink-divider {
  position: absolute; top: 0; bottom: 0;
  width: 0; border-left: 4px dotted rgba(255,255,255,0.6); /* Bold dotted line */
  z-index: 2;
}
.divider-1 { left: 33.33%; }
.divider-2 { left: 66.66%; }

.zone {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  position: relative; z-index: 5;
  padding-bottom: 40px; padding-top: 40px;
}

.zone-badge {
  background: var(--blue); color: var(--black); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px;
  margin-bottom: 12px;
}
.zone-info-btn {
  position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid #fff;
  color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.zone-info-btn:hover {
  background: #fff;
  color: var(--black);
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.zone-icon { text-align: center; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; height: 80px; }
.zone-icon img { height: 70px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }

.zone-sport {
  font-weight: 800; font-size: 1.2rem; color: #fff; text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.kids-row {
  position: absolute; bottom: 16%;
  display: flex; justify-content: center; gap: 8px;
  transition: all 1.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 10; pointer-events: none;
}
.kid-fig {
  width: 28px; height: 44px;
  animation: bob 2.2s ease-in-out infinite;
}

.transfer-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.transfer-arrow.active { opacity: 1; }

/* Dotted Arrow Animation */
.dotted-arrow-line {
  stroke-dasharray: 4, 4;
  animation: dashmove 1s linear infinite;
}
@keyframes dashmove {
  to { stroke-dashoffset: -8; }
}

#zoneC { background: transparent; } /* Green from rink shows through */
#zoneC .zone-sport { color: #fff; text-shadow: 0 2px 5px rgba(0,0,0,0.4); }
#zoneC .zone-badge { background: var(--orange); color: var(--black); }
#zoneC .zone-info-btn { border-color: #fff; color: #fff; background: rgba(255,255,255,0.15); }

.vis-caption {
  text-align: center; margin-top: 32px;
  color: var(--grey); font-size: 0.85rem; font-style: italic;
}


/* Info tooltip */
.info-tooltip {
  position: fixed; z-index: 500;
  background: var(--blue); color: #ffffff; border-radius: 16px;
  padding: 20px 24px; max-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: none; font-size: 0.88rem; line-height: 1.6;
}
.info-tooltip.show { display: block; }
.info-tooltip h4 { color: var(--orange); margin-bottom: 8px; font-size: 0.95rem; }
.info-tooltip-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: #ffffff;
  font-size: 1.2rem; cursor: pointer;
}

/* ========== WHY MULTI-SPORT ========== */
#why { background: var(--light-purple); }
.why-header { margin-bottom: 48px; }
.why-body { font-size: 1.05rem; color: var(--grey); line-height: 1.75; max-width: 720px; margin-bottom: 40px; }
.why-sub { font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 28px; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px;
}
.why-card {
  background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); padding: 28px 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.why-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.why-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.why-card-icon svg { color: var(--black); }
.why-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; }
.why-sources { font-size: 0.8rem; color: var(--grey); font-style: italic; }
.why-sources a { color: var(--blue); }

/* ========== SPORTS WE ROTATE ========== */
#sports { background: transparent; }
.sports-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.sport-card {
  background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); padding: 32px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  text-align: center; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative; overflow: hidden;
}
.sport-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: linear-gradient(0deg, rgba(26,115,232,0.05), transparent);
  transition: height 0.3s;
}
.sport-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.sport-card:hover::before { height: 60%; }
.sport-icon { font-size: 3rem; margin-bottom: 16px; display: flex; justify-content: center; align-items: center; min-height: 64px; }
.sport-icon img { transition: transform 0.3s; }
.sport-card:hover .sport-icon img { transform: scale(1.1); }
.sport-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--blue-dark); }
.sport-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; }
.sports-note {
  text-align: center; font-style: italic; color: var(--grey);
  margin-top: 32px; font-size: 0.95rem;
}

/* ========== AGE GROUPS ========== */
#ages { background: var(--off-white); }
.ages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.age-card {
  background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.age-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.age-bar-1 { height: 6px; background: linear-gradient(90deg, var(--orange), #f5a26b); }
.age-bar-2 { height: 6px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.age-bar-3 { height: 6px; background: linear-gradient(90deg, var(--blue-dark), var(--blue)); }
.age-body { padding: 28px; }
.age-badge {
  display: inline-block; background: rgba(255,255,255,0.1); color: var(--orange);
  font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.age-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.age-card .duration { color: var(--orange); font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; }
.age-card .tagline { color: var(--grey); font-size: 0.9rem; margin-bottom: 16px; font-style: italic; }
.age-card ul { list-style: none; }
.age-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--grey); padding: 5px 0; line-height: 1.5;
}
.age-card ul li::before {
  content: ''; width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.parent-callout {
  margin-top: 32px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 20px; padding: 40px; color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.parent-callout h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.parent-callout p { font-size: 0.95rem; opacity: 0.85; max-width: 560px; line-height: 1.6; }
.btn-white {
  background: #ffffff; color: var(--blue);
  padding: 14px 28px; border-radius: 10px; font-weight: 700;
  font-size: 0.95rem; text-decoration: none; display: inline-block; white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s; flex-shrink: 0;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ========== WHAT WE BELIEVE ========== */
#believe { background: var(--purple-dark); padding: 80px 40px; }
.believe-inner { max-width: 1200px; margin: 0 auto; }
.believe-inner .section-title { color: var(--white); }
.believe-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px;
}
.believe-item {
  padding: 40px 36px;
  overflow: hidden;
  background: var(--white);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.believe-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }

.believe-num {
  font-size: 3rem; font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: 12px; font-family: 'Poppins', sans-serif;
}
.believe-item p {
  font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); line-height: 1.5;
}

/* Coaches */
.coaches-section { max-width: 1200px; margin: 0 auto; padding: 0 40px 80px; background: var(--purple-dark); }
.coaches-title { color: var(--blue-dark); font-size: 1rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.coaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.coach-card {
  background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.coach-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.coach-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--black); font-weight: 700;
}
.coach-card h4 { color: var(--blue-dark); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.coach-card .specialty { color: var(--orange); font-size: 0.85rem; margin-bottom: 12px; }
.coach-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.badge {
  background: rgba(26,115,232,0.15); color: var(--black);
  font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: 600;
}
.coach-card .bio { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }

/* ========== PRICING ========== */
#pricing { background: transparent; }
.price-gst-banner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--grey);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.price-card {
  background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); padding: 32px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05); border: 2px solid transparent;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(123, 63, 194, 0.12); }
.price-card.popular {
  border-color: var(--blue); transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(123, 63, 194, 0.15);
}
.price-card.popular:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 24px 48px rgba(123, 63, 194, 0.18); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue), var(--orange));
  color: var(--black); font-size: 0.72rem; font-weight: 700;
  padding: 5px 18px; border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap;
}
.price-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 12px; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--grey); }
.price-save {
  display: inline-block; background: rgba(238,123,54,0.1); color: var(--orange);
  font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin: 10px 0;
}
.price-divider { border: none; border-top: 1px solid rgba(0,0,0,0.07); margin: 16px 0; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--grey); padding: 6px 0;
}
.price-features li::before {
  content: ''; width: 16px; height: 16px; background: rgba(238,123,54,0.15);
  border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.price-note {
  text-align: center; color: var(--grey); font-size: 0.85rem; margin-top: 24px;
}

/* ========== FAQ ========== */
#faq { background: var(--off-white); }
.faq-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.faq-cat-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 20px;
}
.faq-item {
  background: var(--white); border-radius: 16px; border: 1px solid rgba(0,0,0,0.06); padding: 20px 24px; margin-bottom: 16px; backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.faq-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 30px rgba(26,115,232,0.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  font-size: 0.97rem; font-weight: 600; color: var(--blue-dark);
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: background 0.2s, transform 0.3s;
  font-weight: 300; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--white); color: var(--orange); transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-top: 0;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 12px; }

/* ========== LEAD FORM ========== */
#form-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--dark-grey) 100%);
  padding: 80px 40px; position: relative; overflow: hidden;
}
#form-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(238,123,54,0.12);
}
#form-section::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(0,0,0,0.02);
}
.form-inner { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.form-inner .section-title { color: var(--blue-dark); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.form-inner .section-sub { color: var(--grey); margin: 0 auto 40px; }
.form-card {
  background: var(--white); border-radius: 24px; border: 1px solid rgba(0,0,0,0.08); padding: 40px;
  backdrop-filter: blur(20px);
  max-width: 540px; margin: 0 auto;
  box-shadow: 0 30px 100px rgba(0,0,0,0.1);
}
.form-grid { display: grid; gap: 16px; }
.form-field {
  display: flex; flex-direction: column; gap: 6px; text-align: left;
}
.form-field label {
  font-size: 0.82rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px;
}
.form-field input,
.form-field select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.08); font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; color: var(--blue-dark); background: rgba(0,0,0,0.02);
  transition: border-color 0.2s; outline: none;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--orange); background: rgba(255,255,255,0.1); }
.checkbox-row {
  display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--grey); cursor: pointer;
}
.checkbox-row input { width: auto; }
.form-submit {
  width: 100%; padding: 18px; background: linear-gradient(90deg, var(--purple), var(--orange));
  color: var(--white); border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; font-family: 'Poppins', sans-serif; transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,115,232,0.4); }
.form-submit:active { transform: scale(0.98); }
.form-privacy { font-size: 0.8rem; color: var(--grey); text-align: center; margin-top: 12px; }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: rgba(26,115,232,0.06); border-radius: 14px; border: 2px solid rgba(26,115,232,0.2);
}
.form-success h3 { color: var(--blue); font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--grey); font-size: 0.95rem; }

/* ========== FOOTER ========== */
#footer { background: var(--purple-dark); padding: 60px 40px 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.footer-logo { font-size: 1.4rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 10px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.88rem; color: var(--grey); line-height: 1.6; }
.footer-col h4 { color: var(--blue-dark); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--grey); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--grey); margin-bottom: 12px; }
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(26,115,232,0.05); display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--orange); color: var(--white); }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--grey); font-size: 0.82rem; }
.footer-bottom a { color: var(--grey); text-decoration: none; }
.footer-bottom a:hover { color: var(--black); }

/* ========== FLOATING ELEMENTS ========== */

/* ========== FLOATING MENU & CHAT BUBBLE ========== */
.float-contact {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 16px;
  opacity: 0; transition: opacity 0.4s; pointer-events: none; cursor: pointer;
}
.float-contact.visible { opacity: 1; pointer-events: all; }
.main-float-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(26,115,232,0.4); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-contact.open .main-float-btn { transform: rotate(45deg); background: var(--orange); box-shadow: 0 6px 20px rgba(238,123,54,0.3); }
.float-menu {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-contact.open .float-menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}

.chat-bubble {
  position: absolute; bottom: 75px; right: 0;
  background: white; color: var(--black);
  padding: 12px 18px; border-radius: 16px; border-bottom-right-radius: 4px;
  font-size: 0.88rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05);
  animation: bounce-bubble 2.5s infinite ease-in-out;
  pointer-events: none;
}
@keyframes bounce-bubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(26,115,232,0.35);
  text-decoration: none; position: relative;
}
.float-btn:hover { transform: scale(1.12); background: var(--blue-light); }
.float-btn .tooltip {
  position: absolute; left: 60px; background: var(--blue-dark); color: var(--white);
  font-size: 0.78rem; font-weight: 600; padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-btn:hover .tooltip { opacity: 1; }

.float-chat {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.float-chat.visible { opacity: 1; pointer-events: all; }
.chat-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f5a26b);
  color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(238,123,54,0.4);
  transition: transform 0.2s;
}
.chat-btn:hover { transform: scale(1.1); }
.chat-bubble {
  position: absolute; bottom: 80px; right: 0; background: var(--white);
  padding: 12px 20px; border-radius: 16px; font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); white-space: nowrap;
  animation: bounce 2s infinite; transition: opacity 0.3s;
}
.chat-bubble::after {
  content: ''; position: absolute; bottom: -8px; right: 25px;
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-top: 8px solid var(--white);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.chat-window {
  position: absolute; bottom: 80px; right: 0; width: 320px;
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15); display: none;
  flex-direction: column; transition: all 0.3s ease; transform: translateY(20px); opacity: 0;
}
.chat-window.open { display: flex; transform: translateY(0); opacity: 1; }
.chat-header {
  background: var(--blue); color: var(--white); padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; font-weight: 700;
}
.chat-header button { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.chat-body { padding: 20px; }
.chat-location-info {
  background: var(--off-white); padding: 15px; border-radius: 12px;
  margin: 15px 0; font-size: 0.88rem; line-height: 1.5; color: var(--blue-dark);
}
.chat-link {
  display: block; text-align: center; color: var(--orange);
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: rgba(15,15,15,0.97); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-text { font-size: 0.82rem; color: var(--white); max-width: 700px; }
.cookie-text a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--orange); color: var(--black); border: none; padding: 10px 22px;
  border-radius: 8px; font-size: 0.83rem; font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.cookie-reject {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px; border-radius: 8px; font-size: 0.83rem; cursor: pointer; font-family: 'Poppins', sans-serif;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
}

@media (max-width: 1024px) {
  /* Collapse Navbar to Hamburger on Tablet/iPad views to avoid squishing long menu items */
  .nav-links, .nav-ctas-wrap, .dynamic-island-indicator { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { top: 80px; }
  
  /* Mobile Dynamic Island Styling */
  #navbar.scrolled {
    width: 160px !important;
    height: 52px !important;
    padding: 8px 18px !important;
    justify-content: space-between !important;
  }
  #navbar.scrolled:hover {
    width: 160px !important;
    padding: 8px 18px !important;
  }
  #navbar.scrolled .hamburger {
    display: flex !important;
  }
  
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .ages-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  /* Intermediate scaled rink for iPads/Tablets */
  .rink { border-radius: 150px; }
  .kid-fig { transform: scale(0.85); }
}

@media (max-width: 768px) {
  .section { padding: 48px 20px; }
  #navbar { padding: 16px 20px; }
  .hero-content { padding: 40px 24px; margin: 0; width: 100%; }
  
  /* Collapse grids to single column on mobile */
  .how-grid, .why-grid, .sports-grid, .ages-grid, .pricing-grid, .believe-grid, .coaches-grid, .faq-cats { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  
  /* Rink Visualizer Mobile Optimization */
  .rink-wrap { padding: 24px 12px !important; }
  .rink { height: 250px; border-radius: 120px; padding: 10px 0; }
  .zone { padding: 12px 6px; }
  .zone-badge { font-size: 0.6rem; padding: 2px 6px; margin-bottom: 4px; }
  .zone-info-btn { top: 8px; width: 18px; height: 18px; font-size: 0.62rem; }
  .zone-icon { height: 44px; margin-bottom: 4px; }
  .zone-icon img { height: 32px !important; width: auto !important; }
  .zone-sport { font-size: 0.8rem; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  /* Standardized floating buttons spacing on iOS/Android */
  .float-contact { bottom: 24px; left: 16px; }
  .float-chat { bottom: 24px; right: 16px; }
  .chat-window { bottom: 80px; right: 0; width: calc(100vw - 32px); max-width: 320px; }
  
  #form-section { padding: 48px 20px; }
  .form-card { padding: 28px 20px; }
  
  /* Prevent iOS Input / Select Zoom-in */
  .form-field input, .form-field select { font-size: 16px !important; }
  
  .believe-inner { padding: 48px 20px; }
  .coaches-section { padding: 0 20px 48px; }
  #footer { padding: 48px 20px 24px; }
  .cookie-banner { padding: 16px 20px; }
  .parent-callout { flex-direction: column; }
  .price-card.popular { transform: scale(1); }
}

/* ========== SCROLL ANIMATION ========== */
.reveal {
  opacity: 0; transform: translateY(50px) scale(0.96); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* ========== BACKGROUND BLOBS ========== */
.bg-blobs { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.blob-1, .blob-2 { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.2; animation: float-blob 20s infinite alternate ease-in-out; }
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(238,123,54,0.1); animation-delay: 0s; }
.blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: rgba(123, 63, 194, 0.1); animation-delay: -5s; }
@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.15); }
}


/* ========== REVIEWS ========== */
#reviews { background: var(--purple-dark); padding: 100px 0; overflow: hidden; position: relative; }
.review-marquee-wrap {
  width: 100%; overflow: hidden; position: relative;
  display: flex; gap: 24px; padding: 20px 0;
}
.review-marquee-wrap::before, .review-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 150px; z-index: 2; pointer-events: none;
}
.review-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--purple-dark) 0%, transparent 100%); }
.review-marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--purple-dark) 0%, transparent 100%); }

.marquee-track {
  display: flex; gap: 24px;
  animation: scroll-marquee 40s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.review-card {
  width: 380px; background: var(--white); border-radius: 20px; padding: 36px 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0; white-space: normal;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.review-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.review-stars { color: var(--orange); font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { font-size: 1rem; color: var(--blue-dark); line-height: 1.7; margin-bottom: 28px; font-weight: 500; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; box-shadow: 0 4px 12px rgba(26,115,232,0.3); }
.author-name { font-size: 1rem; font-weight: 800; color: var(--blue-dark); }
.author-role { font-size: 0.8rem; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; font-weight: 700; }

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* ========== LOCATIONS PAGE ========== */
.banner-limited {
  background: linear-gradient(90deg, var(--orange), #ff4e50);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 72px; /* To avoid navbar overlap */
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(238,123,54,0.3);
}

.locations-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.location-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(123,63,194,0.12);
}

.location-card.main-location {
  border: 2px solid var(--blue);
  background: linear-gradient(to bottom, var(--white), var(--off-white));
}

.location-card.sold-out {
  filter: grayscale(0.8);
  opacity: 0.8;
}

.location-card.sold-out:hover {
  transform: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.location-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.location-details {
  list-style: none;
  margin-bottom: 32px;
}

.location-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 16px;
  line-height: 1.5;
}

.location-details svg {
  color: var(--orange);
  flex-shrink: 0;
}

.sold-out-badge {
  position: absolute;
  top: 30px;
  right: -40px;
  background: var(--grey);
  color: var(--white);
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 900;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.location-card.sold-out .sold-out-badge {
  background: #ff4e50;
}

.btn-location {
  margin-top: auto;
  text-align: center;
}

.pulse-glow {
  animation: pulse-glow-anim 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 78, 80, 0.7);
}

@keyframes pulse-glow-anim {
  0% { transform: rotate(45deg) scale(0.95); box-shadow: 0 0 0 0 rgba(255, 78, 80, 0.7); }
  70% { transform: rotate(45deg) scale(1.05); box-shadow: 0 0 0 10px rgba(255, 78, 80, 0); }
  100% { transform: rotate(45deg) scale(0.95); box-shadow: 0 0 0 0 rgba(255, 78, 80, 0); }
}

@media (max-width: 768px) {
  .banner-limited { margin-top: 64px; font-size: 0.8rem; }
  .locations-section { padding: 60px 20px; }
  .location-card { padding: 30px 24px; }
}

/* ========== PHILOSOPHY PAGE ========== */
#philosophy-page {
  padding: 120px 40px 80px;
  background: var(--off-white);
  min-height: 100vh;
}
.phil-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phil-left {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  height: 600px;
}
.phil-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.phil-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 1;
}
.phil-img.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
.phil-img.exit-up {
  transform: translateY(-20px);
  opacity: 0;
}
.phil-img.exit-down {
  transform: translateY(20px);
  opacity: 0;
}

.phil-right {
  display: flex;
  flex-direction: column;
}
.phil-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phil-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 30px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.phil-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.phil-card.active {
  border-color: var(--orange);
  box-shadow: 0 15px 35px rgba(238,123,54,0.15);
  transform: translateX(15px);
}
.phil-card-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.phil-card h3 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.phil-card-body {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.phil-card.active .phil-card-body {
  max-height: 200px;
  margin-top: 12px;
  opacity: 1;
}

@media (max-width: 900px) {
  .phil-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phil-left {
    height: 400px;
    order: -1;
  }
  .phil-card.active {
    transform: translateX(0) scale(1.02);
  }
}


/* ========== RESPONSIVE OVERHAUL ========== */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 1024px) {
  .hero-h1 { font-size: clamp(3rem, 6vw, 4.5rem); }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 80px; /* Prevent navbar overlap */
    margin: 0;
    width: 100%;
  }
  .hero-h1 { font-size: 2.8rem; letter-spacing: -1.5px; }
  .hero-sub { font-size: 1rem; }
  

  /* Horizontal Mobile Scaling Rink Details */
  .kids-row {
    bottom: 45px !important;
    display: flex !important;
  }
  .kid-fig {
    transform: scale(0.65);
  }
  .transfer-arrow#arrowCA {
    top: 80% !important;
    width: 66% !important;
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .section { padding: 40px 16px; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .trust-inner { grid-template-columns: 1fr; }
  .review-card { width: 85vw; padding: 24px 20px; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* Kids row is kept visible on mobile for fully working rotation animation */
@media (max-width: 768px) { .kids-row { display: flex !important; } }

/* Enable pointer events and make Join Waitlist button clickable and stand out in sold-out cards */
.location-card.sold-out .btn-primary {
  pointer-events: auto !important;
  filter: none !important;
  opacity: 1 !important;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}
.location-card.sold-out .btn-primary:hover {
  background: var(--blue-light) !important;
  border-color: var(--blue-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(123, 63, 194, 0.4) !important;
}

/* ========== BUTTERY SMOOTH HOVER Overhaul ========== */
.btn-primary, .btn-secondary, .nav-cta, .form-submit, .btn-white, .promo-btn, .float-btn, .chat-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-submit:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(123, 63, 194, 0.35), 0 0 15px rgba(238, 123, 54, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(238, 123, 54, 0.35);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(123, 63, 194, 0.3);
  border-color: var(--blue);
}


/* ========== EARLY BIRD COUNTDOWN BANNER CSS ========== */
.earlybird-banner {
  background: rgba(25, 20, 45, 0.95);
  border: 2px solid var(--orange);
  border-radius: 24px;
  padding: 24px 40px;
  margin: 40px auto 20px;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 12px 40px rgba(238, 123, 54, 0.15), inset 0 0 15px rgba(238, 123, 54, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.earlybird-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(238, 123, 54, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.eb-badge-pulse {
  background: linear-gradient(135deg, var(--orange), #ff4e50);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  white-space: nowrap;
  animation: eb-pulse 2s infinite ease-in-out;
  box-shadow: 0 0 12px rgba(238, 123, 54, 0.5);
}
@keyframes eb-pulse {
  0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(238, 123, 54, 0.6); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(238, 123, 54, 0); }
  100% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(238, 123, 54, 0); }
}
.eb-content {
  flex: 1;
}
.eb-content h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.eb-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}
.eb-timer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.timer-num {
  background: rgba(25, 20, 45, 0.08);
  border: 1px solid rgba(25, 20, 45, 0.15);
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 54px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 0 10px rgba(238, 123, 54, 0.3);
}
.timer-label {
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.timer-colon {
  color: var(--blue-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: flash 1s infinite alternate;
}
@keyframes flash {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

@media (max-width: 900px) {
  .earlybird-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
    margin: 30px 16px;
  }
  .eb-timer {
    width: 100%;
    justify-content: center;
  }
}


/* ========== MODAL BACKDROP OVERLAY ========== */
.promo-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 5, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.promo-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ========== AMAZON BIG BILLION DAYS STYLE POP-UP CSS ========== */
.promo-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 92%;
  max-width: 420px;
  background: linear-gradient(145deg, #100a26 0%, #1c0f44 100%);
  border: 3px solid #ff9900; /* Gold/yellow accent like Amazon BBD */
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(255, 153, 0, 0.25), inset 0 0 20px rgba(255, 153, 0, 0.05);
  z-index: 1001;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, visibility 0.5s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.promo-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}
.promo-close:hover {
  color: #ff9900;
  background: rgba(255, 153, 0, 0.25);
  border-color: rgba(255, 153, 0, 0.4);
  transform: rotate(90deg);
}
.promo-header {
  background: linear-gradient(90deg, #ff9900 0%, #ff5500 100%);
  padding: 28px 24px 18px;
  color: var(--white);
  position: relative;
}
.promo-sale-badge {
  display: inline-block;
  background: var(--black);
  color: #ff9900;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.promo-header h2 {
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.promo-deadline {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffeedd;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}
.promo-body {
  padding: 24px;
}
.promo-desc {
  color: #eee;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 500;
}
.promo-price-list {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 153, 0, 0.15);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 18px;
}
.promo-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.promo-price-item:last-child {
  border-bottom: none;
}
.promo-price-item .pack-name {
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 600;
}
.promo-price-item .old-price {
  color: #777;
  font-size: 0.85rem;
  text-decoration: line-through;
  margin-right: 6px;
}
.promo-price-item .new-price {
  color: #ff9900;
  font-size: 1rem;
  font-weight: 800;
}
.promo-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 153, 0, 0.08);
  border: 1px dotted rgba(255, 153, 0, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
}
.countdown-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff9900;
  letter-spacing: 0.5px;
}
.countdown-digits {
  font-family: monospace;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.countdown-digits span {
  color: #ff9900;
}
.promo-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ff9900 0%, #ff5500 100%);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3), inset 0 -2px 0 rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: promo-glow 2s infinite alternate ease-in-out;
}
.promo-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.45);
}
@keyframes promo-glow {
  0% { box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3); }
  100% { box-shadow: 0 4px 25px rgba(255, 85, 0, 0.6); }
}

@media (max-width: 480px) {
  .promo-popup {
    width: calc(100vw - 32px);
    max-width: 100%;
  }
}


/* ========== GALLERY MARQUEE ========== */
.gallery-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.gallery-marquee-wrap::before, .gallery-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.gallery-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}
.gallery-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 30s linear infinite;
}
.gallery-img {
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Update Other Events */
#events {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e1145 100%);
}
.event-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2) !important;
}


/* ========== LOCATIONS DROPDOWN MENU ========== */
.nav-dropdown-wrapper {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-dropdown-trigger .chevron {
  font-size: 0.6rem;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin-top: 1px;
}
.nav-dropdown-wrapper:hover .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
  color: var(--orange);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(123, 63, 194, 0.15);
  padding: 12px 0;
  list-style: none;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1010;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}
.nav-dropdown-menu li {
  width: 100%;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: var(--white) !important;
  font-size: 0.85rem !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.nav-dropdown-menu li:last-child a {
  border-bottom: none;
}
.nav-dropdown-menu li a::after {
  display: none !important;
}
.nav-dropdown-menu li a:hover {
  background: rgba(238, 123, 54, 0.15);
  color: var(--orange) !important;
  padding-left: 28px;
  padding-right: 20px;
}

#navbar.scrolled .nav-dropdown-menu {
  background: rgba(26, 11, 46, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ========== LIMITED SPOTS TOP ALERT BANNER ========== */
.limited-spots-banner {
  background: linear-gradient(90deg, var(--orange) 0%, #ff4e50 100%);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 999;
  margin-top: 80px;
  box-shadow: 0 4px 15px rgba(238, 123, 54, 0.25);
  animation: slideDownBanner 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@keyframes slideDownBanner {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1024px) {
  .limited-spots-banner {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .limited-spots-banner {
    margin-top: 80px;
    font-size: 0.82rem;
    padding: 10px 16px;
  }
}

/* ========== BIRTHDAY PARTIES POP-UP ========== */
.birthday-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10, 5, 20, 0.75); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.birthday-backdrop.active { opacity: 1; pointer-events: auto; }

.birthday-popup {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -45%) scale(0.9);
  width: 90%; max-width: 480px; background: linear-gradient(135deg, #1b0c36 0%, #0d061f 100%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 35px rgba(238, 123, 54, 0.15);
  z-index: 2010; opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--white); text-align: center;
}
.birthday-popup.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

.birthday-popup .close-btn {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255,255,255,0.08); border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.birthday-popup .close-btn:hover { background: rgba(238,123,54,0.3); transform: rotate(90deg); }

.birthday-popup-header { margin-bottom: 20px; }
.birthday-popup-badge {
  display: inline-block; padding: 6px 14px; background: linear-gradient(90deg, var(--orange) 0%, #ff4e50 100%);
  border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 12px; box-shadow: 0 4px 10px rgba(238,123,54,0.3);
}
.birthday-popup-header h2 { font-size: 1.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 8px; color: var(--white); }
.birthday-popup-header p { font-size: 0.88rem; color: #b5adc9; margin: 0; }

.birthday-popup-perks {
  display: flex; flex-direction: column; gap: 10px; margin: 24px 0; text-align: left;
}
.birthday-popup-perk {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05);
}
.birthday-popup-perk svg { color: var(--orange); flex-shrink: 0; }
.birthday-popup-perk-text { font-size: 0.9rem; font-weight: 600; color: #e1dbf0; }

.birthday-popup-btn {
  display: block; width: 100%; padding: 16px; background: linear-gradient(90deg, var(--purple), var(--orange));
  color: var(--white) !important; font-weight: 700; text-decoration: none; border-radius: 12px;
  box-shadow: 0 8px 20px rgba(238,123,54,0.25); transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1rem; border: none; cursor: pointer; text-align: center;
}
.birthday-popup-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(238,123,54,0.4); }

/* ========== BIRTHDAY PAGE STYLES ========== */
.birthday-hero {
  padding: 160px 40px 100px; text-align: center;
  background: linear-gradient(135deg, #160a2c 0%, #080314 100%);
  position: relative; overflow: hidden;
}
.birthday-hero::before {
  content: ''; position: absolute; width: 450px; height: 450px;
  background: rgba(144, 96, 238, 0.12); filter: blur(100px);
  top: -120px; left: -120px; border-radius: 50%;
}
.birthday-hero::after {
  content: ''; position: absolute; width: 350px; height: 350px;
  background: rgba(238, 123, 54, 0.1); filter: blur(80px);
  bottom: -60px; right: -60px; border-radius: 50%;
}
.birthday-hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.birthday-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.birthday-hero-title span {
  background: linear-gradient(90deg, var(--purple) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.birthday-hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: #b5adc9; line-height: 1.6; margin-bottom: 36px; }

.themes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px;
}
.theme-card {
  background: var(--white); border-radius: 24px; border: 1px solid rgba(0,0,0,0.06); padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.theme-card:hover {
  transform: translateY(-8px); box-shadow: 0 20px 40px rgba(123, 63, 194, 0.12);
  border-color: rgba(123, 63, 194, 0.2);
}
.theme-card-icon {
  width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 24px; font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.theme-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.theme-card p { font-size: 0.92rem; color: var(--grey); line-height: 1.6; margin: 0; }

.rewards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px;
}
.rewards-card {
  background: linear-gradient(135deg, #fff 0%, #fcfbfd 100%);
  border-radius: 20px; border: 1px solid rgba(123, 63, 194, 0.08); padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.02); display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.3s ease;
}
.rewards-card:hover { transform: translateY(-4px); }
.rewards-card-icon {
  background: rgba(238, 123, 54, 0.08); color: var(--orange); padding: 12px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(238,123,54,0.05);
}
.rewards-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.rewards-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.5; margin: 0; }

/* ========== STABLE GALLERY ========== */
.stable-gallery-container {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stable-gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-flow: dense;
}
.gallery-item-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(123, 63, 194, 0.15);
}
.gallery-item-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-wrap.landscape {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 16/10;
}
.gallery-item-wrap.portrait {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 3/4;
}

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

@media (max-width: 600px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .gallery-item-wrap.portrait {
    grid-row: span 1;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 540px) {
  .stable-gallery-container {
    padding: 0 20px;
  }
}

/* ========== PRELOADER SPLASH SCREEN ========== */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 99999; /* Higher than header, tooltips and chat widgets */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: all;
}
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.preloader-logo {
  max-width: 580px;
  width: 90%;
  height: auto;
  opacity: 0;
  animation: logoEntrance 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes logoEntrance {
  0% { opacity: 0; transform: scale(0.85); }
  50% { opacity: 0.5; }
  100% { opacity: 1; transform: scale(1); }
}


