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

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: white;
    font-family: 'Inter', sans-serif;
    color: black;
}


/* ----- PREMIUM NAVBAR REDESIGN ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    padding: 20px 40px;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.8s ease-out;
}

@supports (backdrop-filter: blur(10px)) {
    .navbar {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.navbar.scrolled {
    background-color: white;
    color: black;
    padding: 15px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1001; /* Above mobile menu overlay */
}

.logo-img-wrapper {
    height: 70px; /* Adjust height based on how the logo looks */
    display: flex;
    align-items: center;
}

.logo-img-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Navigation Links */
.mobile-menu-overlay {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: linear-gradient(to right, #ef4444, #a855f7);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ef4444, #a855f7);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a.active {
    color: black;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001; /* Above mobile menu overlay */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Premium CTA Button */
.nav-button-container {
    display: flex;
    align-items: center;
    z-index: 1001; /* Above mobile menu */
}

.join-btn {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ef4444, #a855f7);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.join-btn::before {
    content: '';
    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.5s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn i {
    font-size: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-btn:hover i {
    transform: translateX(5px);
}

/* ----- CINEMATIC HERO REDESIGN ----- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #050505;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    background-image: url("img/ChatGPT Image Jul 14, 2026, 02_34_55 PM.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: bgZoomIn 10s ease-out forwards;
    transform-origin: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(5,5,5,1) 15%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,0.2) 100%); */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-left {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e5e5e5;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
}

.main-heading {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: black;
}

.text-gradient {
    background: linear-gradient(135deg, #ef4444, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: #a3a3a3;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Primary Button */
.btn-primary {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ef4444, #a855f7);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    color: #ffffff !important;
}

.btn-primary i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Base outline button */
.btn-outline {
    text-decoration: none;
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #ef4444;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ef4444;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Floating Stats Panel */
.floating-stats {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 30px;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-text {
    font-size: 12px;
    color: #a3a3a3;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 10px;
    color: #737373;
    letter-spacing: 2px;
    font-weight: 600;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid #737373;
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

/* Animations */
@keyframes bgZoomIn {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes scrollBounce {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 12px); opacity: 0; }
    51% { transform: translate(-50%, -6px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.5s; }

/* ----- WHY CHOOSE US CINEMATIC SECTION ----- */
.wcu-section {
    position: relative;
    padding: 100px 40px;
    /* background-color: #050505; */
}

.wcu-bg-text {
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.wcu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* Left Sticky Column */
.wcu-sticky-col {
    flex: 0 0 45%;
    position: sticky;
    top: 120px;
    height: calc(100vh - 160px);
    min-height: 500px;
}

.wcu-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.wcu-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-image.active {
    opacity: 1;
    transform: scale(1);
}

.wcu-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0) 50%, rgba(5,5,5,0.3) 100%);
    z-index: 2;
}

.wcu-image-indicator {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a3a3a3;
    display: flex;
    align-items: center;
    gap: 5px;
}

#wcu-current-img {
    color: #fff;
    font-size: 18px;
}

/* Right Scroll Column */
.wcu-scroll-col {
    flex: 1;
    padding-bottom: 50px;
}

.wcu-intro-desc {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 500px;
}

.wcu-features-wrapper {
    position: relative;
    padding-left: 40px;
}

/* Progress Line */
.wcu-progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(255,255,255,0.05);
}

.wcu-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #ef4444, #a855f7);
    transition: height 0.4s ease-out;
}

/* Feature Blocks */
.wcu-feature-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.wcu-feature-block {
    position: relative;
    opacity: 0.3;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-feature-block.active {
    opacity: 1;
    transform: translateX(20px);
}

.wcu-fb-number {
    font-size: 48px;
    font-weight: 900;
    color: black;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    position: absolute;
    top: -30px;
    left: -20px;
    z-index: 0;
    transition: all 0.5s ease;
}

.wcu-feature-block.active .wcu-fb-number {
    -webkit-text-stroke: 1px rgba(239, 68, 68, 0.5); /* Accent color glow */
}

.wcu-fb-content {
    position: relative;
    z-index: 1;
}

.wcu-fb-icon {
    font-size: 24px;
    color: red;
    margin-bottom: 15px;
}

.wcu-fb-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: black;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.wcu-fb-content p {
    font-size: 15px;
    color: black;
    line-height: 1.6;
}

.wcu-fb-divider {
    width: 0%;
    height: 1px;
    background: linear-gradient(to right, #ef4444, #a855f7);
    margin-top: 30px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-feature-block.active .wcu-fb-divider {
    width: 100px;
}

.wcu-mobile-img {
    display: none;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ----- BMI CALCULATOR SECTION ----- */
.bmi-section {
    position: relative;
    padding: 100px 40px;
    /* background-color: #050505; */
    overflow: hidden;
}

.bmi-bg-text {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.bmi-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

/* Left Visual Column */
.bmi-visual-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bmi-desc {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 500px;
}

.bmi-disclaimer {
    font-size: 13px;
    color: black
    margin-bottom: 40px;
    font-style: italic;
}

.bmi-image-container {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.bmi-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.bmi-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.2) 100%);
    z-index: 2;
}

.bmi-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(5,5,5,0) 70%);
    z-index: 1;
}

.bmi-stat-float {
    position: absolute;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.stat-1 { top: 10%; left: -20px; animation-delay: 0s; }
.stat-2 { bottom: 20%; left: 10%; animation-delay: 2s; }
.stat-3 { top: 40%; right: -20px; animation-delay: 4s; }

.bmi-stat-float .stat-label {
    font-size: 12px;
    font-weight: 700;
    color: #a3a3a3;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bmi-stat-float .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

/* Calculator Dashboard */
.bmi-calc-col {
    flex: 1;
}

.bmi-dashboard {
    background: white;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.bmi-dash-title {
    font-size: 24px;
    font-weight: 800;
    color: black;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.bmi-unit-toggle {
    display: flex;
    background:white;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 30px;
    border: 1px solid silver;
}

.bmi-unit-btn {
    flex: 1;
    padding: 12px 0;
    background: transparent;
    border: none;
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.bmi-unit-btn.active {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.bmi-input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.bmi-input-row {
    display: flex;
    gap: 15px;
}

.bmi-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bmi-input-wrapper label {
    font-size: 13px;
    color: #a3a3a3;
    font-weight: 600;
    letter-spacing: 1px;
}

.bmi-input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.bmi-input-field input {
    width: 100%;
    background: white;
    border: 1px solid silver;
    border-radius: 8px;
    padding: 16px 50px 16px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bmi-input-field input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

/* Hide spin buttons */
.bmi-input-field input::-webkit-outer-spin-button,
.bmi-input-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bmi-unit {
    position: absolute;
    right: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #666;
    pointer-events: none;
}

.bmi-error {
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}

.bmi-calc-btn {
    width: 100%;
    padding: 18px;
    justify-content: center;
    font-size: 16px;
}

.bmi-calc-btn:hover i {
    transform: translateX(5px);
}

/* Results Area */
.bmi-result-area {
    animation: fadeInSlideUp 0.6s ease forwards;
}

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

.bmi-result-title {
    font-size: 14px;
    color: #a3a3a3;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.bmi-number {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1;
    margin-bottom: 5px;
}

.bmi-category {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* BMI Meter */
.bmi-meter-container {
    margin-bottom: 30px;
}

.bmi-meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bmi-meter-bar {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #3b82f6 0%, #3b82f6 25%, #22c55e 25%, #22c55e 50%, #eab308 50%, #eab308 75%, #ef4444 75%, #ef4444 100%);
    border-radius: 5px;
    position: relative;
}

.bmi-indicator {
    position: absolute;
    top: -20px;
    left: 0%; /* Dynamic */
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.bmi-result-msg {
    font-size: 15px;
    color: #a3a3a3;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.bmi-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bmi-reset-btn:hover {
    background: rgba(255,255,255,0.05);
}

/* ----- EDITORIAL TRAINERS SECTION ----- */
.editorial-trainers-section {
    position: relative;
    padding: 120px 40px;
    /* background-color: #050505; */
    overflow: hidden;
}

.ed-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.ed-intro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.ed-heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color:black;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.ed-desc {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ed-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: black;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ed-cta-link:hover {
    color: #ef4444;
}

.ed-cta-link:hover i {
    transform: translateX(5px);
}

/* Slider Track */
.ed-slider-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 40px;
}

.ed-slider-track {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px; /* Reset to normal padding */
    cursor: grab;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.ed-slider-track:active {
    cursor: grabbing;
}

/* Trainer Cards */
.ed-card {
    flex: 0 0 320px;
    height: 480px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
    user-select: none;
}

.ed-card.inactive-card {
    transform: scale(0.85);
    opacity: 0.6;
    filter: brightness(0.5);
}

.ed-card.active-card {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.ed-card.active-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #a855f7;
    border-radius: 12px;
    opacity: 0.5;
    pointer-events: none;
}

.ed-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.ed-card.active-card:hover .ed-card-img {
    transform: scale(1.05);
}

.ed-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.ed-card-content {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.ed-card-num {
    font-size: 24px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    align-self: flex-end;
}

.ed-card.active-card .ed-card-num {
    -webkit-text-stroke: 1px #a855f7;
    color: rgba(168, 85, 247, 0.2);
}

.ed-card-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.ed-card.active-card:hover .ed-card-info {
    transform: translateY(0);
}

.ed-card-exp {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    display: inline-block;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ed-card.active-card .ed-card-exp {
    opacity: 1;
}

.ed-card-name {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.ed-card-spec {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ed-card-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: auto;
}

.ed-card.active-card:hover .ed-card-socials {
    opacity: 1;
    transform: translateY(0);
}

.ed-card-socials a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.ed-card-socials a:hover {
    color: #a855f7;
}

.ed-view-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.ed-card.active-card .ed-view-btn {
    opacity: 1;
}

.ed-view-btn i {
    transition: transform 0.3s ease;
}

.ed-view-btn:hover i {
    transform: translateX(5px);
    color: #a855f7;
}

/* Controls */
.ed-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0 20px;
}

.ed-nav-btns {
    display: flex;
    gap: 15px;
}

.ed-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ef4444);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ed-nav-btn:hover {
    background: #a855f7;
    border-color: #a855f7;
}

.ed-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 300px;
}

.ed-counter {
    font-size: 14px;
    font-weight: 700;
    color: black;
    letter-spacing: 2px;
}

.ed-progress-bg {
    flex: 1;
    height: 2px;
    background: silver;
    position: relative;
}

.ed-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%; /* Updated via JS */
    background: #a855f7;
    transition: width 0.3s ease;
}

/* Custom Cursor */
.trainer-custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.trainer-custom-cursor.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Modal */
.trainer-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.trainer-modal.active {
    display: flex;
}

.trainer-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trainer-modal.active .trainer-modal-overlay {
    opacity: 1;
}

.trainer-modal-content {
    position: relative;
    z-index: 1;
    background: rgba(15,15,15,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.trainer-modal.active .trainer-modal-content {
    opacity: 1;
    transform: translateY(0);
}

.trainer-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.trainer-modal-close:hover {
    background: #ef4444;
}

.tm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.tm-image-col {
    position: relative;
}

.tm-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.tm-info-col {
    padding: 50px;
}

.tm-exp {
    font-size: 11px;
    font-weight: 700;
    color: #a855f7;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.tm-name {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.tm-spec {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tm-divider {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.tm-sub {
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tm-desc {
    font-size: 15px;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tm-socials {
    display: flex;
    gap: 15px;
}

.tm-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.tm-socials a:hover {
    background: #a855f7;
    transform: translateY(-3px);
}


/* Programs Section */
.programs-section {
    background-color: #050505;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ----- CINEMATIC HORIZONTAL PROGRAMS ----- */
.programs-scroll-wrapper {
    position: relative;
    height: 400vh; /* creates scroll distance for horizontal scrolling */
    /* background-color: #050505; */
}

.programs-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* background-color: #050505; */
}

.programs-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.programs-intro {
    flex: 0 0 35%;
    min-width: 350px;
    padding: 0 60px;
    z-index: 2;
    position: relative;
}

.programs-intro .programs-desc {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.scroll-to-explore {
    display: flex;
    align-items: center;
}

.animate-arrow {
    animation: moveArrow 1.5s infinite ease-in-out;
}

@keyframes moveArrow {
    0% { transform: translateX(0); }
    50% { transform: translateX(8px); }
    100% { transform: translateX(0); }
}

.programs-track-container {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}

.programs-track {
    display: flex;
    gap: 40px;
    padding: 0 60px 0 20px;
    will-change: transform;
}

/* Cinematic Card */
.cinematic-program-card {
    flex: 0 0 380px;
    height: 550px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background-color: #0a0a0a;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.5); */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color 0.4s ease;
}

.cpc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cpc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0) 10%, rgba(5,5,5,0.8) 60%, rgba(5,5,5,1) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.cpc-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(15px);
}

.cpc-number {
    position: absolute;
    top: -320px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
}

.cpc-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.cpc-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cpc-desc {
    font-size: 14px;
    color: #a3a3a3;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.cpc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cpc-cta i {
    color: #ef4444;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.cinematic-program-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.cinematic-program-card:hover .cpc-bg {
    transform: scale(1.08);
}

.cinematic-program-card:hover .cpc-overlay {
    opacity: 0.95;
}

.cinematic-program-card:hover .cpc-content {
    transform: translateY(0);
}

.cinematic-program-card:hover .cpc-desc {
    opacity: 1;
}

.cinematic-program-card:hover .cpc-cta i {
    transform: translateX(5px);
}

/* Progress Indicator */
.programs-progress-container {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 4;
}

.progress-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: black;
    letter-spacing: 1px;
}

.progress-divider {
    color: #666;
}

.progress-bar-bg {
    flex: 1;
    height: 2px;
    background-color: rgba(255,255,255,0.1);
    position: relative;
    border-radius: 2px;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #ef4444, #a855f7);
    transition: width 0.1s ease-out;
    border-radius: 2px;
}


/* ----- CINEMATIC ABOUT REDESIGN ----- */
.about-cinematic-section {
    position: relative;
    padding: 120px 40px;
    /* background-color: #050505; */
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 10%;
    left: -5%;
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.about-cinematic-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Side: Images */
.about-images-col {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.about-img-main {
    width: 80%;
    height: 500px;
    background-image: url('gym_background.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-secondary {
    width: 60%;
    height: 350px;
    background-image: url('male_trainer.png'); /* Fallback to existing image */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    position: absolute;
    bottom: -40px;
    right: 0;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-main:hover, .about-img-secondary:hover {
    transform: scale(1.02);
}

.experience-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    animation: float 4s ease-in-out infinite;
}

.experience-card .exp-num {
    font-size: 42px;
    font-weight: 800;
    color: #ef4444; /* Accent */
    line-height: 1;
}

.experience-card .exp-text {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Right Side: Content */
.about-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-label {
    font-size: 13px;
    font-weight: 700;
    color: #a855f7;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: black;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-paragraphs {
    margin-bottom: 40px;
}

.about-paragraphs p {
    font-size: 15px;
    color: black;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 540px;
}

.about-paragraphs p:last-child {
    margin-bottom: 0;
}

.about-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(8px);
}

.about-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ef4444;
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.about-feature-text p {
    font-size: 13px;
    color: black;
    margin: 0;
    line-height: 1.5;
}

.btn-about {
    align-self: flex-start;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 16px 32px;
}

/* Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Trainers Section */
.trainer-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 250px;
    background-color: #050505; /* slightly darker to match image */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.trainer-card:hover {
    transform: translateY(-5px);
}

.trainer-image {
    height: 250px;
    background-size: cover;
    background-position: top center;
}

.trainer-content {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trainer-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.trainer-content p {
    font-size: 13px;
    color: #a3a3a3;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.social-links a {
    color: #a3a3a3;
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    color: #ffffff;
    border-color: #555;
}

/* Make WhatsApp icon distinct */
.social-links a:last-child {
    border-color: #22c55e;
}
.social-links a:last-child:hover {
    border-color: #4ade80;
}

/* Testimonials Section */
.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 320px;
    background-color: #050505;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 14px;
    color: #d4d4d4;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.stars {
    color: #eab308;
    font-size: 12px;
    display: flex;
    gap: 4px;
}

/* Pricing Section */
.pricing-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: #050505;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.pro-plan {
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.most-popular {
    position: absolute;
    top: -15px;
    background: linear-gradient(to right, #a855f7, #3b82f6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plan-price .currency {
    font-size: 24px;
    color: #a3a3a3;
    margin-right: 5px;
}

.plan-price .period {
    font-size: 14px;
    color: #a3a3a3;
    font-weight: 400;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    width: 100%;
    margin-bottom: 40px;
    flex: 1;
}

.plan-features li {
    font-size: 14px;
    color: #d4d4d4;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-plan:hover {
    opacity: 0.9;
}

.bg-red { background-color: #ef4444; }
.bg-purple { background-color: #8b5cf6; }
.bg-green { background-color: #65a30d; }

/* Call To Action Banner */
.cta-banner {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 50px;
    background-color: #050505;
    border-radius: 12px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-logo .logo-icon {
    width: 80px;
    height: 80px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cta-text p {
    font-size: 15px;
    color: #a3a3a3;
}

/* Footer Section */
.footer {
    background-color: #050505;
    padding: 60px 0 0;
    border-top: 1px solid #111;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 13px;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 80%;
}

.footer-links, .hours-list, .contact-list {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #a855f7;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #a3a3a3;
    margin-bottom: 12px;
}

.contact-list li {
    font-size: 13px;
    color: #a3a3a3;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #737373;
}

/* Specific Colors overrides */
.border-red { border-color: #ef4444 !important; }
.border-purple { border-color: #a855f7 !important; }
.border-blue { border-color: #3b82f6 !important; }
.border-green { border-color: #84cc16 !important; }
.border-orange { border-color: #f97316 !important; }

.icon-red { border-color: #ef4444 !important; color: #ef4444 !important; }
.icon-purple { border-color: #a855f7 !important; color: #a855f7 !important; }
.icon-blue { border-color: #3b82f6 !important; color: #3b82f6 !important; }
.icon-green { border-color: #84cc16 !important; color: #84cc16 !important; }
.icon-orange { border-color: #f97316 !important; color: #f97316 !important; }

/* 3D About Section */
#about-3d {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    display: flex;
    align-items: stretch;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.about-3d-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#canvas-3d {
    width: 100%;
    height: 100%;
    display: block;
}

.about-3d-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-3d-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #fff;
}

.about-3d-content p {
    font-size: 16px;
    color: #d4d4d4;
    line-height: 1.8;
}

/* Responsive Design */
/* Premium Hamburger Icon */
.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001; /* Above overlay */
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background:  linear-gradient(to right, #ef4444, #a855f7);;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger.open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
    background: #ef4444;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -20px;
}
.hamburger.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
    background: #a855f7;
}

/* Transformation Section */
.transformation-section {
    position: relative;
    padding: 120px 5%;
    /* background-color: #050505; */
    overflow: hidden;
    z-index: 1;
}

.trans-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: -5px;
}

.trans-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.trans-desc {
    color: black;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 30px;
}

.trans-counter {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.trans-counter #ts-current {
    color: #ef4444;
    font-size: 20px;
}

.trans-counter #ts-total {
    color: #a3a3a3;
}

.trans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Before & After Slider */
.trans-slider-col {
    position: relative;
    width: 100%;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    user-select: none;
    touch-action: pan-y;
}

.ba-image-before, .ba-image-after-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 2;
    will-change: clip-path;
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ef4444;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
    will-change: left;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    pointer-events: auto;
}

.ba-handle-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 4px;
    z-index: 1;
}
.label-before { right: 20px; }
.label-after { left: 20px; z-index: 3; }

.trans-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.badge-accent {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
}

/* Right Side Content */
.ts-story-content {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ts-name {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.ts-type {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.ts-testimonial {
    font-size: 18px;
    line-height: 1.8;
    color: black;
    font-style: italic;
    margin-bottom: 40px;
    border-left: 3px solid #ef4444;
    padding-left: 20px;
}

.ts-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ts-stat-box {
    background: red; /* Accent */
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ts-stat-val {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.ts-stat-label {
    font-size: 11px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.ts-timeline-wrapper {
    margin-bottom: 40px;
}

.ts-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 15px;
}

.timeline-line {
    position: absolute;
    top: 19px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ef4444, #a855f7);
    z-index: 1;
}

.timeline-point {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.timeline-point .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.timeline-point.active .dot {
    background: #ef4444;
}

.timeline-point.final .dot {
    background: #ef4444;
    box-shadow: 0 0 15px #ef4444;
}

.timeline-point span {
    font-size: 11px;
    font-weight: 700;
    color:black;
    letter-spacing: 1px;
}

.timeline-point.active span, .timeline-point.final span {
    color:black;
}

.ts-nav-controls {
    display: flex;
    gap: 15px;
}

.ts-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: linear-gradient(to right, #ef4444, #a855f7);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-nav-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}


/* Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-element.delay-1 {
    transition-delay: 0.1s;
}

.reveal-element.delay-2 {
    transition-delay: 0.2s;
}

/* ================================================
   CLASS SCHEDULE SECTION
   ================================================ */
.schedule-section {
    position: relative;
    padding: 120px 5%;
    /* background: #060606; */
    overflow: hidden;
    z-index: 1;
}

.schedule-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255,255,255,0.018);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
}

/* --- Intro --- */
.schedule-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.schedule-heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: black;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 16px 0 20px;
    text-transform: uppercase;
}

.schedule-desc {
    color: black;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.schedule-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a3a3a3;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.schedule-cta-link:hover {
    color: #ef4444;
    border-color: #ef4444;
}

/* --- Controls --- */
.schedule-controls {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Day Navigation */
.day-nav-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 32px;
    padding-bottom: 4px;
}

.day-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.day-nav {
    display: flex;
    gap: 8px;
    width: max-content;
    min-width: 100%;
    justify-content: center;
}

.day-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: silver;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    color: #666;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 64px;
}

.day-btn .day-label {
    font-size: 11px;
    letter-spacing: 2px;
}

.day-btn .day-date {
    font-size: 26px;
    font-weight: 900;
    color: #444;
    line-height: 1;
    transition: color 0.25s;
}

.day-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #fff;
}

.day-btn:hover .day-date {
    color: #fff;
}

.day-btn.active {
    background: rgba(239, 68, 68, 0.12);
    border-color: #ef4444;
    color: #ef4444;
}

.day-btn.active .day-date {
    color: #ef4444;
}

/* Category Filters */
.schedule-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.sch-filter-btn {
    padding: 9px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #666;
    background: silver;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sch-filter-btn:hover {
    border-color: rgba(255,255,255,0.3);
    color: #e5e5e5;
}

.sch-filter-btn.active {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

/* Quick Stats */
.schedule-quick-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.qs-val {
    font-size: 32px;
    font-weight: 900;
    color: black;
    transition: all 0.3s ease;
}

.qs-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #555;
}

.qs-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

/* --- Schedule List --- */
.schedule-list-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-list {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Schedule Row */
.sch-row {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr 160px 90px 110px 120px 130px;
    align-items: center;
    gap: 20px;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.sch-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--row-bg, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.sch-row:hover::before {
    opacity: 1;
}

.sch-row > * {
    position: relative;
    z-index: 1;
}

.sch-row:hover {
    background: rgba(255,255,255,0.025);
}

/* Next Class highlight */
.sch-row.next-class {
    background: rgba(239,68,68,0.04);
    border-left: 2px solid #ef4444;
}

/* Time Column */
.sch-time-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sch-time-start {
    font-size: 18px;
    font-weight: 800;
    color: black;
    letter-spacing: 0.5px;
}

.sch-time-dash {
    color: #444;
    font-size: 12px;
}

.sch-time-end {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
}

/* Info Column */
.sch-info-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.3s ease;
}

.sch-row:hover .sch-info-col {
    transform: translateX(6px);
}

.sch-category-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
}

.cat-strength { background: rgba(239,68,68,0.15); color: #ef4444; }
.cat-cardio   { background: rgba(245,158,11,0.15); color: #f59e0b; }
.cat-yoga     { background: rgba(168,85,247,0.15); color: #a855f7; }
.cat-boxing   { background: rgba(34,197,94,0.15);  color: #22c55e; }
.cat-crossfit { background: rgba(59,130,246,0.15); color: #3b82f6; }

.sch-class-name {
    font-size: 20px;
    font-weight: 900;
    color: black;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
    transition: color 0.3s;
}

.sch-row:hover .sch-class-name {
    color: #ef4444;
}

.sch-next-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef4444;
}

.sch-next-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Trainer Column */
.sch-trainer-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sch-trainer-label {
    font-size: 9px;
    font-weight: 700;
    color: #555;
    letter-spacing: 1.5px;
}

.sch-trainer-name {
    font-size: 13px;
    font-weight: 700;
    color:black;
}

/* Duration Column */
.sch-duration {
    font-size: 13px;
    font-weight: 700;
    color: black;
    letter-spacing: 0.5px;
}

/* Level Column */
.sch-level {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color:black;
    text-transform: uppercase;
}

/* Spots Column */
.sch-spots {
    font-size: 12px;
    font-weight: 600;
    color: black;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.spots-low {
    color: #ef4444;
}

/* Action Column */
.sch-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sch-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(253, 7, 7, 0.61);
    border-radius: 4px;
    color: black; 
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sch-book-btn i {
    transition: transform 0.3s ease;
}

.sch-row:hover .sch-book-btn {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.sch-row:hover .sch-book-btn i {
    transform: translateX(4px);
}

/* Row Stagger Animation */
.sch-row {
    animation: rowReveal 0.5s ease both;
}

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

/* Empty State */
.schedule-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    gap: 14px;
    color: #555;
}

.schedule-empty i {
    font-size: 48px;
    color: #333;
}

.schedule-empty h3 {
    font-size: 20px;
    font-weight: 900;
    color: #e5e5e5;
    letter-spacing: 2px;
}

.schedule-empty p {
    font-size: 14px;
    color: #666;
}

.sch-reset-btn {
    margin-top: 10px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: #a3a3a3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sch-reset-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* ================================================
   CLASS DETAILS MODAL
   ================================================ */
.class-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.class-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.class-modal {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.class-modal-overlay.active .class-modal {
    transform: translateY(0) scale(1);
}

.class-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.25s, border-color 0.25s;
}

.class-modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.cm-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.cm-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, #111, transparent);
}

.cm-body {
    padding: 28px 32px 36px;
}

.cm-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cm-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.cm-level {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
}

.cm-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.1;
}

.cm-desc {
    font-size: 14px;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cm-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.cm-detail-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cm-detail-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #555;
}

.cm-detail-val {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.cm-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(239,68,68,0.3);
}

.cm-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239,68,68,0.45);
}


@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .nav-button-container {
        display: none;
    }

    /* Side Drawer Mobile Menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: white;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
        border-left: 1px solid rgba(255,255,255,0.05);
    }

    .mobile-menu-overlay.open {
        right: 0;
    }

    .mobile-menu-overlay .nav-links {
        flex-direction: column;
        gap: 35px;
    }

    .mobile-menu-overlay .nav-links a {
        font-size: 20px;
    }

    #about-3d {
        flex-direction: column;
        height: auto;
    }
    
    .about-3d-visual {
        width: 100%;
        height: 400px;
    }
    
    .about-3d-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .about-3d-content h2 { font-size: 28px; }
    .about-3d-content p { font-size: 14px; }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-left {
        max-width: 100%;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-stats {
        margin-top: 40px;
        width: 100%;
        justify-content: center;
        background: rgba(10,10,10,0.8);
    }

    .features-bar {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 30px;
    }

    .feature-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .about-cinematic-section {
        padding: 80px 20px;
    }

    .about-cinematic-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-images-col {
        width: 100%;
        min-height: 400px;
    }

    .about-img-main {
        width: 100%;
        height: 400px;
    }

    .about-img-secondary {
        width: 50%;
        height: 250px;
        bottom: -30px;
        right: 10px;
    }

    .experience-card {
        top: -20px;
        right: 10px;
        padding: 15px 20px;
    }

    .experience-card .exp-num {
        font-size: 32px;
    }

    .about-bg-text {
        font-size: 30vw;
        top: 5%;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        margin: 40px 20px;
        padding: 40px 20px;
    }

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

    /* Disable pinning for mobile/tablet to use native swipe */
    .programs-scroll-wrapper {
        height: auto !important; /* Remove 400vh */
        padding: 80px 0;
    }

    .programs-sticky-container {
        position: relative;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .programs-intro {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .programs-track-container {
        width: 100%;
    }

    .programs-track {
        padding: 0 20px;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        transform: none !important; /* Override JS inline style */
        padding-bottom: 20px;
    }

    .programs-track::-webkit-scrollbar {
        display: none;
    }

    .cinematic-program-card {
        flex: 0 0 85%; /* Show part of next card */
        scroll-snap-align: center;
        height: 450px;
    }

    .programs-progress-container {
        display: none; /* Hide custom progress bar on touch */
    }

    /* WCU Mobile Fallback */
    .wcu-section {
        padding: 80px 20px;
    }

    .wcu-container {
        flex-direction: column;
        gap: 40px;
    }

    .wcu-sticky-col {
        display: none; /* Hide sticky column on mobile */
    }

    .wcu-scroll-col {
        padding-bottom: 20px;
    }

    .wcu-intro-desc {
        margin-bottom: 40px;
    }

    .wcu-feature-list {
        gap: 60px;
    }

    .wcu-progress-track {
        display: none; /* Hide progress line on mobile */
    }

    .wcu-features-wrapper {
        padding-left: 0;
    }

    .wcu-feature-block {
        opacity: 1;
        transform: translateX(0);
    }

    .wcu-feature-block.active {
        transform: translateX(0);
    }

    .wcu-mobile-img {
        display: block; /* Show inline image on mobile */
    }

    /* BMI Section Mobile */
    .bmi-section {
        padding: 60px 20px;
    }

    .bmi-container {
        flex-direction: column;
        gap: 40px;
    }

    .bmi-dashboard {
        padding: 30px 20px;
    }

    .bmi-input-row {
        flex-direction: column;
        gap: 20px;
    }

    .bmi-image-container {
        min-height: 250px;
    }

    .bmi-stat-float {
        padding: 10px 15px;
    }
    
    .bmi-stat-float .stat-value {
        font-size: 18px;
    }

    /* Trainers Section Mobile */
    .editorial-trainers-section {
        padding: 80px 20px;
    }
    
    .ed-heading {
        font-size: 32px;
    }

    .ed-slider-track {
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 40px 7.5%; /* 50% - (85%/2) to center first/last */
        justify-content: flex-start; /* Override desktop centering */
        -webkit-overflow-scrolling: touch;
    }

    .ed-slider-track::-webkit-scrollbar {
        display: none;
    }

    .ed-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 400px;
        pointer-events: auto; /* ensure links are clickable even on swipe */
    }

    .ed-card.inactive-card {
        transform: scale(0.9);
        opacity: 0.8;
        filter: brightness(0.8);
    }

    .trainer-custom-cursor {
        display: none !important;
    }

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

    .tm-image {
        height: 300px;
    }

    .tm-info-col {
        padding: 30px 20px;
    }
}


@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .floating-stats {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-img-secondary {
        display: none; /* Hide secondary image on small mobile to save space */
    }

    .about-img-main {
        height: 300px;
    }

    .about-images-col {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Transformation Mobile */
    .trans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ts-name {
        font-size: 32px;
    }
    
    .ts-stats-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    
    .ts-stat-box {
        padding: 15px 10px;
        text-align: center;
    }
    
    .ts-stat-val {
        font-size: 20px;
    }
}

/* Schedule Responsive */
@media (max-width: 1100px) {
    .sch-row {
        grid-template-columns: 120px 1fr 140px 80px 90px;
        gap: 14px;
    }
    /* Hide spots and action columns, show inline */
    .sch-spots, .sch-action {
        display: none;
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 80px 5%;
    }

    .day-nav {
        justify-content: flex-start;
        width: max-content;
    }

    .sch-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 16px;
    }

    .sch-time-col {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .sch-time-dash {
        display: inline;
    }

    .sch-time-end {
        font-size: 15px;
    }

    .sch-trainer-col, .sch-duration, .sch-level {
        display: inline;
        font-size: 12px;
        color: #888;
    }

    .sch-mobile-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

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

    .sch-spots {
        display: block;
        font-size: 11px;
    }

    .sch-action {
        display: block;
    }

    .schedule-quick-stats {
        gap: 20px;
    }

    .qs-val {
        font-size: 24px;
    }

    .cm-details-grid {
        grid-template-columns: 1fr;
    }

    .cm-body {
        padding: 20px 20px 28px;
    }

    .cm-title {
        font-size: 24px;
    }
}

/* ================================================
   PREMIUM FOOTER
   ================================================ */

.pf-footer {
    position: relative;
    background:white;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* --- Back To Top --- */
.back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 14px 16px;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
    backdrop-filter: blur(10px);
}

.back-to-top i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-to-top span {
    font-size: 8px;
    letter-spacing: 2px;
    color: #666;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

.back-to-top:hover span {
    color: rgba(255,255,255,0.7);
}

/* --- Footer CTA Strip --- */
.pf-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 6% 80px;
    max-width: 1500px;
    margin: 0 auto;
}

.pf-fcta-left {
    flex: 1;
}

.pf-fcta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ef4444;
    margin-bottom: 20px;
}

.pf-fcta-heading {
    font-size: clamp(42px, 5.5vw, 86px);
    font-weight: 900;
    color: black;
    line-height: 1.0;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* JOIN NOW Circle Button */
.pf-join-btn {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgb(166 45 212);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
    position: relative;
    overflow: hidden;
}

.pf-join-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ef4444;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
    z-index: 0;
}

.pf-join-btn:hover::before {
    transform: scale(1);
}

.pf-join-label {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.pf-join-icon {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: #ef4444;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pf-join-btn:hover .pf-join-icon {
    transform: rotate(-10deg) translateY(-2px);
    color: #fff;
}

.pf-join-btn:hover {
    border-color: #ef4444;
    transform: scale(1.05);
}

/* --- Animated Divider --- */
.pf-footer-divider {
    padding: 0 6%;
    max-width: 1500px;
    margin: 0 auto;
}

.pf-divider-fill {
    height: 1px;
    background: rgba(255,255,255,0.1);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.25,1,0.5,1);
}

.pf-divider-fill.animate {
    transform: scaleX(1);
}

/* --- Main Grid --- */
.pf-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding: 70px 6% 60px;
    max-width: 1500px;
    margin: 0 auto;
}

.pf-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Brand Column */
.pf-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.pf-brand-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.pf-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
}

.pf-social-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    transform: translateY(-3px);
    background: rgba(239,68,68,0.08);
}

/* Link Columns */
.pf-footer-col-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: black;   
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(255, 255, 255);
}

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

.pf-footer-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

.pf-footer-links li a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    color: #ef4444;
}



.pf-footer-links li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.pf-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.pf-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.pf-contact-list li a {
    color: #666;
    transition: color 0.25s;
}

.pf-contact-list li a:hover {
    color: #ef4444;
}

.pf-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pf-hours-block {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
}

.pf-hours-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #444;
    margin-bottom: 14px;
}

.pf-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* --- Newsletter --- */
.pf-newsletter {
    padding: 0 6% 60px;
    max-width: 1500px;
    margin: 0 auto;
}

.pf-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 44px 52px;
    background: rgba(255,255,255,0.015);
}

.pf-nl-left {
    flex: 1;
}

.pf-nl-heading {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pf-nl-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    max-width: 420px;
}

.pf-nl-form {
    flex: 1;
    min-width: 320px;
}

.pf-nl-input-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 14px;
    gap: 12px;
    transition: border-color 0.3s;
}

.pf-nl-input-wrap:focus-within {
    border-color: #ef4444;
}

.pf-nl-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.pf-nl-input-wrap input::placeholder {
    color: #444;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.pf-nl-input-wrap button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ef4444;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-nl-input-wrap button:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    transform: rotate(-40deg);
}

/* sr-only for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Large BG Brand Text --- */
.pf-footer-bg-brand {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(100px, 15vw, 220px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    white-space: nowrap;
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* --- Footer Bottom Bar --- */
.pf-footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 6%;
    border-top: 1px solid rgb(0, 0, 0);
    max-width: 100%;
}

.pf-copyright {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #444;
}

.pf-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pf-legal-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    transition: color 0.25s;
}

.pf-legal-links a:hover {
    color: #ef4444;
}

.pf-bottom-dot {
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1100px) {
    .pf-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .pf-fcta-heading {
        font-size: clamp(38px, 5vw, 64px);
    }
}

@media (max-width: 768px) {
    .pf-footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
        gap: 36px;
    }
    .pf-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 6% 40px;
    }
    .pf-newsletter-inner {
        flex-direction: column;
        gap: 28px;
        padding: 32px 24px;
    }
    .pf-nl-form {
        width: 100%;
        min-width: 0;
    }
    .pf-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .pf-footer-bg-brand {
        font-size: 18vw;
        bottom: 40px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    .pf-join-btn {
        width: 130px;
        height: 130px;
    }
}

/* ================================================
   MASTER RESPONSIVE — ALL SECTIONS
   ================================================ */

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {

    /* --- Hero --- */
    .main-heading { font-size: clamp(36px, 7vw, 64px); }

    /* --- About Cinematic --- */
    .about-cinematic-container { flex-direction: column; gap: 50px; }
    .about-images-col { width: 100%; }
    .about-content-col { text-align: center; align-items: center; }

    /* --- Transformation --- */
    .transformation-section { padding: 80px 5%; }
    .trans-grid { grid-template-columns: 1fr; gap: 50px; }
    .ba-slider-container { height: 400px; }
    .ts-name { font-size: 36px; }

    /* --- Trainers Modal --- */
    .tm-grid { grid-template-columns: 1fr; }
    .tm-image { height: 280px; }

    /* --- Pricing --- */
    .pricing-grid { flex-wrap: wrap; justify-content: center; gap: 24px; }
    .pricing-card { max-width: 340px; width: 100%; }

    /* --- Schedule --- */
    .sch-row { grid-template-columns: 110px 1fr 140px 80px; gap: 14px; }
    .sch-spots, .sch-action { display: none; }

    /* --- BMI --- */
    .bmi-container { flex-direction: column; gap: 50px; }
    .bmi-visual-col, .bmi-calc-col { width: 100%; }

    /* --- WCU --- */
    .wcu-sticky-col { display: none; }
    .wcu-container { flex-direction: column; }
}

/* ---------- MOBILE LARGE (≤768px) ---------- */
@media (max-width: 768px) {

    /* --- Global --- */
    body { overflow-x: hidden; }
    section { overflow-x: hidden; }

    /* --- Navbar --- */
    .navbar { padding: 16px 20px; }
    .navbar-container { 
        padding: 0; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
    }
    
    .hamburger { display: flex; }
    
    .nav-button-container { display: none; } /* Hide CTA on mobile */
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .mobile-menu-overlay.open {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .nav-links a {
        font-size: 20px;
    }

    /* --- Hero --- */
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 120px 20px 60px;
        gap: 30px;
    }
    .hero-left { align-items: center; max-width: 100%; }
    .main-heading { font-size: clamp(32px, 10vw, 54px); }
    .description { font-size: 15px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions a { width: 100%; justify-content: center; }
    .floating-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        width: 100%;
        padding: 14px;
        margin-top: 0;
    }
    .stat-item { flex: 1 1 80px; text-align: center; padding: 10px; }
    .stat-divider { width: 1px; height: 40px; }
    .stat-num { font-size: 22px; }
    .scroll-indicator { display: none; }

    /* --- About Cinematic --- */
    .about-cinematic-section { padding: 70px 20px; }
    .about-cinematic-container { flex-direction: column; gap: 40px; }
    .about-images-col { width: 100%; min-height: 280px; }
    .about-img-main { width: 100%; height: 300px; }
    .about-img-secondary { display: none; }
    .experience-card { top: -10px; right: 10px; padding: 14px 18px; }
    .about-content-col { text-align: center; align-items: center; }
    .about-heading { font-size: 32px; }
    .about-bg-text { font-size: 28vw; }
    .about-stats-row { justify-content: center; gap: 20px; }
    .btn-about { align-self: center; }

    /* --- Features Bar --- */
    .features-bar { flex-direction: column; height: auto; padding: 30px 20px; gap: 24px; }
    .feature-divider { width: 80%; height: 1px; }

    /* --- Programs --- */
    .programs-scroll-wrapper { height: auto !important; padding: 70px 0; }
    .programs-sticky-container { position: relative; flex-direction: column; height: auto; }
    .programs-intro { padding: 0 20px; margin-bottom: 30px; }
    .programs-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; transform: none !important; padding: 0 20px 20px; gap: 16px; }
    .programs-track::-webkit-scrollbar { display: none; }
    .cinematic-program-card { flex: 0 0 85%; scroll-snap-align: center; height: 440px; }
    .programs-progress-container { display: none; }
    .card-content { padding: 24px; }
    .card-title { font-size: 22px; }

    /* --- WCU --- */
    .wcu-section { padding: 70px 20px; }
    .wcu-container { flex-direction: column; }
    .wcu-sticky-col { display: none; }
    .wcu-intro { text-align: center; }
    .wcu-features-wrapper { padding-left: 0; }
    .wcu-progress-track { display: none; }
    .wcu-mobile-img { display: block; }
    .wcu-feature-block { opacity: 1; transform: none; }
    .wcu-feature-list { gap: 40px; }
    .about-heading { font-size: 28px; }

    /* --- Transformation --- */
    .transformation-section { padding: 70px 20px; }
    .trans-intro { text-align: center; }
    .trans-grid { grid-template-columns: 1fr; gap: 40px; }
    .ba-slider-container { height: 320px; border-radius: 12px; }
    .ts-name { font-size: 28px; }
    .ts-type { font-size: 12px; }
    .ts-testimonial { font-size: 14px; }
    .ts-stats-row { grid-template-columns: repeat(3,1fr); gap: 8px; }
    .ts-stat-box { padding: 14px 8px; text-align: center; }
    .ts-stat-val { font-size: 20px; }
    .trans-content-col { padding: 0; }
    .ts-nav-controls { margin-top: 20px; }
    .trans-bg-text { font-size: 22vw; }

    /* --- BMI --- */
    .bmi-section { padding: 70px 20px; }
    .bmi-container { flex-direction: column; gap: 40px; }
    .bmi-visual-col, .bmi-calc-col { width: 100%; }
    .bmi-image-container { min-height: 220px; }
    .bmi-dashboard { padding: 24px 18px; }
    .bmi-input-row { flex-direction: column; gap: 16px; }
    .bmi-bg-text { font-size: 22vw; }

    /* --- Trainers --- */
    .editorial-trainers-section { padding: 70px 20px; }
    .ed-heading { font-size: 28px; }
    .ed-slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 12px;
    }
    .ed-slider-track::-webkit-scrollbar { display: none; }
    .ed-card { flex: 0 0 85%; scroll-snap-align: center; height: 380px; }
    .trainer-custom-cursor { display: none !important; }
    .ed-controls { flex-direction: column; gap: 16px; align-items: flex-start; padding: 0 20px; }
    .tm-grid { grid-template-columns: 1fr; }
    .tm-image { height: 260px; }
    .tm-info-col { padding: 24px 20px; }

    /* --- Schedule --- */
    .schedule-section { padding: 70px 20px; }
    .schedule-heading { font-size: clamp(28px, 7vw, 44px); }
    .day-nav { justify-content: flex-start; width: max-content; }
    .schedule-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .schedule-filters::-webkit-scrollbar { display: none; }
    .sch-filter-btn { flex-shrink: 0; }
    .schedule-quick-stats { gap: 16px; }
    .qs-val { font-size: 22px; }
    .sch-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 14px;
    }
    .sch-time-col { flex-direction: row; align-items: center; gap: 6px; }
    .sch-time-dash { display: inline; }
    .sch-spots { display: block; font-size: 11px; }
    .sch-action { display: block; }
    .sch-book-btn { width: 100%; justify-content: center; }
    .cm-details-grid { grid-template-columns: 1fr; }
    .cm-body { padding: 20px 18px 28px; }
    .cm-title { font-size: 22px; }

    /* --- Pricing --- */
    .pricing-grid { flex-direction: column; align-items: center; gap: 20px; }
    .pricing-card { max-width: 100%; width: 100%; }
    .pricing-section { padding: 70px 20px; }

    /* --- Footer --- */
    .pf-footer-cta { flex-direction: column; text-align: center; padding: 60px 20px; gap: 30px; }
    .pf-fcta-heading { font-size: clamp(32px, 8vw, 52px); letter-spacing: -1px; }
    .pf-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 50px 20px 40px; }
    .pf-newsletter-inner { flex-direction: column; gap: 24px; padding: 28px 20px; }
    .pf-nl-form { width: 100%; min-width: 0; }
    .pf-footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding: 18px 20px; }
    .pf-footer-bg-brand { font-size: 16vw; bottom: 40px; }
    .back-to-top { bottom: 20px; right: 16px; }
    .pf-join-btn { width: 120px; height: 120px; }
}

/* ---------- MOBILE SMALL (≤480px) ---------- */
@media (max-width: 480px) {

    /* --- Hero --- */
    .main-heading { font-size: clamp(28px, 9vw, 40px); }
    .hero-badge { font-size: 10px; padding: 8px 16px; }
    .hero-content { padding: 100px 16px 50px; }

    /* --- About --- */
    .about-cinematic-section { padding: 60px 16px; }
    .about-heading { font-size: 26px; }
    .about-img-main { height: 240px; }

    /* --- Programs --- */
    .cinematic-program-card { flex: 0 0 92%; height: 400px; }
    .card-title { font-size: 20px; }

    /* --- Transformation --- */
    .transformation-section { padding: 60px 16px; }
    .ba-slider-container { height: 260px; }
    .ts-name { font-size: 24px; }
    .ts-stats-row { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
    .ts-stat-val { font-size: 18px; }
    .ts-stat-box { padding: 10px 6px; }

    /* --- BMI --- */
    .bmi-section { padding: 60px 16px; }
    .bmi-dashboard { padding: 20px 14px; }
    .bmi-result-display { padding: 16px; }
    .bmi-result-value { font-size: 48px; }

    /* --- Schedule --- */
    .schedule-section { padding: 60px 16px; }
    .schedule-heading { font-size: 26px; }
    .day-btn { padding: 12px 16px; min-width: 54px; }
    .day-btn .day-date { font-size: 20px; }
    .sch-class-name { font-size: 16px; }
    .sch-time-start { font-size: 15px; }
    .sch-row { padding: 16px 12px; }

    /* --- Trainers --- */
    .editorial-trainers-section { padding: 60px 16px; }
    .ed-heading { font-size: 24px; }
    .ed-card { flex: 0 0 90%; height: 340px; }

    /* --- Pricing --- */
    .pricing-section { padding: 60px 16px; }
    .pricing-card { padding: 24px 20px; }

    /* --- Footer --- */
    .pf-fcta-heading { font-size: clamp(26px, 8vw, 38px); }
    .pf-footer-grid { padding: 40px 16px 30px; gap: 28px; }
    .pf-footer-cta { padding: 50px 16px; }
    .pf-footer-bg-brand { font-size: 14vw; }
    .pf-join-btn { width: 100px; height: 100px; }
    .pf-join-label { font-size: 13px; }

    /* --- WCU --- */
    .wcu-section { padding: 60px 16px; }
    .wcu-fb-number { font-size: 40px; }
    .wcu-feature-block h3 { font-size: 18px; }
}

/* FAQ Layout Overrides */
.sch-row.faq-layout {
    grid-template-columns: 80px 1fr 2fr 160px !important;
}

@media (max-width: 1024px) {
    .sch-row.faq-layout {
        grid-template-columns: 80px 1fr 1fr 140px !important;
    }
}

@media (max-width: 768px) {
    .sch-row.faq-layout {
        grid-template-columns: 1fr !important;
    }
}
