/* 
========================================================================
VULKAN ATHLETICS - PREMIUM WEB STYLING DESIGN SYSTEM
========================================================================
*/

/* 1. VARIABLES & TOKEN DEFINITION */
:root {
    /* Colors */
    --color-bg-base: #0a0a0c;       /* Matte Obsidian */
    --color-bg-surface: #121215;    /* Carbon Grey */
    --color-bg-card: #18181c;       /* Graphite Black */
    --color-bg-glass: rgba(10, 10, 12, 0.75);
    
    --color-accent-primary: #ff4d00;   /* Electric Lava Orange */
    --color-accent-secondary: #ffb700; /* Solar Yellow Glow */
    --color-accent-tertiary: #00ffcc;  /* Volt Teal/Cyan */
    --color-accent-error: #ff3344;
    
    --gradient-accent: linear-gradient(135deg, #ff4d00 0%, #ff8700 50%, #ffb700 100%);
    --gradient-accent-vertical: linear-gradient(180deg, #ff4d00 0%, #ffb700 100%);
    --gradient-dark-fade: linear-gradient(180deg, transparent 0%, var(--color-bg-base) 100%);
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a8;
    --color-text-muted: #5e5e6a;
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout Tokens */
    --header-height: 80px;
    --container-max-width: 1280px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows & Glows */
    --glow-orange: 0 0 25px rgba(255, 77, 0, 0.35);
    --glow-orange-light: 0 0 15px rgba(255, 77, 0, 0.15);
    --glow-yellow: 0 0 25px rgba(255, 183, 0, 0.3);
    --glow-inset: inset 0 0 15px rgba(255, 255, 255, 0.03);
    --border-glass: 1px solid rgba(255, 255, 255, 0.06);
}

/* 2. CORE RESET & RESET OVERRIDES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
    background: #202026;
    border-radius: 4px;
    border: 1px solid var(--color-bg-base);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-primary);
    box-shadow: var(--glow-orange-light);
}

/* 3. REUSABLE UTILITIES */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Font Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    color: var(--color-text-secondary);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-orange { color: var(--color-accent-primary) !important; }
.text-yellow { color: var(--color-accent-secondary) !important; }
.text-cyan { color: var(--color-accent-tertiary) !important; }
.text-red { color: #ff3344 !important; }

/* Ambient Backlighting Glows */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.06) 0%, rgba(255, 183, 0, 0.015) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 1s var(--transition-normal);
}
body.mouse-active .cursor-glow {
    opacity: 1;
}

.ambient-light {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    mix-blend-mode: screen;
}
.orange-light { background: var(--color-accent-primary); }
.yellow-light { background: var(--color-accent-secondary); }

/* Buttons styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--color-accent-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ff5e1a;
    box-shadow: var(--glow-orange);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
    border-color: var(--color-accent-primary);
    background: rgba(255, 77, 0, 0.08);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--glow-orange-light);
}

.circle-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    transition: var(--transition-fast);
}
.circle-btn:hover {
    background: var(--color-accent-primary);
    color: white;
    box-shadow: var(--glow-orange-light);
    transform: translateY(-3px);
}

/* Glowing Neon button Pulse */
.glowing-btn {
    animation: buttonPulse 2s infinite alternate;
}
@keyframes buttonPulse {
    0% { box-shadow: 0 4px 15px rgba(255, 77, 0, 0.15); }
    100% { box-shadow: 0 4px 25px rgba(255, 77, 0, 0.45); }
}

/* SECTION STRUCTURES */
section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 2;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 650px;
    color: var(--color-text-secondary);
}

/* 4. HEADER & GLASSMORPHIC NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--color-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(10, 10, 12, 0.95);
    border-bottom: 1px solid rgba(255, 77, 0, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.03em;
}
.logo-icon {
    font-size: 1.8rem;
}
.logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1000;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: var(--transition-normal);
}

.mobile-nav-toggle .bar:nth-child(1) { top: 0; }
.mobile-nav-toggle .bar:nth-child(2) { top: 9px; }
.mobile-nav-toggle .bar:nth-child(3) { top: 18px; }

.mobile-nav-toggle.open .bar:nth-child(1) { transform: rotate(45deg); top: 9px; background-color: var(--color-accent-primary); }
.mobile-nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open .bar:nth-child(3) { transform: rotate(-45deg); top: 9px; background-color: var(--color-accent-primary); }

/* 5. CINEMATIC HERO SECTION */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(24, 24, 28, 0.9) 0%, var(--color-bg-base) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(rgba(255, 77, 0, 0.02) 1px, transparent 0),
        radial-gradient(rgba(255, 183, 0, 0.01) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 0, 0.06);
    border: 1px solid rgba(255, 77, 0, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent-primary);
    animation: dotPulse 1.5s infinite alternate;
}
@keyframes dotPulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent-primary);
}

.hero-title {
    font-size: 4.8rem;
    line-height: 0.95;
    margin-bottom: 24px;
    transition: transform 0.1s ease-out;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 580px;
    margin-bottom: 40px;
    transition: transform 0.1s ease-out;
}

/* Live Heartbeat BPM SVG Widget */
.heartbeat-widget {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    box-shadow: var(--glow-inset);
}

.heartbeat-container {
    width: 140px;
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.heartbeat-svg {
    width: 100%;
    height: 100%;
}

.heartbeat-path {
    fill: none;
    stroke: var(--color-accent-primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: heartbeatDraw 3s linear infinite;
}

/* Fast beat wave on CTA hover */
.heartbeat-path.fast-beat {
    animation-duration: 1.2s;
    stroke: var(--color-accent-secondary);
}

@keyframes heartbeatDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.heartbeat-metrics {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 20px;
}

.pulse-icon {
    width: 24px;
    height: 24px;
    animation: heartbeatScale 1s ease infinite;
}

@keyframes heartbeatScale {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.2); }
    60% { transform: scale(0.9); }
}

