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

:root {
  /* Premium Vibrant Yellow & Dark Charcoal Theme */
  --gold: #FFC300;
  --gold-light: #FFD633;
  --black: #121212;
  --dark: #1a1a1a;
  --dark2: #242424;
  --dark3: #2e2e2e;
  --white: #ffffff;
  --gray: #a0a0a0;
  --gray-light: #d0d0d0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
  letter-spacing: 0.5px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ NAV ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(255,255,255,0.05); }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,195,0,0.5));
  transition: filter 0.3s;
}
.logo:hover .logo-img { filter: drop-shadow(0 0 14px rgba(255,195,0,0.85)); }

/* Footer logo image */
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,195,0,0.4));
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 6px var(--gold);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 12px rgba(255,195,0,0.4);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,195,0,0.7);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.hero {
  height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.6) 100%),
    url('/assets/images/hero_bg.png') center/cover;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,195,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,195,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridpan 40s linear infinite;
}
@keyframes gridpan {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-shapes {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-shapes::before {
  content: 'T';
  font-family: 'Rajdhani', sans-serif;
  font-size: 55vw;
  color: rgba(255,195,0,0.025);
  position: absolute;
  right: -5vw; top: -5vh;
  line-height: 1;
  user-select: none;
}
.hero-shapes::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,195,0,0.08);
  top: 10%; right: 15%;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 48px 80px;
  max-width: 900px;
}

.hero-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  opacity: 0; animation: fadeup 0.8s 0.3s forwards;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  display: block;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeup 0.8s 0.5s forwards;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  text-shadow: 0 0 40px rgba(255,195,0,0.3);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0; animation: fadeup 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeup 0.8s 0.9s forwards;
}

.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  font-weight: 700;
  padding: 16px 44px; text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 0 20px rgba(255,195,0,0.3);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.25); transition: left 0.4s ease; z-index: -1;
}
.btn-primary:hover::before { left: 0; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-4px) skewX(-2deg);
  box-shadow: 0 8px 30px rgba(255,195,0,0.6);
}

.btn-ghost {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 14px 42px;
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255,195,0,0.1), inset 0 0 10px rgba(255,195,0,0.05);
}
.btn-ghost::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s ease; z-index: -1;
}
.btn-ghost:hover::before { transform: scaleY(1); }
.btn-ghost:hover {
  color: var(--black);
  transform: translateY(-4px) skewX(-2deg);
  box-shadow: 0 8px 25px rgba(255,195,0,0.5);
}

