/* ============================================
   TITAN GYM — Main Stylesheet
   Ultra Premium Dark Theme with Neon Accents
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --primary: #ff4d00;
    --primary-light: #ff6b2b;
    --primary-dark: #cc3d00;
    --primary-glow: rgba(255, 77, 0, 0.4);
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --gold: #ffd700;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-glass: rgba(17, 17, 17, 0.7);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 77, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #ff4d00, #ff6b2b, #ff8c00);
    --gradient-accent: linear-gradient(135deg, #00d4ff, #0099ff);
    --gradient-dark: linear-gradient(180deg, #0a0a0a, #111111);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* === SELECTION === */
::selection {
    background: var(--primary);
    color: white;
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

@media (max-width: 768px) {
    .cursor-glow { display: none; }
}

/* === PARTICLE CANVAS === */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* === CONTAINER === */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* === TEXT UTILITIES === */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    text-align: center;
    position: relative;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.loader-ring:nth-child(1) {
    width: 100px; height: 100px;
    border-top-color: var(--primary);
    animation: loaderSpin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 120px; height: 120px;
    border-right-color: var(--accent);
    animation: loaderSpin 1.6s linear infinite reverse;
}

.loader-ring:nth-child(3) {
    width: 140px; height: 140px;
    border-bottom-color: var(--gold);
    animation: loaderSpin 2s linear infinite;
}

.loader-logo {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
}

.loader-t { color: var(--primary); }
.loader-g { color: var(--accent); }

.loader-text {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-top: 60px;
    margin-bottom: 16px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.loader-percent {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--primary);
    margin-top: 8px;
    letter-spacing: 2px;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transform: rotate(-5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 3px;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--primary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1001;
    padding: 4px 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    pointer-events: all;
    opacity: 1;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.mobile-menu-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0;
    padding: 80px 30px 40px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease, color 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(8) { transition-delay: 0.45s; }

.mobile-link:hover,
.mobile-link:active {
    color: var(--primary);
}

.mobile-link-num {
    font-size: 11px;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 1px;
}

.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.5s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 12px;
}

.mobile-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.mobile-hours {
    font-size: 13px;
    color: var(--text-muted);
}

.mobile-hours i {
    color: var(--primary);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(255,77,0,0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,77,0,0.15);
    border: 1px solid rgba(255,77,0,0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    left: 16px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span { position: relative; z-index: 1; }

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    font-size: clamp(42px, 10vw, 96px);
    letter-spacing: -1px;
}

.hero-line-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.hero-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--primary-glow);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255,77,0,0.1);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === HERO STATS === */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 0 28px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: white;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(16px, 3vw, 22px);
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    align-self: center;
}