.hb-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hb-bpm {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    transition: color 0.3s;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-highlights {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}
.highlight-lbl {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* Hero Visual 3D tilt */
.hero-visual {
    width: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.visual-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border: var(--border-glass);
    transform: translateZ(0);
}

.card-glow-bg {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255, 77, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.15);
    transition: transform var(--transition-slow);
}

.visual-tag {
    position: absolute;
    background: rgba(24, 24, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateZ(30px); /* 3D layer depth */
}

.visual-tag i {
    color: var(--color-accent-primary);
    width: 24px;
    height: 24px;
}

.tag-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.tag-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.top-left {
    top: 24px;
    left: 24px;
}

.bottom-right {
    bottom: 24px;
    right: 24px;
}

/* 6. MARQUEE SCROLLING RIBBON */
.marquee-ribbon {
    background: var(--gradient-accent);
    padding: 16px 0;
    transform: rotate(-1.5deg) scale(1.02);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

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

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.05em;
    padding-right: 2rem;
}

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

/* 7. LIVE STATISTICS COUNTERS & MICRO-CHARTS */
.stats-section {
    background: var(--color-bg-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
    transform-style: preserve-3d;
}

.stat-card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 77, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card-inner-val {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    transform: translateZ(15px);
}

.stat-icon {
    width: 28px;
    height: 28px;
    color: var(--color-accent-primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    color: white;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-accent-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin-bottom: 24px;
    transform: translateZ(10px);
}

/* Micro Graph styles inside Stat Cards */
.stat-graph-container {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    opacity: 0.4;
    transition: opacity var(--transition-normal);
    transform: translateZ(5px);
}

.stat-graph-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.stat-graph-path {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1s ease-out;
}

.path-orange { stroke: var(--color-accent-primary); filter: drop-shadow(0 2px 6px rgba(255, 77, 0, 0.4)); }
.path-yellow { stroke: var(--color-accent-secondary); filter: drop-shadow(0 2px 6px rgba(255, 183, 0, 0.4)); }
.path-cyan { stroke: var(--color-accent-tertiary); filter: drop-shadow(0 2px 6px rgba(0, 255, 204, 0.4)); }

.stat-card:hover .stat-graph-container {
    opacity: 1;
}

.stat-card:hover .stat-graph-path {
    stroke-dashoffset: 0;
}

/* 8. SCHEDULE ARENA & BIOLOGICAL ESTIMATOR */
.schedule-split-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.schedule-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.tab-btn.active {
    background: var(--color-accent-primary);
    color: white;
    box-shadow: var(--glow-orange-light);
    border-color: transparent;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.schedule-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all var(--transition-normal);
    transform-style: preserve-3d;
}

.card-glow-border {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-md);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background var(--transition-normal);
}

.schedule-card:hover .card-glow-border {
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, transparent 50%, var(--color-accent-secondary) 100%);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    transform: translateZ(10px);
}

.card-tag {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tag-orange { background: rgba(255, 77, 0, 0.08); color: var(--color-accent-primary); }
.tag-yellow { background: rgba(255, 183, 0, 0.08); color: var(--color-accent-secondary); }
.tag-red { background: rgba(255, 51, 68, 0.08); color: #ff3344; }
.tag-cyan { background: rgba(0, 255, 204, 0.08); color: var(--color-accent-tertiary); }
.tag-purple { background: rgba(168, 85, 247, 0.08); color: #a855f7; }

/* Flashing capacity dot */
.class-spots-left {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.red-pulse { background-color: #ff3344; box-shadow: 0 0 8px #ff3344; animation: lightPulse 1.2s infinite alternate; }
.yellow-pulse { background-color: var(--color-accent-secondary); box-shadow: 0 0 8px var(--color-accent-secondary); animation: lightPulse 1.2s infinite alternate; }
.green-pulse { background-color: var(--color-accent-tertiary); box-shadow: 0 0 8px var(--color-accent-tertiary); }

@keyframes lightPulse {
    0% { opacity: 0.3; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.15); }
}

.class-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
    transform: translateZ(15px);
}

.class-desc {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    transform: translateZ(10px);
}

.class-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateZ(8px);
}

.c-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-stat-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.c-stat-val {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
}

.intensity-bar {
    width: 90px;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
    margin-top: auto;
    transform: translateZ(10px);
}

.trainer-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trainer-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trainer-lbl {
    display: block;
    font-size: 0.68rem;
    color: var(--color-text-muted);
}

.trainer-name {
    display: block;
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
}

.card-book-btn {
    border-color: rgba(255, 77, 0, 0.2);
    color: white;
    padding: 6px 14px;
    font-size: 0.8rem;
}
.card-book-btn:hover {
    background: var(--color-accent-primary);
    border-color: transparent;
}

/* Dynamic Calorie Predictor Widget Styling */
.calorie-predictor-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), var(--glow-inset);
    transform-style: preserve-3d;
}

.widget-title {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    transform: translateZ(15px);
}

.widget-desc {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    transform: translateZ(10px);
}

.predictor-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 24px;
    margin-bottom: 24px;
    transform: translateZ(12px);
}

.pred-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pred-lbl {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.pred-lbl-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-accent-primary);
}

/* Range input overrides */
.pred-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #25252d;
    border-radius: 3px;
    outline: none;
}

.pred-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-accent-primary);
    cursor: pointer;
    box-shadow: var(--glow-orange-light);
    transition: transform 0.1s;
}

.pred-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Intensity buttons row inside Predictor */
.intensity-selectors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 4px;
}

.int-tag-btn {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.int-tag-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.int-tag-btn.active {
    background: var(--color-accent-primary);
    border-color: transparent;
    color: white;
}

.predictor-output {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 16px;
    align-items: center;
    transform: translateZ(15px);
}

/* Circular SVG Progress meter */
.progress-ring-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
}

.ring-fill {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s;
    transform-origin: 50% 50%;
}

.ring-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ring-text span:first-child {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
}

.ring-unit {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-top: 2px;
}

.predictor-slots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.slot-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

.slot-val {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.target-book-redirect {
    font-size: 0.78rem;
    padding: 8px 12px;
}

/* 9. MEMBERSHIP PLANS (Price Switcher & Cards) */
.plans-section {
    background: var(--color-bg-surface);
}

.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-card);
    border: var(--border-glass);
    padding: 8px 20px;
    border-radius: 100px;
    margin-top: 24px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.toggle-label.active {
    color: white;
}

.billing-switch {
    width: 56px;
    height: 28px;
    background: #202026;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    padding: 2px;
    transition: background var(--transition-fast);
}

.billing-switch.annual {
    background: var(--color-accent-primary);
}

.switch-handle {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: block;
    transition: transform var(--transition-fast) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.billing-switch.annual .switch-handle {
    transform: translateX(28px);
}

.save-badge {
    background: rgba(255, 77, 0, 0.12);
    color: var(--color-accent-primary);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 800;
    display: inline-block;
    margin-left: 4px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 60px;
}

.plan-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 44px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
    transform-style: preserve-3d;
}