.hero-scroll {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); writing-mode: vertical-rl;
  animation: fadeup 1s 1.2s both;
}
.hero-scroll::before {
  content: '';
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  display: block;
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ QUICK ACTIONS (WHITE SECTION -> CHARCOAL) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.quick-actions {
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 48px;
    text-align: center;
}

.action-card {
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.action-card:hover {
    transform: translateY(-10px);
    background: var(--dark2);
    border-color: rgba(255,195,0,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 15px rgba(255,195,0,0.1) inset;
}

.action-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(255,255,255,0.1);
}

.action-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

.action-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.action-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.action-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(255,195,0,0.6);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ STATS STRIP ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.stats-strip {
  background: var(--gold);
  padding: 28px 48px;
  display: flex;
  align-items: stretch;
  border-top: none;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 20px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  margin-top: 6px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SECTION COMMONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
section { padding: 100px 48px; }

.section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(255,195,0,0.4);
}
.section-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ABOUT ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.about { background: var(--dark); }
.about-inner {
  display: flex; gap: 80px;
  align-items: center; max-width: 1300px; margin: 0 auto;
}
.about-text p {
  color: var(--gray-light); line-height: 1.9; margin-bottom: 20px;
  font-size: 1.05rem;
}
.about-visual {
  position: relative;
}
.about-visual-box {
  background: var(--dark2);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.about-visual-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,195,0,0.08) 0%, transparent 60%);
}
.about-visual-box .big-letter {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255,195,0,0.05);
  position: absolute;
  bottom: -5%; left: -5%;
  line-height: 1;
  user-select: none;
  letter-spacing: -2px;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  width: 140px; height: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(255,195,0,0.5);
}
.about-badge span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.about-badge small {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  text-align: center;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FACILITIES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.facilities { background: var(--black); }
.facilities-header {
  max-width: 1300px; margin: 0 auto 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
}
.facilities-desc { color: var(--gray-light); line-height: 1.8; font-size: 1rem; }

.facilities-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.facility-card {
  background: var(--dark2);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.facility-card:hover { transform: scale(1.02); z-index: 2; }
.facility-card:hover .facility-overlay { opacity: 1; }
.facility-card:hover .facility-icon { transform: scale(1.1); }

.facility-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.facility-icon {
  font-family: 'Rajdhani', sans-serif;
  font-size: 6rem;
  color: rgba(255,195,0,0.12);
  transition: transform 0.4s;
  user-select: none;
}
.facility-icon-line {
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid rgba(255,195,0,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.facility-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,195,0,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}

.facility-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
}
.facility-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.facility-desc {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  text-shadow: 0 0 6px rgba(255,195,0,0.4);
}

.facility-card.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ APP SECTION (RED SECTION) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.app-section {
    background: var(--gold);
    padding: 0; /* Handled by inner */
    overflow: hidden;
}

.app-inner {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.app-content {
    flex: 1;
    padding: 80px 48px;
    color: var(--white);
    max-width: 600px;
}

.app-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    opacity: 0.9;
}

.app-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.app-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.app-stores {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.store-badge {
    height: 40px;
    cursor: pointer;
}

.app-download-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-dark {
    display: inline-block;
    background-color: #0d0d0d;
    color: white;
    padding: 12px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,195,0,0.2);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-dark:hover {
    background-color: var(--black);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 5px 20px rgba(255,195,0,0.3);
    transform: translateY(-2px);
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.app-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: top;
    margin-bottom: -50px; /* To make it bleed off the bottom */
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ MEMBERSHIP ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.membership { background: var(--dark); }
.membership-inner { max-width: 1300px; margin: 0 auto; }
.membership-header { margin-bottom: 60px; }

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.plan-card {
  background: var(--dark2);
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.plan-card.featured {
  background: var(--gold);
}
.plan-card:hover:not(.featured) { 
  background: var(--dark3); 
  transform: translateY(-10px);
  border-color: rgba(255,195,0,0.3);
  box-shadow: 0 10px 30px rgba(255,195,0,0.1);
}
.plan-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,195,0,0.4);
}

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
  opacity: 0.9;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
  text-shadow: none;
}

.plan-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 20px;
  display: block;
}
.plan-card.featured .plan-tag { color: rgba(255,255,255,0.8); }

.plan-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem; letter-spacing: 1px;
  color: var(--white); margin-bottom: 8px;
}
.plan-card.featured .plan-name { color: var(--white); }

.plan-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 4rem; line-height: 1; color: var(--gold);
  margin-bottom: 4px;
}
.plan-card.featured .plan-price { color: var(--white); }

.plan-period {
  font-size: 0.8rem; color: var(--gray);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 32px;
}
.plan-card.featured .plan-period { color: rgba(255,255,255,0.8); }

