: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; }


html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--blue-dark);
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
  background: var(--blue-dark); /* Solid blue-dark base */
}
#navbar.scrolled {
  background: var(--blue);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900; font-size: 1.5rem;
  color: var(--white); text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 12px 24px; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none; cursor: pointer;
}
.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-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(24px); padding: 24px 40px; z-index: 999;
  flex-direction: column; gap: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--blue-dark); text-decoration: none; font-size: 1.1rem; font-weight: 600; }
.mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

/* ========== 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(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 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%; }
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.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; 
  animation: kenburns 20s linear forwards; 
}


.slide-1 { background-image: url('images/hero-basketball.jpg'); }
.slide-2 { background-image: url('images/hero-gym.jpg'); }
.slide-3 { background-image: url('images/hero-soccer-1.jpg'); }
.slide-4 { background-image: url('images/hero-soccer-2.jpg'); }

@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(--blue-dark); line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -3px; text-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.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(--blue-dark);
  max-width: 720px; margin: 0 auto 40px; line-height: 1.75; font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.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(--blue-dark); font-size: 0.88rem;
}
.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: 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: center;
  position: relative; z-index: 5;
  padding-bottom: 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; right: 20px;
  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.2s;
}
.zone-info-btn:hover { background: #fff; color: var(--black); }

.zone-icon { text-align: center; margin-bottom: 10px; }
.zone-icon img { width: 70px; height: auto; 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: 60px;
  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: 45%;
  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; }
.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.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; position: relative;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.price-card.popular {
  border-color: var(--blue); transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(26,115,232,0.18);
}
.price-card.popular:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(26,115,232,0.15); }
.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: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 48px 20px; }
  #navbar { padding: 16px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 40px 24px; margin: 0 20px; width: calc(100% - 40px); }
  .how-grid, .why-grid, .sports-grid, .ages-grid, .pricing-grid, .believe-grid, .coaches-grid, .faq-cats { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .rink { grid-template-columns: 1fr; }
  .zone { border-right: none; border-bottom: 2px dashed rgba(26,115,232,0.2); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-contact { bottom: 90px; }
  #form-section { padding: 48px 20px; }
  .form-card { padding: 28px 20px; }
  .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;
  pointer-events: none;
}

.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; }
}