.plan-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    pointer-events: none;
    border-radius: var(--border-radius-md);
}

.popular-plan {
    border: 2px solid var(--color-accent-primary);
    transform: scale(1.03);
    box-shadow: var(--glow-orange-light), 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.popular-plan .plan-glow {
    background: radial-gradient(circle at 50% 0%, rgba(255, 77, 0, 0.12) 0%, transparent 60%);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 18px;
    border-radius: 100px;
    letter-spacing: 0.08em;
}

.plan-title {
    font-size: 1.7rem;
    margin-bottom: 8px;
    color: white;
    transform: translateZ(15px);
}

.plan-summary {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    transform: translateZ(10px);
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 36px;
    transform: translateZ(20px);
}

.plan-price .currency {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-right: 2px;
}

.plan-price .price-val {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    transform: translateZ(10px);
}

.plan-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 10px;
}

.plan-features strong {
    color: white;
}

.feat-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-icon.active { color: var(--color-accent-primary); }
.feat-icon.inactive { color: var(--color-text-muted); }

/* Sequential features load trigger styles */
.plan-features li.sweep-in {
    animation: sweepReveal 0.4s ease forwards;
}

@keyframes sweepReveal {
    0% { transform: translateX(-8px); opacity: 0.3; }
    100% { transform: translateX(0); opacity: 1; }
}

.plan-footer {
    margin-top: auto;
    transform: translateZ(15px);
}

.plan-btn {
    text-align: center;
}

/* 10. ELITE TRAINERS SHOWCASE */
.trainers-section {
    background: var(--color-bg-base);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trainer-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    transform-style: preserve-3d;
}

.trainer-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px var(--aura-color, rgba(255, 77, 0, 0.15));
    border-color: var(--aura-color, rgba(255, 77, 0, 0.25));
}

.trainer-img-wrapper {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: #000;
}

.trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    transition: all var(--transition-slow);
}

.trainer-card:hover .trainer-photo {
    filter: grayscale(10%) contrast(1.1) brightness(0.85);
    transform: scale(1.05);
}

.trainer-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    z-index: 10;
    gap: 20px;
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

/* Trainer dynamic soundwave quotes visual */
.trainer-soundwave-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 80%;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.trainer-card:hover .trainer-soundwave-wrapper {
    transform: translateY(0);
}

.coach-audio-btn {
    background: rgba(255, 255, 255, 0.08);
    border: var(--border-glass);
    color: white;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.coach-audio-btn:hover {
    background: var(--color-accent-primary);
    border-color: transparent;
}

.soundwave-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.soundwave-bars span {
    width: 2px;
    background-color: var(--color-accent-primary);
    height: 4px;
    border-radius: 1px;
}

/* Sound wave jump triggers when coach voice is activated */
.trainer-soundwave-wrapper.playing .soundwave-bars {
    opacity: 1;
}

.trainer-soundwave-wrapper.playing .soundwave-bars span {
    animation: bounceSoundwave 1s ease infinite alternate;
}

.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(1) { animation-delay: 0.1s; height: 12px; }
.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(2) { animation-delay: 0.3s; height: 16px; }
.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(3) { animation-delay: 0.5s; height: 8px; }
.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(4) { animation-delay: 0.2s; height: 18px; }
.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(5) { animation-delay: 0.4s; height: 10px; }
.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(6) { animation-delay: 0.6s; height: 14px; }
.trainer-soundwave-wrapper.playing .soundwave-bars span:nth-child(7) { animation-delay: 0.15s; height: 6px; }

@keyframes bounceSoundwave {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1.1); }
}

.trainer-socials {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.trainer-card:hover .trainer-socials {
    transform: translateY(0);
    transition-delay: 0.1s;
}

.trainer-socials a {
    width: 36px;
    height: 36px;
    background: var(--color-accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.trainer-socials a:hover {
    background: #ffffff;
    color: var(--color-accent-primary);
    transform: scale(1.1);
}

.trainer-details {
    padding: 24px;
    transform: translateZ(15px);
}

.trainer-card-name {
    font-size: 1.35rem;
    margin-bottom: 4px;
    color: white;
}

.trainer-role {
    display: block;
    font-size: 0.8rem;
    color: var(--color-accent-primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.trainer-quote {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    font-style: italic;
    border-left: 2px solid var(--color-accent-primary);
    padding-left: 10px;
    margin-bottom: 16px;
}

.trainer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.t-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--color-text-secondary);
}

/* 11. BEFORE/AFTER SLIDER & DYNAMIC STORY SHOWCASE */
.transformations-section {
    background: var(--color-bg-surface);
}

.transformation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

/* Dynamic Split-Image Slider */
.image-comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: var(--border-glass);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none; /* Silky-smooth drag reveals without page vertical scroll interference! */
}

.img-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-img {
    z-index: 10;
}
.before-img img {
    filter: grayscale(80%) brightness(0.85);
}

.after-img {
    z-index: 20;
    width: 50%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.after-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--slider-width, 100%) !important;
    max-width: none !important;
    object-fit: cover;
}

/* Image Labels */
.image-tag {
    position: absolute;
    top: 20px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 30;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.label-before {
    left: 20px;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.label-after {
    right: 20px;
    background: var(--gradient-accent);
    color: black;
}

/* Slider Handle Bar */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--gradient-accent-vertical);
    box-shadow: 0 0 10px rgba(255, 77, 0, 0.5);
    z-index: 40;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.handle-line {
    flex-grow: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.25);
}

.handle-arrow {
    background: var(--color-accent-primary);
    color: white;
    cursor: ew-resize;
    box-shadow: var(--glow-orange);
    border: none;
}

.handle-arrow i {
    width: 18px;
    height: 18px;
}

/* Testimonial sidebar */
.testimonial-sidebar {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 36px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform-style: preserve-3d;
}

.testimonial-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 16px;
    transform: translateZ(10px);
}