.plan-features {
  list-style: none;
  margin-bottom: 40px;
}
.plan-features li {
  font-size: 0.92rem;
  color: var(--gray-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.plan-features li::before {
  content: 'ÃƒÂ¢Ã…â€œÃ‚Â¦';
  font-size: 0.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.plan-card.featured .plan-features li::before { color: var(--white); }

.plan-btn {
  display: block; text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  padding: 16px;
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.plan-btn:hover { background: var(--gold); color: var(--white); }
.plan-card.featured .plan-btn {
  background: var(--white); color: var(--gold);
  border-color: var(--white);
}
.plan-card.featured .plan-btn:hover { background: #f0f0f0; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ TRAINERS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.trainers { background: var(--black); }
.trainers-inner { max-width: 1300px; margin: 0 auto; }
.trainers-header { margin-bottom: 60px; }

.trainers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.trainer-card {
  background: var(--dark2);
  aspect-ratio: 3/4;
  position: relative; overflow: hidden; cursor: pointer;
}
.trainer-card:hover .trainer-hover { opacity: 1; }

.trainer-avatar {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.trainer-initials {
  font-family: 'Rajdhani', sans-serif;
  font-size: 8rem;
  color: rgba(255,195,0,0.1);
  user-select: none;
}
.trainer-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,195,0,0.02) 30px,
    rgba(255,195,0,0.02) 31px
  );
}

.trainer-hover {
  position: absolute; inset: 0;
  background: rgba(255,195,0,0.08);
  opacity: 0; transition: opacity 0.3s;
}

.trainer-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 60%, transparent);
}
.trainer-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem; letter-spacing: 2px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
  text-transform: uppercase;
}
.trainer-role {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 6px rgba(255,195,0,0.4);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ LOCATION ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.location { background: var(--dark); }
.location-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; gap: 80px; align-items: center;
}
.location-map {
  background: var(--dark2);
  aspect-ratio: 1;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem; letter-spacing: 4px; color: var(--gold);
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255,195,0,0.3);
}
.map-pin {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 35%, 100% 85%, 50% 100%, 0% 85%, 0% 35%);
  animation: pinpulse 2s ease-in-out infinite;
}
@keyframes pinpulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,195,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,195,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.location-details .section-title { margin-bottom: 32px; }
.location-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.location-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,195,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  flex-shrink: 0;
}
.location-text strong {
  display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 4px;
}
.location-text span { color: var(--gray-light); font-size: 0.88rem; line-height: 1.6; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FOOTER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
footer {
  background: #0f1014;
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 60px;
  max-width: 1300px; margin: 0 auto 60px;
}
.footer-brand { flex: 2; min-width: 220px; }
.footer-col { flex: 1; min-width: 130px; }
.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem; letter-spacing: 6px; font-weight: 900;
  color: var(--gold); margin-bottom: 16px; display: block;
  text-shadow: 0 0 15px rgba(255,195,0,0.5);
}
.footer-brand p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; max-width: 260px; font-family: 'Rajdhani', sans-serif; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
/* ─── HAMBURGER MENU STYLES ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000; /* Ensure it stays above navigation overlay */
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,195,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.85rem; text-decoration: none;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0;
  transition: all 0.2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 10px rgba(255,195,0,0.3); }

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 1rem; color: var(--gray); text-decoration: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 500; letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; color: var(--gray);
  font-family: 'Rajdhani', sans-serif; letter-spacing: 1px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* (legacy media queries removed — see comprehensive breakpoints below) */




/* ─── SHARED PAGE STYLES (sub-pages) ─── */

/* Page hero used on contact, register, shop, equipments */
.page-hero {
  padding: 150px 48px 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.8) 100%),
    url('/assets/images/hero_bg.png') center/cover;
}