/* === HERO SCROLL === */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--bg-dark));
    z-index: 3;
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: clamp(14px, 2.5vw, 17px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,77,0,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.about-card:hover::before { opacity: 1; }

.about-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,77,0,0.1);
    border: 1px solid rgba(255,77,0,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.about-card:hover .about-card-icon {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

/* === ABOUT SHOWCASE === */
.about-image-showcase {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.showcase-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 21/9;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-main:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(10,10,10,0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.showcase-label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
}

/* === FACILITIES === */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.facility-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.facility-card-large {
    grid-column: 1 / -1;
}

.facility-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/10;
}

.facility-card-large .facility-img-wrapper {
    aspect-ratio: 21/9;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-card:hover .facility-img {
    transform: scale(1.08);
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(10,10,10,0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all 0.4s ease;
}

.facility-tag {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--primary);
    background: rgba(255,77,0,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    border: 1px solid rgba(255,77,0,0.2);
}

.facility-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.facility-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.facility-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.facility-features span {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.facility-features i {
    color: var(--primary);
    font-size: 10px;
}

/* === CLASSES === */
.classes-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    background: transparent;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.class-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.class-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px var(--primary-glow);
}

.class-card.hidden {
    display: none;
}

.class-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.class-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.class-card:hover .class-img {
    transform: scale(1.08);
}

.class-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.class-badge-new {
    background: var(--gradient-accent);
}

.class-badge-fire {
    background: linear-gradient(135deg, #ff4d00, #ffd700);
}

.class-info {
    padding: 20px;
}

.class-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.class-category {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.class-intensity i {
    font-size: 10px;
    color: var(--primary);
}

.class-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.class-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.class-details {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.class-details span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.class-details i {
    color: var(--primary);
    font-size: 11px;
}

/* === PRICING === */
.pricing {
    background: linear-gradient(180deg, var(--bg-dark), #0d0d0d, var(--bg-dark));
}

.pricing-bg-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,77,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

#monthlyLabel { color: var(--text-primary); }

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--primary-glow);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-save {
    font-size: 11px;
    color: var(--primary);
    background: rgba(255,77,0,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
}

.pricing-featured {
    border-color: rgba(255,77,0,0.4);
    background: linear-gradient(180deg, rgba(255,77,0,0.05), var(--bg-card));
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255,77,0,0.15);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,77,0,0.1);
    border: 1px solid rgba(255,77,0,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 16px;
}

.pricing-plan {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
    color: var(--primary);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 2px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i.fa-check {
    color: var(--primary);
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: rgba(255,77,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-features i.fa-xmark {
    color: var(--text-muted);
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-disabled {
    opacity: 0.4;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-btn:hover {
    border-color: var(--primary);
    background: rgba(255,77,0,0.1);
    transform: translateY(-2px);
}

.pricing-btn-featured {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.pricing-btn-featured:hover {
    box-shadow: 0 8px 35px var(--primary-glow);
    background: var(--gradient-primary);
}

/* === DAY PASS === */
.day-pass {
    margin-top: 48px;
}

.day-pass-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.day-pass-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-pass-info h3 i { color: var(--primary); }

.day-pass-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.day-pass-price {
    text-align: center;
}

.day-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}

.day-note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* === NUTRITION === */
.nutrition-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.nutrition-hero-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
}

.nutrition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.nutrition-hero-img:hover .nutrition-img {
    transform: scale(1.05);
}

.nutrition-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,77,0,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nutrition-img-badge i {
    color: #00ff88;
}

.nutrition-menu {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    line-height: 1.5;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* === SCHEDULE === */
.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.schedule-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.schedule-clock {
    position: relative;
    width: 200px;
    height: 200px;
}

.clock-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--border);
    position: relative;
    overflow: hidden;
}

.clock-fill {
    position: absolute;
    inset: 0;
    background: conic-gradient(var(--primary) 0deg, var(--primary) 240deg, transparent 240deg);
    opacity: 0.15;
    border-radius: 50%;
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.clock-time {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

.clock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

.status-dot.closed {
    background: #ff4444;
}

.status-text {
    font-size: 11px;
    color: #00ff88;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-text.closed {
    color: #ff4444;
}

.schedule-hours-display {
    width: 100%;
    max-width: 280px;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }

.hours-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,77,0,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.hours-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.hours-value {
    font-weight: 600;
    font-size: 15px;
}

/* Schedule Weekly */
.schedule-weekly {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.schedule-weekly-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.schedule-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.schedule-tabs::-webkit-scrollbar { display: none; }

.schedule-tab {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 1px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: transparent;
}

.schedule-tab.active,
.schedule-tab:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.schedule-day-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-color: var(--border-hover);
    background: rgba(255,77,0,0.03);
}

.schedule-item-time {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    min-width: 55px;
}

.schedule-item-name {
    font-weight: 600;
    font-size: 13px;
    flex-grow: 1;
}

.schedule-item-duration {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* === TESTIMONIALS === */
.testimonials {
    background: linear-gradient(180deg, var(--bg-dark), #0d0d0d);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    display: block;
}

.author-role {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-wrapper {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.input-wrapper i {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.input-wrapper:focus-within i {
    color: var(--primary);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
}

.input-wrapper select {
    cursor: pointer;
}

.input-wrapper select option {
    background: var(--bg-card);
    color: white;
}

.textarea-wrapper {
    align-items: flex-start;
    padding-top: 14px;
}

.textarea-wrapper i {
    margin-top: 2px;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,77,0,0.1);
    border: 1px solid rgba(255,77,0,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-card-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 18px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,77,0,0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

/* === FOOTER === */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links-grid {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-col a i {
    font-size: 12px;
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* === FAB === */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.fab-top {
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-top:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,77,0,0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

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

    .facility-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-8px);
    }

    .nutrition-showcase {
        grid-template-columns: 1fr;
    }

    .schedule-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 72px 0;
    }

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

    .classes-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat {
        padding: 0 16px;
    }

    .stat-divider {
        height: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .day-pass-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .showcase-main {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .hero-line {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-divider { display: none; }

    .hero-stat {
        padding: 12px;
        background: rgba(255,255,255,0.03);
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
    }

    .classes-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price-amount {
        font-size: 40px;
    }

    .facility-name {
        font-size: 16px;
    }

    .mobile-link {
        font-size: 20px;
        padding: 10px 0;
    }
}