.arrow-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    color: var(--color-text-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.arrow-btn:hover {
    background: var(--color-accent-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--glow-orange-light);
}

.testimonial-indicator {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.testimonial-indicator strong {
    color: white;
    font-size: 1.05rem;
}

.testimonial-card-wrapper {
    position: relative;
    min-height: 160px;
}

.testimonial-card {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.stars {
    color: var(--color-accent-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.client-name {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 4px;
    transform: translateZ(15px);
}

.client-meta {
    font-size: 0.82rem;
    color: var(--color-accent-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 16px;
    transform: translateZ(10px);
}

.client-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    transform: translateZ(8px);
}

/* Biological Dials Linked Widget */
.biometric-gauge-card {
    background: rgba(255, 255, 255, 0.01);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 20px;
    transform: translateZ(12px);
}

.gauge-card-title {
    font-size: 0.82rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gauges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gauge-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gauge-lbl {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}

/* 12. HIGH-OCTANE GALLERY & DECIBELS METER */
.gallery-section {
    background: var(--color-bg-base);
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-nav-btn {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: var(--border-glass);
    cursor: pointer;
    transform-style: preserve-3d;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.9);
    transition: all var(--transition-slow);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.2) 60%, transparent 100%);
    opacity: 0.6;
    transition: opacity var(--transition-normal);
}

.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    z-index: 10;
    transform: translateY(12px);
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.gallery-caption h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2px;
}

.gallery-caption p {
    font-size: 0.78rem;
    color: var(--color-accent-primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Sound Decibel Level Visualizer graphic inside grid */
.gallery-decibel-meter {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(10, 10, 12, 0.85);
    border: var(--border-glass);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px) translateZ(20px);
    transition: all var(--transition-normal);
}

.db-details {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.db-lbl {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.db-num {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--color-accent-secondary);
    margin-top: 2px;
}

.db-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.db-bars span {
    width: 2px;
    background-color: var(--color-accent-secondary);
    height: 2px;
    border-radius: 1px;
}

/* Slow jumping bars loop on hover */
.gallery-item:hover .gallery-decibel-meter {
    opacity: 1;
    transform: translateY(0) translateZ(20px);
}

.gallery-item:hover .db-bars span {
    animation: jumpAcoustic 1s ease infinite alternate;
}

.gallery-item:hover .db-bars span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.gallery-item:hover .db-bars span:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.gallery-item:hover .db-bars span:nth-child(3) { height: 4px; animation-delay: 0.5s; }
.gallery-item:hover .db-bars span:nth-child(4) { height: 14px; animation-delay: 0.2s; }
.gallery-item:hover .db-bars span:nth-child(5) { height: 6px; animation-delay: 0.4s; }

@keyframes jumpAcoustic {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.1); }
}

.gallery-item:hover .gallery-img {
    filter: grayscale(0%) brightness(0.9) scale(1.04);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 0.9;
}

/* 13. BOOKING SIGNUP FORM & 3D PASS FLIPPER */
.booking-section {
    background: var(--color-bg-surface);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 77, 0, 0.06);
    border: 1px solid rgba(255, 77, 0, 0.2);
    color: var(--color-accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrapper i {
    width: 22px;
    height: 22px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 6px;
}
.benefit-item p {
    font-size: 0.92rem;
}

/* Flips Card 3D Animation Graphic */
.booking-card-wrapper {
    perspective: 1500px;
    width: 100%;
}

.booking-card-inner {
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform var(--transition-slow);
}

.booking-card-inner.flipped {
    transform: rotateY(180deg);
}

.booking-form-side {
    width: 100%;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-style: preserve-3d;
    transform: rotateY(0deg) translateZ(1px);
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--glow-inset);
}

.booking-ticket-side {
    width: 100%;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-style: preserve-3d;
    position: absolute;
    top: 0; left: 0; height: 100%;
    transform: rotateY(180deg) translateZ(1px);
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--glow-inset);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 1.7rem;
    color: white;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 14px;
}

/* inputs floating labels */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: all var(--transition-fast);
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.65rem;
    color: var(--text-muted);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.92rem;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: 0;
    left: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    background: var(--color-bg-card);
    padding: 2px 6px;
    transform: translateY(-50%);
}

.input-glow {
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
}

.input-group input:focus, .input-group select:focus {
    border-color: rgba(255, 77, 0, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.input-group input:focus ~ .input-glow, .input-group select:focus ~ .input-glow {
    width: 100%;
}

.fitness-goals-selector {
    margin-bottom: 24px;
}

.goals-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.goals-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.goal-tag {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text-secondary);
}

.goal-tag:hover {
    background: rgba(255, 255, 255, 0.05);
}

.goal-tag.active {
    background: rgba(255, 77, 0, 0.1);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    box-shadow: var(--glow-orange-light);
}

/* DNA Fingerprint terminal style replacement submit */
.fingerprint-scanner-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
}

.scanner-pad {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.01);
    border: 2px dashed rgba(255, 77, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    touch-action: none !important; /* Extremely critical to prevent scroll gestures from canceling touch scanning! */
}

.scanner-pad:hover {
    background: rgba(255, 77, 0, 0.04);
    border-color: var(--color-accent-primary);
    transform: scale(1.05);
    box-shadow: var(--glow-orange-light);
}

.scanner-icon {
    width: 32px;
    height: 32px;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.scanner-pad:hover .scanner-icon {
    color: var(--color-accent-primary);
}

/* Horizontal sliding scanning laser */
.scanner-laser-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
    box-shadow: 0 0 8px var(--color-accent-primary);
    opacity: 0;
}

.scanner-pad:hover .scanner-laser-line {
    opacity: 1;
    animation: scannerGlide 1.8s ease infinite;
}

@keyframes scannerGlide {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.scan-circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    transform: rotate(-90deg);
}

.scan-circle {
    fill: none;
    stroke: var(--color-accent-secondary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
}

/* scanning clickhold states */
.fingerprint-scanner-module.scanning .scanner-pad {
    background: rgba(255, 77, 0, 0.08);
    border-color: var(--color-accent-secondary);
    box-shadow: var(--glow-orange);
}

.fingerprint-scanner-module.scanning .scanner-icon {
    color: var(--color-accent-secondary);
    animation: heartbeatScale 0.6s ease infinite;
}

.fingerprint-scanner-module.scanning .scan-circle {
    animation: scanDraw 1.5s linear forwards;
}

@keyframes scanDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* validation flash on submit checks */
.fingerprint-scanner-module.validated .scanner-pad {
    border-color: var(--color-accent-tertiary);
    background: rgba(0, 255, 204, 0.08);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.35);
}

.fingerprint-scanner-module.validated .scanner-icon {
    color: var(--color-accent-tertiary);
}

.scanner-instructions {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s;
}

.fingerprint-scanner-module.scanning .scanner-instructions {
    color: var(--color-accent-secondary);
}

.fingerprint-scanner-module.validated .scanner-instructions {
    color: var(--color-accent-tertiary);
}

/* Error validation states style */
.error-msg {
    display: none;
    font-size: 0.75rem;
    color: var(--color-accent-error);
    margin-top: 4px;
    font-weight: 600;
}
.input-group.invalid input, .input-group.invalid select {
    border-color: var(--color-accent-error);
}
.input-group.invalid .error-msg {
    display: block;
}

/* SECURE TICKET STYLING & PASS GLOW */
.ticket-wrapper {
    border: 2px dashed rgba(255, 77, 0, 0.35);
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(12, 12, 15, 0.98) 100%);
    border-radius: var(--border-radius-md);
    padding: 24px;
    position: relative;
    box-shadow: var(--glow-orange-light);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.ticket-wrapper::before, .ticket-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-bg-card);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.ticket-wrapper::before { left: -11px; border-right: 2px dashed rgba(255, 77, 0, 0.35); }