/* Forms */
.form-container {
  background: var(--dark2);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 80px;
  border-top: 3px solid var(--gold);
}
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Shop / Equipments Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 48px 100px;
  max-width: 1300px;
  margin: 0 auto;
}
.product-card {
  background: var(--dark2);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255,195,0,0.15);
}
.product-img {
  height: 200px;
  background: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  background-size: cover !important;
  background-position: center !important;
}
.product-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.product-price { color: var(--gold); font-weight: bold; margin-bottom: 16px; }
.btn-cart {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.btn-cart:hover { background: var(--gold); color: var(--black); }

/* ─── CREATIVE REDESIGN STYLES ─── */

:root {
  --font-display: 'Bebas Neue', sans-serif;
  --glass-bg: rgba(18, 18, 18, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

/* Custom Selection */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* Typography Overrides */
h1, h2, h3, .section-title, .hero-title, .app-title {
  font-family: var(--font-display) !important;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(5rem, 10vw, 8rem) !important;
  line-height: 0.9 !important;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-left: 5px solid var(--gold);
  padding-left: 20px;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  text-shadow: 0 0 40px rgba(255,195,0,0.3);
}

.section-title {
  font-size: clamp(3rem, 5vw, 5rem) !important;
  line-height: 1 !important;
}

/* Navbar Glassmorphism */
#navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

/* Button Hover Sweep */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}
.btn-primary:hover::after {
  left: 100%;
}

/* Marquee Strip */
.marquee-strip {
  background: var(--gold);
  color: var(--black);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
}
.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}
.marquee-content span { padding: 0 20px; }
.marquee-content .dot { font-size: 1rem; position: relative; top: -5px; }

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

/* Scroll Reveal Classes */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Action Cards Bottom Border */
.action-card {
  border-bottom: 3px solid transparent;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.action-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-10px) !important;
}

/* Feature List (About Section) */
.feature-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.feature-list li {
  margin-bottom: 10px;
  color: var(--gray-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Facility Card Numbers */
.facility-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
  z-index: 3;
  line-height: 1;
  transition: 0.4s;
}
.facility-card:hover .facility-num {
  color: var(--gold);
  transform: scale(1.1);
}

/* Most Popular Badge */
.most-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
}

/* ─── ULTRA PREMIUM REDESIGN STYLES ─── */

body.loading {
  overflow: hidden;
}

/* CUSTOM CURSOR */
* {
  cursor: none !important; /* Hide default cursor */
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference; /* Inverts colors behind it */
}

.cursor.hovered {
  width: 60px;
  height: 60px;
  background: var(--gold);
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: #050505;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.hide {
  transform: translateY(-100%);
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  letter-spacing: 10px;
  margin-bottom: 20px;
}
.preloader-counter {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2rem;
  color: var(--white);
}

/* BRUTALIST TYPOGRAPHY */
.ultra-title {
  font-size: clamp(4rem, 12vw, 10rem) !important;
  line-height: 0.85 !important;
  text-transform: uppercase;
}

.ultra-title .solid {
  color: var(--white);
}

.ultra-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

/* HERO PARALLAX */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.parallax-layer {
  position: absolute;
  top: -5%; left: -5%;
  width: 110%; height: 110%; /* Extra size for movement */
  background-size: cover;
  background-position: center;
}
.layer-bg { background-image: url('/assets/images/hero_bg.png'); filter: brightness(0.4) grayscale(0.5); }

/* SPLIT-SCROLL FACILITIES SECTION */
.split-section {
  display: flex;
  position: relative;
  min-height: 200vh; /* Make it long enough to scroll */
  padding: 0 !important;
}

.split-left {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px;
  background: #050505;
  z-index: 2;
}

.split-right {
  flex: 1;
  padding: 100px 50px;
}

@media (max-width: 1024px) {
  .split-section {
    flex-direction: column;
    min-height: auto;
  }
  .split-left {
    position: relative;
    height: auto;
    padding: 50px 20px;
  }
  .split-right {
    padding: 20px;
  }
}

/* ─── CYBERPUNK NEON REDESIGN ─── */

:root {
  --font-display: 'Orbitron', sans-serif !important;
  --gold: #ffff00 !important; /* Hijack gold var to be cyan */
  --black: #090014 !important; /* Deep dark purple */
  --white: #ffffff !important;
  --neon-pink: #ff007f;
  --dark: #120a1f !important;
  --dark2: #1a0f2e !important;
}

body {
  background: var(--black) linear-gradient(0deg, rgba(255, 255, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* CYBERPUNK BUTTONS */
.btn-primary, .btn-ghost, .plan-btn, .btn-dark, .action-link {
  font-family: var(--font-display) !important;
  border-radius: 0 !important;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  position: relative;
  border: none !important;
  background: transparent !important;
  color: var(--gold) !important;
  box-shadow: none !important;
  z-index: 1;
}

.btn-primary::before, .plan-btn::before, .action-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 0, 0.1);
  border: 1px solid var(--gold);
  z-index: -1;
  transition: 0.3s;
}

.btn-primary:hover::before, .plan-btn:hover::before, .action-link:hover::before {
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.btn-primary:hover, .plan-btn:hover, .action-link:hover {
  color: var(--black) !important;
}

/* CYBERPUNK CARDS */
.action-card, .plan-card, .facility-card, .trainer-card {
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  border: 1px solid rgba(255, 255, 0, 0.3) !important;
  background: rgba(18, 10, 31, 0.8) !important;
  backdrop-filter: blur(5px);
}
.action-card:hover, .plan-card:hover, .facility-card:hover {
  border-color: var(--neon-pink) !important;
  box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.2) !important;
}

/* PRELOADER UPDATE */
.preloader { background: var(--black); }
.preloader-text {
  color: var(--gold);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
}

/* GLITCH EFFECT */
.glitch {
  position: relative;
  display: inline-block;
  color: var(--white);
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-pink);
  clip-path: inset(45% 0 30% 0);
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--gold);
  clip-path: inset(15% 0 80% 0);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip-path: inset(20% 0 80% 0); transform: translate(-2px, 1px); }
  20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
  40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); }
  60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 1px); }
  100% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -1px); }
}

@keyframes glitch-anim-2 {
  0% { clip-path: inset(10% 0 60% 0); transform: translate(2px, -1px); }
  20% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 2px); }
  40% { clip-path: inset(30% 0 40% 0); transform: translate(2px, -2px); }
  60% { clip-path: inset(70% 0 20% 0); transform: translate(-2px, 1px); }
  80% { clip-path: inset(20% 0 50% 0); transform: translate(2px, -1px); }
  100% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
}

/* CYBERPUNK CURSOR */
.cursor {
  width: 30px; height: 30px;
  background: transparent !important;
  border: 2px solid var(--gold);
  border-radius: 0;
  mix-blend-mode: normal;
  box-shadow: 0 0 10px var(--gold);
}
.cursor::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--neon-pink);
  transform: translate(-50%, -50%);
}
.cursor.hovered {
  border-color: var(--neon-pink);
  transform: translate(-50%, -50%) rotate(45deg) !important;
  box-shadow: 0 0 20px var(--neon-pink);
}

/* OVERRIDE BRUTALIST */
.ultra-title .solid, .ultra-title .outline {
  color: var(--white);
  -webkit-text-stroke: 0;
}
.hero-title, .section-title {
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* ─── EKG CANVAS ─── */
#ekg-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  z-index: 2;
  pointer-events: none;
}

/* ─── REMOVE OLD CURSOR RULE ─── */
* { cursor: auto !important; }
.cursor { display: none !important; }

/* ─── HERO BACKGROUND FIX ─── */
.hero {
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1920') center/cover no-repeat !important;
  background-attachment: fixed !important;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,0,20,0.92) 0%, rgba(9,0,20,0.75) 60%, rgba(9,0,20,0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10 !important;
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 8vw;
}

.hero-title {
  font-size: clamp(5rem, 11vw, 9rem) !important;
  line-height: 0.88 !important;
  margin-bottom: 24px !important;
}

#ekg-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 2;
  pointer-events: none;
}

/* ─── WHITE SPACE FIXES ─── */
body, html {
  background: #090014 !important;
}

.cta-strip {
  background: #090014 !important;
}

section, .stats-strip, .quick-actions, .marquee-strip, .membership, .trainers, .about, .facilities, .app-section, .location, footer {
  background-color: #090014;
}