.ticket-wrapper::after { right: -11px; border-left: 2px dashed rgba(255, 77, 0, 0.35); }

/* Gliding barcode sweep line */
.ticket-laser-line {
    position: absolute;
    left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #ff3344, transparent);
    box-shadow: 0 0 10px #ff3344;
    z-index: 5;
    animation: ticketGlide 3s ease-in-out infinite;
}

@keyframes ticketGlide {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.ticket-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: white;
}

.ticket-badge {
    background: var(--gradient-accent);
    color: black;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.ticket-main-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.t-lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.t-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.ticket-details-grid {
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.ticket-details-grid .t-val {
    font-size: 0.95rem;
}

.ticket-pass-id {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.t-code {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--color-accent-primary);
    font-weight: 700;
}

.ticket-footer {
    display: flex;
    justify-content: center;
}

.barcode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.barcode-lines {
    display: flex;
    height: 40px;
    align-items: stretch;
    background: white;
    padding: 6px 12px;
    border-radius: 4px;
}

.barcode-lines span {
    display: block;
    background: black;
    width: 2px;
    margin-right: 2px;
}

.barcode-lines span:nth-child(even) { width: 1px; }
.barcode-lines span:nth-child(3n) { width: 3px; }
.barcode-lines span:nth-child(5n) { width: 4px; margin-right: 4px; }

.barcode-number {
    font-family: monospace;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.reset-form-btn {
    align-self: center;
    margin-top: 10px;
    border-color: rgba(255, 255, 255, 0.1);
}

/* 14. FOOTER */
.main-footer {
    background: #070709;
    border-top: 1px solid rgba(255, 77, 0, 0.1);
    padding: 80px 0 0 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-pitch {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 20px 0 30px 0;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-title {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 40px; height: 2px;
    background: var(--color-accent-primary);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.footer-links li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    width: 18px;
    height: 18px;
    color: var(--color-accent-primary);
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-timings {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-timings li {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.footer-timings span:first-child {
    color: var(--color-text-secondary);
}

.footer-timings span:last-child {
    color: white;
    font-weight: 600;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
}

.newsletter-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--color-accent-primary);
    box-shadow: var(--glow-orange-light);
}

.newsletter-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 18px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    flex-grow: 1;
}

.newsletter-input-wrapper button {
    background: var(--color-accent-primary);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.newsletter-input-wrapper button:hover {
    background: #ff5e1a;
}

.newsletter-input-wrapper button i {
    width: 18px;
    height: 18px;
}

.nl-success-msg {
    display: none;
    font-size: 0.8rem;
    color: var(--color-accent-tertiary);
    font-weight: 700;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: white;
}

/* 15. DYNAMIC CUSTOM LIGHTBOX MODAL */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5, 5, 6, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 3.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10002;
}

.lightbox-close:hover {
    color: var(--color-accent-primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10002;
}

.lightbox-nav:hover {
    background: var(--color-accent-primary);
    border-color: transparent;
    box-shadow: var(--glow-orange);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 77, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
}

.lightbox-caption h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 4px;
}

.lightbox-caption p {
    font-size: 0.95rem;
    color: var(--color-accent-primary);
    font-weight: 700;
}

/* ==========================================
   16. DYNAMIC SPOTLIGHT HOVER EFFECTS
   ========================================== */
.plan-card:hover .plan-glow {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 77, 0, 0.12) 0%, transparent 60%);
}

.stat-card:hover .stat-card-glow {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 77, 0, 0.08) 0%, transparent 60%);
}

.schedule-card:hover {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 77, 0, 0.03) 0%, #1c1c22 60%);
}

/* ==========================================
   16b. PREMIUM FEATURES ADDITIONAL STYLING
   ========================================== */

/* 1. Hero Canvas Particle Drift */
.hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 2. Stats Section Chrono-Graphs */
.stat-chrono-graph {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height var(--transition-normal), opacity var(--transition-normal), margin-top var(--transition-normal);
    margin-top: 0;
    transform: translateZ(5px);
    width: 100%;
}

.stat-card:hover .stat-chrono-graph,
.stat-card.active-graph .stat-chrono-graph {
    height: 105px;
    opacity: 1;
    margin-top: 20px;
}

.chrono-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 65px;
    margin-top: 8px;
    gap: 8px;
}

.bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.bar-val {
    width: 100%;
    max-width: 12px;
    background: var(--gradient-accent-vertical);
    border-radius: 4px 4px 0 0;
    height: 0;
    transition: height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(255, 77, 0, 0.25);
}

.stat-card:hover .bar-val,
.stat-card.active-graph .bar-val {
    height: var(--bar-h, 0%);
}

.bar-lbl {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    font-weight: 800;
}

/* Dynamic Tooltip on Bar hover */
.bar-col::before {
    content: attr(title) "\a" attr(data-val);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--color-bg-base);
    border: 1px solid var(--color-accent-primary);
    box-shadow: var(--glow-orange-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    color: white;
    white-space: pre-wrap;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 100;
}

.bar-col:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* 3. Mobile Menu CTA button */
.mobile-menu-cta {
    display: none;
    margin-top: 30px;
    width: 100%;
}

@media (max-width: 992px) {
    .mobile-menu-cta {
        display: block;
    }
}