/* ════════════════════════════════════════════
   FULLY RESPONSIVE — ALL DEVICES
   Breakpoints: 1200 | 1024 | 768 | 480 | 360
════════════════════════════════════════════ */

/* ─── LARGE TABLET (max 1200px) ─── */
@media (max-width: 1200px) {
  .hero-title { font-size: clamp(4rem, 9vw, 7rem) !important; }
  .section-title { font-size: clamp(2.5rem, 5vw, 4rem) !important; }
  .split-left { padding: 60px; }
  .split-right { padding: 60px 40px; }
  .plans-grid { gap: 20px; }
  .trainers-grid { gap: 20px; }
  .footer-top { gap: 40px; }
}

/* ─── TABLET (max 1024px) ─── */
@media (max-width: 1024px) {
  /* NAV — Full-screen overlay */
  #navbar { padding: 0 24px; height: 70px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(9,0,20,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links li a { font-size: 1.8rem; font-family: 'Orbitron', sans-serif; color: #fff; }

  /* HERO */
  .hero-content { padding-left: 5vw; padding-right: 5vw; }
  .hero-title { font-size: clamp(3.5rem, 8vw, 6rem) !important; }
  .hero-sub { font-size: 1rem; max-width: 90%; }

  /* SPLIT SECTION → STACK */
  .split-section { flex-direction: column; min-height: auto; }
  .split-left { position: relative; height: auto; padding: 60px 40px 30px; }
  .split-right { padding: 20px 40px 60px; }

  /* ABOUT */
  .about-inner { flex-direction: column; gap: 40px; }
  .about-visual { margin: 0 auto; max-width: 400px; width: 100%; }

  /* APP SECTION */
  .app-inner { flex-direction: column; }
  .app-content { padding: 60px 40px; max-width: 100%; text-align: center; }
  .app-stores { justify-content: center; }
  .app-image { max-height: 300px; overflow: hidden; }
  .app-image img { width: 100%; object-fit: cover; object-position: top; }

  /* LOCATION */
  .location-inner { flex-direction: column; gap: 40px; }
  .location-map { width: 100%; max-width: 480px; margin: 0 auto; }

  /* PLANS */
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card.featured { transform: none; }

  /* FACILITY GRID */
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-card.wide { grid-column: span 2; }

  /* QUICK ACTIONS */
  .quick-actions { flex-wrap: wrap; justify-content: center; }
  .action-card:not(:last-child)::after { display: none; }
  .action-card { max-width: 45%; }

  /* STATS */
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  /* FOOTER */
  .footer-top { gap: 40px; }
  .footer-brand { flex: 0 0 100%; }
  .footer-col { flex: 1; min-width: 120px; }
}