/* Membership Highlight cleanup */
.plan-card.active-match {
    border-color: var(--color-accent-primary) !important;
    transform: scale(1.04) !important;
    box-shadow: var(--glow-orange), 0 25px 50px rgba(0, 0, 0, 0.5) !important;
    z-index: 10;
}

.plan-card.active-match .plan-glow {
    background: radial-gradient(circle at 50% 0%, rgba(255, 77, 0, 0.15) 0%, transparent 60%) !important;
}

/* 4. Trainers Spotlight Section Backdrop Wash */
.trainers-bg-wash {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.trainers-bg-wash.active {
    opacity: 1;
}

/* Mobile-only Carousel Controls hidden on Desktop by default */
.schedule-carousel-controls,
.gallery-carousel-controls {
    display: none !important;
}

/* Utility display overrides */
.mobile-only {
    display: none !important;
}

/* Premium Plan Benefits Modal styles */
.benefits-modal {
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000 !important; /* Above everything */
}

.benefits-modal.active {
    display: flex !important;
}

.benefits-modal-content {
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 77, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--glow-inset);
    width: 90%;
    max-width: 400px;
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    position: relative;
    animation: benefitsFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes benefitsFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.benefits-close {
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    transition: color 0.2s;
}

.benefits-close:hover {
    color: white;
}

.benefits-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    text-align: center;
}

.benefits-tag {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 77, 0, 0.1);
    color: var(--color-accent-primary);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 8px;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.benefits-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent-secondary);
}

.benefits-body {
    margin-bottom: 24px;
}

.benefits-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.4;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.benefits-list li {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li strong {
    color: white;
}

.benefits-list .feat-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.benefits-list .feat-icon.active {
    color: var(--color-accent-primary);
}

.benefits-list .feat-icon.inactive {
    color: rgba(255, 255, 255, 0.15);
}

.benefits-footer {
    display: flex;
    justify-content: center;
}

/* 5. Facility Architectural Blueprint Highlights */
.gallery-split-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.gallery-grid-area {
    width: 100%;
}

.gallery-blueprint-area {
    width: 100%;
}

.blueprint-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--glow-inset);
    position: relative;
    transform-style: preserve-3d;
    text-align: left;
}

.blueprint-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.blueprint-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.blueprint-svg-wrapper {
    width: 100%;
    background: rgba(10, 10, 12, 0.6);
    border: 1px dashed rgba(255, 77, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-svg {
    width: 100%;
    height: auto;
    max-height: 220px;
    overflow: visible;
}

.bp-wall {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2.5;
}

.bp-zone {
    fill: rgba(255, 255, 255, 0.01);
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    cursor: pointer;
    transition: fill 0.4s ease, stroke 0.4s ease, filter 0.4s ease;
}

.bp-zone:hover, .bp-zone.active {
    fill: rgba(255, 77, 0, 0.12);
    stroke: var(--color-accent-primary);
    stroke-width: 2;
    stroke-dasharray: none;
    filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.45));
}

.bp-label {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 800;
    fill: var(--color-text-muted);
    text-anchor: middle;
    letter-spacing: 0.05em;
    pointer-events: none;
    transition: fill 0.3s ease, filter 0.3s ease;
}

.bp-label.active {
    fill: white;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* 6. Mobile Horizontal Scrolling & App Sweeps */
@media (max-width: 992px) {
    .mobile-only {
        display: block !important;
    }

    .single-row-mobile {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 16px !important;
        padding: 10px 20px 20px 20px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        width: calc(100% + 40px) !important;
        align-items: stretch !important;
    }
    
    .single-row-mobile::-webkit-scrollbar {
        display: none !important;
    }
    
    .single-row-mobile > * {
        scroll-snap-align: start !important; /* Premium snap-to-left layout alignment! */
        margin: 0 !important;
        flex-shrink: 0 !important;
        transform: none !important;
        height: auto !important;
    }

    /* Specific child card mobile sizes (Scaled down, compact and neat) */
    .stats-grid.single-row-mobile .stat-card {
        flex: 0 0 200px !important;
        padding: 16px 12px !important;
    }
    
    .schedule-grid.single-row-mobile .schedule-card {
        flex: 0 0 82vw !important;
        max-width: 320px !important;
        padding: 20px !important;
        min-height: auto !important;
    }
    
    .plans-grid.single-row-mobile .plan-card {
        flex: 0 0 82vw !important;
        max-width: 310px !important;
        padding: 30px 20px !important;
    }
    
    .trainers-grid.single-row-mobile .trainer-card {
        flex: 0 0 72vw !important;
        max-width: 260px !important;
    }
    
    .gallery-grid.single-row-mobile .gallery-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        aspect-ratio: 16/10 !important;
        scroll-snap-align: center !important; /* Centered snap for single full-page slide! */
    }
    
    /* Layout structural overrides for split pages on mobile - Hides SVG floorplan map */
    .gallery-split-layout {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .gallery-blueprint-area {
        display: none !important;
    }
    
    .gallery-grid-area {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}


/* ==========================================
   17. RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (min-width: 993px) {
    .desktop-only { display: inline-flex; }
}

@media (max-width: 1200px) {
    .hero-title { font-size: 4rem; }
    .hero-container { gap: 20px; }
    .plans-grid { gap: 20px; }
    .trainers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .schedule-split-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    section { padding: 60px 0 !important; }
    .section-title { font-size: 2.2rem !important; line-height: 1.1 !important; margin-bottom: 12px !important; }
    .section-desc { font-size: 0.95rem !important; line-height: 1.5 !important; }
    
    .desktop-only { display: none !important; }
    
    /* Navigation drawer */
    .mobile-nav-toggle { display: block !important; }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important; right: -100% !important;
        width: 280px !important; height: 100vh !important;
        background: #0f0f12 !important;
        border-left: 1px solid rgba(255, 77, 0, 0.15) !important;
        padding: 100px 30px 40px 30px !important;
        z-index: 998 !important;
        display: flex !important;
        flex-direction: column !important;
        transition: right var(--transition-normal) !important;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.8) !important;
    }
    
    .nav-menu.open {
        right: 0 !important;
    }
    
    .nav-list {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .nav-link {
        font-size: 1.1rem !important;
        display: block !important;
    }

    /* Hero Responsive */
    .hero-section { min-height: auto !important; padding-top: calc(var(--header-height) + 30px) !important; }
    .hero-container { grid-template-columns: 1fr !important; gap: 40px !important; }
    .hero-content { text-align: center !important; }
    .hero-badge { justify-content: center !important; margin-bottom: 16px !important; }
    .hero-title { font-size: 2.8rem !important; line-height: 1.05 !important; margin-bottom: 16px !important; }
    .hero-subtitle { font-size: 1rem !important; margin-bottom: 24px !important; margin-left: auto !important; margin-right: auto !important; }
    .hero-ctas { justify-content: center !important; margin-bottom: 30px !important; }
    .hero-highlights { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; text-align: center !important; padding-top: 20px !important; }
    .highlight-num { font-size: 1.5rem !important; }
    .highlight-lbl { font-size: 0.72rem !important; }
    
    /* Grid overrides to prevent vertical blocks and leverage swipes */
    .plans-grid { max-width: none !important; margin-left: 0 !important; margin-right: 0 !important; }
    .popular-plan { transform: scale(1) !important; }
    .popular-plan:hover { transform: translateY(-4px) scale(1) !important; }
    .booking-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .footer-container { grid-template-columns: 1fr !important; gap: 40px !important; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr) !important; }
    
    .transformation-container { grid-template-columns: 1fr !important; gap: 30px !important; }
    
    .lightbox-nav { width: 44px !important; height: 44px !important; }
    .lightbox-prev { left: 16px !important; }
    .lightbox-next { right: 16px !important; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px !important; }
    .section-title { font-size: 1.8rem !important; }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .hero-title { font-size: 2.3rem !important; }
    .hero-highlights { grid-template-columns: 1fr !important; gap: 16px !important; }
    
    .footer-links-grid { grid-template-columns: 1fr !important; }
    
    .testimonial-sidebar { padding: 20px !important; }
    .booking-form-side, .booking-ticket-side { padding: 24px 20px !important; }
    
    .ticket-wrapper { padding: 16px !important; gap: 12px !important; }
    .t-val { font-size: 1.05rem !important; }
    .ticket-details-grid .t-val { font-size: 0.85rem !important; }
    .barcode-lines { height: 32px !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.0rem !important; }
    .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-ctas .btn {
        width: 100% !important;
        margin: 0 !important;
    }
    .tab-btn { padding: 8px 14px !important; font-size: 0.8rem !important; }
    .intensity-selectors { grid-template-columns: repeat(2, 1fr) !important; gap: 4px !important; }
}