/* ─── MOBILE LARGE (max 768px) ─── */
@media (max-width: 768px) {
  /* NAV */
  #navbar { padding: 0 16px; height: 64px; }
  .logo-img { height: 38px; }

  /* SECTIONS */
  section { padding: 60px 20px; }

  /* HERO */
  .hero-content { padding: 0 20px; justify-content: center; text-align: left; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem) !important; }
  .hero-tag { font-size: 0.7rem; letter-spacing: 3px; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; justify-content: center; }
  .hero-scroll { display: none; }
  #ekg-canvas { height: 30%; }

  /* MARQUEE */
  .marquee-strip { font-size: 1.4rem; padding: 12px 0; }

  /* QUICK ACTIONS */
  .quick-actions { flex-direction: column; align-items: center; padding: 40px 20px; gap: 0; }
  .action-card { width: 100%; max-width: 100%; padding: 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .action-card:last-child { border-bottom: none; }

  /* STATS */
  .stats-strip { flex-wrap: wrap; padding: 0; }
  .stat-item { flex: 0 0 50%; padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); box-sizing: border-box; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 2.2rem !important; }

  /* ABOUT */
  .about { padding: 60px 20px; }
  .about-inner { flex-direction: column; gap: 32px; }
  .about-text h2 { font-size: 2.2rem !important; }
  .about-visual { margin: 0 auto; max-width: 280px; width: 100%; }
  .about-visual-box { aspect-ratio: 1; }
  .about-badge { bottom: -16px; right: -16px; width: 110px; height: 110px; }

  /* FACILITIES */
  .split-left { padding: 40px 20px 20px; }
  .split-right { padding: 10px 20px 40px; }
  .facilities-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .facility-card.wide { grid-column: span 2; }

  /* APP SECTION */
  .app-content { padding: 40px 20px; }
  .app-title { font-size: 2rem !important; }
  .app-stores { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .store-badge { height: 36px; }
  .app-image { max-height: 220px; }

  /* MEMBERSHIP */
  .membership { padding: 60px 20px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card { padding: 32px 24px; }

  /* TRAINERS */
  .trainers { padding: 60px 20px; }
  .trainers-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  /* CTA STRIP */
  .cta-strip { padding: 60px 20px; text-align: center; }
  .cta-strip h2 { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
  .cta-strip .btn-primary { display: inline-block; width: auto; }

  /* LOCATION */
  .location { padding: 60px 20px; }
  .location-inner { flex-direction: column; gap: 32px; }
  .location-map { width: 100%; height: 240px; min-height: 240px; }
  .location-details h2 { font-size: 2.2rem !important; }

  /* FOOTER */
  footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-brand p { max-width: 100%; }
  .footer-col { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-top: 20px; text-align: center; }
  .footer-socials { gap: 8px; }
  .social-btn { width: 36px; height: 36px; font-size: 0.7rem; }

  /* SECTION HEADERS */
  .section-title { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
  .section-tag { font-size: 0.7rem; }
  .facilities-header { gap: 20px; }
}

/* ─── MOBILE SMALL (max 480px) ─── */
@media (max-width: 480px) {
  section { padding: 50px 16px; }

  /* HERO */
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.2rem) !important; border-left-width: 3px; padding-left: 12px; }
  .hero-sub { font-size: 0.85rem; }
  .hero-actions { max-width: 100%; }

  /* STATS */
  .stat-item { flex: 0 0 50%; padding: 20px 12px; }
  .stat-num { font-size: 1.9rem !important; }
  .stat-label { font-size: 0.58rem; }

  /* FACILITIES */
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card.wide { grid-column: span 1; }
  .facility-card { aspect-ratio: 4/3; }

  /* ABOUT */
  .about-visual { display: none; }

  /* APP */
  .app-image { display: none; }
  .app-content { padding: 36px 16px; }
  .app-title { font-size: 1.8rem !important; }
  .store-badge { height: 32px; }

  /* PLANS */
  .plan-card { padding: 28px 18px; }
  .plan-price { font-size: 3rem; }
  .plan-name { font-size: 2rem; }

  /* TRAINERS */
  .trainers-grid { max-width: 100%; }

  /* BUTTONS */
  .btn-primary, .btn-ghost, .btn-dark { font-size: 0.8rem; padding: 13px 18px; letter-spacing: 2px; }

  /* GLITCH — disable on small screens for perf */
  .glitch::before, .glitch::after { display: none; }

  /* ACTION CARDS */
  .action-card h3 { font-size: 1.4rem; }

  /* QUICK ACTIONS — no separator lines */
  .quick-actions { padding: 32px 16px; }
}

/* ─── ULTRA SMALL (max 360px) ─── */
@media (max-width: 360px) {
  #navbar { padding: 0 12px; height: 58px; }
  .logo-img { height: 32px; }
  .hero-title { font-size: clamp(2.4rem, 14vw, 3.2rem) !important; }
  .hero-sub { font-size: 0.8rem; }
  .hero-tag { font-size: 0.6rem; letter-spacing: 2px; }
  .stat-item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(255,255,0,0.1); }
  .action-card h3 { font-size: 1.2rem !important; }
  .plan-price { font-size: 2.4rem; }
  section { padding: 44px 14px; }
  .footer-top { gap: 20px; }
}