/* ==========================================
   18. FINAL MOBILES & ULTRA-COMPACT OVERRIDES (CASCADING PEAK)
   ========================================== */

@media (max-width: 992px) {
    /* Horizontal Swipe touch actions & scrolling stability */
    .single-row-mobile {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: auto !important; /* Restore vertical page scrolling while swiping horizontally! */
        scrollbar-width: none !important;
        gap: 16px !important;
        padding: 10px 20px 20px 20px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        width: calc(100% + 40px) !important;
        align-items: stretch !important;
    }

    .single-row-mobile::-webkit-scrollbar {
        display: none !important;
    }

    .single-row-mobile > * {
        scroll-snap-align: start !important; /* Premium snap-to-left alignment */
        margin: 0 !important;
        flex-shrink: 0 !important;
        transform: none !important;
        opacity: 1 !important; /* Instant visibility on mobile swiping, avoiding IntersectionObserver issues! */
        height: auto !important;
    }

    /* Constrain Section Titles on mobile to prevent clipping */
    .section-title {
        font-size: clamp(1.4rem, 6vw, 2.2rem) !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        text-align: center !important;
    }

    /* Mobile Timetable Carousel Upgrade */
    .schedule-main-area {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .schedule-slider-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        overflow: hidden !important; /* Hide horizontal overflow from children */
    }

    #scheduleGrid.single-row-mobile {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: auto !important;
        gap: 0 !important; /* Zero gap for seamless carousel slider pages */
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    #scheduleGrid.single-row-mobile .schedule-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        border-radius: var(--border-radius-md) !important;
        box-sizing: border-box !important;
        white-space: normal !important; /* Force text to wrap to next line instead of single-row nowrap */
        padding: 12px 14px !important; /* Shrunk padding by 50% vertically */
        min-height: auto !important;
        gap: 6px !important;
    }

    #scheduleGrid.single-row-mobile .schedule-card * {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
    }

    #scheduleGrid.single-row-mobile .card-top {
        margin-bottom: 6px !important;
    }

    #scheduleGrid.single-row-mobile .class-name {
        font-size: 1.15rem !important; /* Compact header typography */
        margin-bottom: 4px !important;
    }

    #scheduleGrid.single-row-mobile .class-desc {
        font-size: 0.76rem !important; /* Shrunk desc size by 50% visually */
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    #scheduleGrid.single-row-mobile .class-stats {
        padding: 6px 0 !important;
        gap: 6px !important;
    }

    #scheduleGrid.single-row-mobile .c-stat-lbl,
    #scheduleGrid.single-row-mobile .c-stat-val {
        font-size: 0.72rem !important;
    }

    #scheduleGrid.single-row-mobile .intensity-bar {
        width: 70px !important;
        height: 4px !important;
    }

    #scheduleGrid.single-row-mobile .card-footer {
        padding-top: 8px !important;
        margin-top: 4px !important;
    }

    #scheduleGrid.single-row-mobile .trainer-thumb {
        width: 24px !important;
        height: 24px !important;
    }

    #scheduleGrid.single-row-mobile .trainer-lbl {
        font-size: 0.6rem !important;
    }

    #scheduleGrid.single-row-mobile .trainer-name {
        font-size: 0.7rem !important;
    }

    #scheduleGrid.single-row-mobile .card-book-btn {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
    }

    .schedule-carousel-controls {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 20px !important;
        width: 100% !important;
    }

    /* Horizontal scrollable tab filters for sleek mobile header */
    .schedule-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        gap: 8px !important;
        padding: 5px 20px 15px 20px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        width: calc(100% + 40px) !important;
        margin-bottom: 24px !important;
        touch-action: auto !important; /* Restores vertical scrolls */
    }
    
    .schedule-tabs::-webkit-scrollbar {
        display: none !important;
    }
    
    .schedule-tabs .tab-btn {
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    /* Compact 2x2 Mobile Grid layout to fit stats counter in a single frame */
    .stats-grid.single-row-mobile {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .stats-grid.single-row-mobile .stat-card {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 10px !important;
        box-sizing: border-box !important;
        scroll-snap-align: none !important;
        margin: 0 !important;
    }
    
    .stats-grid.single-row-mobile .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stats-grid.single-row-mobile .stat-suffix {
        font-size: 1rem !important;
    }
    
    .stats-grid.single-row-mobile .stat-label {
        font-size: 0.72rem !important;
        margin-bottom: 8px !important;
    }
    
    .stats-grid.single-row-mobile .stat-chrono-graph {
        margin-top: 8px !important;
    }
    
    .stats-grid.single-row-mobile .stat-card:hover .stat-chrono-graph,
    .stats-grid.single-row-mobile .stat-card.active-graph .stat-chrono-graph {
        height: 70px !important;
    }
    
    .stats-grid.single-row-mobile .chrono-bars {
        height: 40px !important;
        gap: 4px !important;
    }

    /* Mobile Gallery Slider Carousel Layout Overrides */
    .gallery-slider-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        position: relative !important;
    }

    .gallery-grid.single-row-mobile {
        gap: 0 !important; /* Zero gap for seamless full-width slider pages! */
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .gallery-grid.single-row-mobile .gallery-item {
        border-radius: var(--border-radius-md) !important;
        border: var(--border-glass) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    }

    /* Keep gallery images clean and visually premium on mobile */
    .gallery-decibel-meter {
        display: none !important;
    }

    /* Symmetrical bottom controls deck */
    .gallery-carousel-controls {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 20px !important;
        width: 100% !important;
    }

    .carousel-control-btn {
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 77, 0, 0.3) !important;
        color: white !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all var(--transition-fast) !important;
    }

    .carousel-control-btn:active {
        background: var(--color-accent-primary) !important;
        color: black !important;
        box-shadow: var(--glow-orange-light) !important;
    }

    .carousel-control-btn.disabled {
        opacity: 0.15 !important;
        pointer-events: none !important;
        border-color: rgba(255, 255, 255, 0.05) !important;
    }

    /* Carousel Pagination Dots and expanding active Pill shape */
    .carousel-dots {
        display: flex !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .carousel-dots .dot {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.2) !important;
        cursor: pointer !important;
        transition: all var(--transition-normal) !important;
    }

    .carousel-dots .dot.active {
        background: var(--color-accent-primary) !important;
        width: 20px !important; /* Premium expanding pill shape active state! */
        border-radius: 4px !important;
        box-shadow: var(--glow-orange-light) !important;
    }

    /* Translucent Cinematic Hero Backing visual */
    .hero-section {
        position: relative !important;
        overflow: hidden !important;
        padding-top: calc(var(--header-height) + 40px) !important;
        padding-bottom: 60px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-visual {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        opacity: 0.15 !important;
        pointer-events: none !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .visual-wrapper {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        aspect-ratio: auto !important;
    }
    
    .hero-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        filter: grayscale(100%) contrast(1.15) brightness(0.6) !important;
    }
    
    .visual-tag {
        display: none !important;
    }
    
    .hero-container {
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-badge {
        justify-content: center !important;
        margin-bottom: 16px !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7.5vw, 2.8rem) !important;
        line-height: 1.05 !important;
        text-align: center !important;
        margin-bottom: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        word-wrap: break-word !important;
    }

    .hero-subtitle {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        text-align: center !important;
        max-width: 500px !important;
        margin-bottom: 24px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .heartbeat-widget {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 30px auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: var(--border-glass) !important;
        padding: 12px 18px !important;
        gap: 15px !important;
        border-radius: var(--border-radius-md) !important;
    }

    .heartbeat-container {
        width: 110px !important;
        height: 35px !important;
    }

    .heartbeat-metrics {
        padding-left: 15px !important;
        gap: 8px !important;
        border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .hb-bpm {
        font-size: 1rem !important;
    }

    .hero-ctas {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }


    /* Single Row Hero Highlights */
    .hero-highlights.grid-3 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        gap: 16px !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    }
    
    .hero-highlights.grid-3::-webkit-scrollbar {
        display: none !important;
    }
    
    .hero-highlights.grid-3 .highlight-item {
        flex: 0 0 130px !important;
        text-align: center !important;
    }

    /* Bulletproof Mobile Stacking for Schedule Split Layout */
    .schedule-split-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Calorie Predictor Container fix to prevent right-screen overflow */
    .schedule-predictor-area {
        display: block !important;
        width: 100% !important;
        max-width: 480px !important;
        margin: 20px auto 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .calorie-predictor-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Compact Swipeable Memberships Plan Cards */
    .plans-grid.single-row-mobile .plan-card .plan-features {
        display: none !important;
    }
    
    .plans-grid.single-row-mobile .plan-card {
        padding: 24px 16px !important;
        min-height: auto !important;
    }
    
    .plans-grid.single-row-mobile .plan-price {
        margin-bottom: 20px !important;
    }

    /* Scrollable Testimonials & Slider Compact overlays */
    .biometric-gauge-card {
        display: none !important;
    }
    
    .image-comparison-slider {
        max-height: 240px !important;
        aspect-ratio: 16/10 !important;
        margin-bottom: 15px !important;
    }
}

/* Global Form Compression Overrides (Ensures highly compact, elite visual size) */
.booking-form-side, .booking-ticket-side {
    padding: 24px 28px !important;
}

.form-title {
    font-size: 1.35rem !important;
    margin-bottom: 18px !important;
    padding-bottom: 10px !important;
}

.input-group {
    margin-bottom: 14px !important;
}

.input-group input, .input-group select {
    padding: 10px 12px !important;
    font-size: 0.88rem !important;
}

.input-group label {
    font-size: 0.88rem !important;
}

.fitness-goals-selector {
    margin-bottom: 16px !important;
}

.goals-label {
    margin-bottom: 6px !important;
    font-size: 0.75rem !important;
}

.goal-tag {
    padding: 4px 10px !important;
    font-size: 0.74rem !important;
}

.fingerprint-scanner-module {
    margin-top: 6px !important;
    padding-top: 12px !important;
    gap: 8px !important;
}

.scanner-pad {
    width: 60px !important;
    height: 60px !important;
}

.scanner-pad i {
    width: 22px !important;
    height: 22px !important;
}

.scanner-instructions {
    font-size: 0.7rem !important;
}

/* Globally Hide "Hear the Coach" Soundwave wrapper */
.trainer-soundwave-wrapper {
    display: none !important;
}