/* ─── UNUSUAL FEATURES STYLING ENHANCEMENTS ─── */
.muscle-group-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.muscle-group-btn.active {
  box-shadow: 0 0 15px rgba(255, 195, 0, 0.3);
  transform: translateY(-2px);
}

.assess-tab {
  transition: all 0.25s ease;
}
.assess-tab.active {
  box-shadow: 0 0 12px rgba(255, 195, 0, 0.4);
}

#cyber-audio-player {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 195, 0, 0.2);
}



/* ─── SKEWED CYBER POLYGON DESIGN SYSTEM & UI ENHANCEMENTS ─── */
.cyber-grid-bg {
  background-image: linear-gradient(to right, rgba(255, 195, 0, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 195, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.text-glow-yellow {
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.6), 0 0 40px rgba(255, 195, 0, 0.3);
}

.text-glow-emerald {
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.skew-card {
  transform: skewX(-12deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.skew-card:hover {
  transform: skewX(-12deg) translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 195, 0, 0.25);
  border-color: rgba(255, 195, 0, 0.6) !important;
}
.unskew-content {
  transform: skewX(12deg);
}

.skew-badge-yellow {
  transform: skewX(-12deg);
  background-color: var(--gold);
}

.skew-frame-white {
  transform: skewX(-12deg);
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.skew-frame-white:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 195, 0, 0.5);
}

.clip-polygon-diagonal {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.clip-polygon-yellow-split {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.yellow-accent-bg {
  background-color: var(--gold);
}

.progress-bar-fill {
  height: 8px;
  background-color: var(--gold);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(255, 195, 0, 0.6);
}


.neon-border-pulse {
  box-shadow: 0 0 15px rgba(255, 195, 0, 0.3);
  animation: borderPulse 3s infinite alternate;
}
@keyframes borderPulse {
  0% { box-shadow: 0 0 10px rgba(255, 195, 0, 0.2); }
  100% { box-shadow: 0 0 25px rgba(255, 195, 0, 0.6); }
}

/* ─── MOBILE RESPONSIVE SKEW FLATTENING ─── */
@media (max-width: 640px) {
  .skew-card, .skew-badge-yellow, .skew-frame-white {
    transform: none !important;
  }
  .unskew-content {
    transform: none !important;
  }
  .pkg-tab {
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
  }
  h1 {
    font-size: clamp(2.8rem, 10vw, 4.5rem) !important;
  }
/* ─── MASTERCLASS EXPERT UI UTILITIES ─── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090B;
}
::-webkit-scrollbar-thumb {
  background: #3F3F46;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFC300;
  box-shadow: 0 0 10px rgba(255, 195, 0, 0.8);
}

.text-glow-yellow {
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.5), 0 0 40px rgba(255, 195, 0, 0.2);
}

.box-glow-gold {
  box-shadow: 0 0 25px rgba(255, 195, 0, 0.25);
}

.glass-panel {
  background: rgba(18, 18, 27, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel:hover {
  border-color: rgba(255, 195, 0, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 195, 0, 0.2);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
}
.btn-shine:hover::after {
  transform: rotate(30deg) translateY(100%);
}

/* ─── LUXURY PACKAGE TABS & CARDS UI ─── */
.pkg-tab {
  background: rgba(18, 18, 27, 0.9) !important;
  color: #A1A1AA !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 12px 26px !important;
  border-radius: 9999px !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.pkg-tab:hover {
  color: #FFFFFF !important;
  border-color: rgba(255, 195, 0, 0.5) !important;
  background: rgba(30, 30, 42, 0.95) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.2) !important;
}

.pkg-tab.active {
  background: #FFC300 !important;
  color: #09090B !important;
  border-color: #FFC300 !important;
  box-shadow: 0 0 30px rgba(255, 195, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.05) !important;
}







