
   
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-color: #D32F2F;
            --primary-hover: #D32F2F;
            --gold-accent: #C59D5F;
            --dark-bg: #121212;
            --card-bg: #1E1E1E;
            --text-light: #F8F9FA;
            --text-gray: #ADB5BD;
            --white: #ffffff;
            --font-heading: 'Oswald', sans-serif;
            --font-royal: 'Playfair Display', serif;
            --font-body: 'Roboto', sans-serif;
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

       h2, h3 {line-height: 50px !important}

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none;
            text-align: left;
            margin: 0px 5px 0px 18px;

         }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-family: var(--font-heading);
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            letter-spacing: 1px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(232, 93, 4, 0.6);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--white);
            text-transform: uppercase;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        .highlight {
            color: var(--primary-color);
        }

        .royal-text {
            font-family: var(--font-royal);
            color: var(--gold-accent);
            font-style: italic;
        }

        /* --- GLASS BOX UTILS --- */
        .glass-box {
            background: rgba(30, 30, 30, 0.65);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            max-width: 588px;
        }

        .glass-box h2 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 15px;
            text-transform: uppercase;
            text-align: left;
        }

        .glass-box p {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 25px;
            line-height: 1.6;
            text-align: left;
        }

        textarea {width: 100%; background: #2a2a2a; padding: 15px; 
    font-family: var(--font-body);}

        /* --- INTERACTION SECTION --- */
        #interaction {
            padding: 80px 0;
            text-align: center;
        }

        .interaction-btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .interact-btn {
            background: transparent;
            border: 2px solid var(--text-gray);
            color: var(--text-light);
            padding: 15px 30px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            width: 100%;
            text-align: left;
            gap: 10px;
        }

        .interact-btn:hover {
            border-color: var(--primary-color);
            background: rgba(232, 93, 4, 0.1);
            color: var(--primary-color);
        }

        /* --- ANIMATION CLASSES --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

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

        /* =========================================
           HEADER & NAVBAR (RESPONSIVE)
           ========================================= */
        header {
            background-color: rgba(18, 18, 18, 0.98);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            z-index: 1001;
        }

        .logo span { color: var(--primary-color); }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a:not(.trial-btn) {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .nav-links a:not(.trial-btn):hover { color: var(--primary-color); }

        .trial-btn {
            background: var(--white);
            color: var(--primary-color) !important;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            border: 2px solid var(--white);
        }

        .trial-btn:hover {
            background: var(--primary-color);
            color: var(--white) !important;
            border-color: var(--primary-color);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--white);
            z-index: 1001;
        }

        /* =========================================
           HERO SECTION
           ========================================= */
        #hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding-top: 60px;
            background-image: url('../img/boxx.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax Effect */
        }

        /* Dark Overlay to make text readable over BG Image */
        #hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 0;
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.8;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        /* --- SPLIT SECTION --- */
        #split-text-bg {
            display: flex;
            min-height: 500px;
            background-color: var(--dark-bg);
        }

        .split-left-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
            background: var(--dark-bg);
        }

        .split-left-text h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 15px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .split-left-text h2 span { color: var(--primary-color); }

        .split-left-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 500px;
            margin-bottom: 25px;
        }

        .split-right-bg {
            flex: 1;
            background-image: url('../img/hero1.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            /*background-attachment: fixed; /* Parallax */*/
        }

        /* --- ACTIVITIES --- */
        #activities {
            padding: 100px 0;
            background-color: var(--card-bg);
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(278px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .activity-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .activity-circle {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 20px;
            border: 3px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .activity-circle::after {
            content: '';
            position: absolute;
            top: -3px; left: -3px; right: -3px; bottom: -3px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--gold-accent));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .activity-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .activity-item:hover .activity-circle img { transform: scale(1.15); }
        .activity-item:hover .activity-circle::after { opacity: 1; }

        .activity-item h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: #D32F2F;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .activity-desc {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.4;
            max-width: 378px;
        }

        /* --- TRANSPARENT SECTIONS (Right Text) --- */
        #promo-right-1 {
            min-height: 500px;
            display: flex;
            align-items: center;
            background-image: url('../img/aa.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax */
            position: relative;
        }

        #promo-right-1::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
        }

        .container-promo {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            padding: 28px 20px;
        }

        /* --- WHAT IS 100 REPS --- */
        #what-is-100rep {
            background-image: url('../img/text.jpg');
            background-attachment: fixed; /* Parallax */
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 0;
            display: flex;
            align-items: center;
        }

        #what-is-100rep::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .trans-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: flex-start;
        }

        .trans-box-left {
            background: rgba(18, 18, 18, 0.8);
            backdrop-filter: blur(10px);
            padding: 50px;
            border-radius: 8px;
            border-left: 5px solid var(--primary-color);
            max-width: 748px;
        }

        .trans-box-left h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .trans-box-left .royal-sub {
            font-family: var(--font-royal);
            font-size: 1.4rem;
            color: var(--gold-accent);
            margin-bottom: 25px;
            display: block;
        }

        .trans-box-left ul { margin-bottom: 30px; }
        .trans-box-left li { margin-bottom: 12px; color: #ddd; font-size: 1.05rem; }

        /* --- PERSONAL TRAINING --- */
        #detail-split {
            display: flex;
            background: var(--dark-bg);
            min-height: 700px; 
        }

        .detail-img {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/b.jpg');
            background-attachment: fixed; /* Parallax */
            background-size: cover;
            background-position: center;
        }

        .detail-text {
            flex: 1;
            min-width: 300px;
            padding: 80px;
            background: var(--card-bg);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .detail-text h3 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .detail-text p { font-size: 1rem; color: var(--text-gray); margin-bottom: 30px; line-height: 1.7; }

        .feature-list { margin-bottom: 40px; }
        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: var(--text-light);
            font-size: 1rem;
        }
        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

        /* --- TRANSPARENT SECTIONS (Left Text) --- */
        #promo-left-1 {
            min-height: 450px;
            display: flex;
            align-items: center;
            background-image: url('../img/header.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax */
            position: relative;
        }

        #promo-left-1::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
        }

        .container-promo-left {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            justify-content: flex-start;
            padding: 0 20px;
        }

        /* --- COMPACT SPLIT --- */
        #compact-split {
            display: flex;
            flex-wrap: wrap;
            background: var(--dark-bg);
            overflow: hidden;
        }

        .compact-img {
            flex: 1;
            min-width: 300px;
            min-height: 500px;
            background-image: url('../img/d.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax */
        }

        .compact-text-wrapper {
            flex: 1;
            min-width: 300px;
            padding: 40px 60px;
            background: var(--card-bg);
            display: flex;
            flex-direction: column;
            justify-content: flex-start; 
            padding-top: 80px; 
        }

        .compact-text-wrapper h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 8px;
            line-height: 40px;
            text-transform: uppercase;
        }

        .compact-sub {
            font-family: var(--font-royal);
            color: var(--gold-accent);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .compact-text-wrapper p {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 25px;
            line-height: 1.6;
            padding-bottom: 28px;
        }

        .btn-small { padding: 10px 25px; font-size: 0.9rem; }

        /* --- TRANSPARENT SECTIONS (Right Text 2) --- */
        #promo-right-2 {
            min-height: 450px;
            display: flex;
            align-items: center;
            background-image: url('../img/box.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax */
            position: relative;
        }

        #promo-right-2::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
        }

        /* --- ROYAL GRID --- */
        #what-we-offer-royal {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }

        .royal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .royal-card {
            background: var(--card-bg);
            padding: 30px 30px 30px 60px;
            border-radius: 4px;
            position: relative;
            border: 1px solid #333;
            transition: var(--transition);
        }

        .royal-card:hover { border-color: var(--gold-accent); transform: translateY(-5px); }

        .royal-card::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: #444;
        }

        .step-number {
            position: absolute;
            left: 12px;
            top: 10px;
            width: 28px;
            height: 28px;
            background: var(--dark-bg);
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 0.9rem;
            color: var(--primary-color);
            z-index: 2;
        }

        .royal-card:hover .step-number { background: var(--primary-color); color: var(--white); }

        .royal-card h3 {
            font-family: var(--font-royal);
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 10px;
            text-transform: capitalize;
        }

        .royal-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }

        /* --- OTHER SECTIONS --- */
        #parallax-promo { display: flex; height: 500px; overflow: hidden; }
        .parallax-left { flex: 1; background-image: url('../img/f.jpg'); background-attachment: fixed; background-position: center; background-size: cover; }
        .parallax-right { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 50px; background-color: var(--card-bg); }
        .parallax-right h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 15px; }
        .parallax-right .subtitle { color: var(--text-gray); margin-bottom: 30px; }

        #why-choose { padding: 100px 0; text-align: center; }
        .features-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; margin-top: 40px; }
        .feature-item { max-width: 300px; }
        .feature-item i { font-size: 3rem; color: var(--white); margin-bottom: 20px; background: rgba(255,255,255,0.1); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; }

        #pricing { padding: 100px 0; background-color: var(--card-bg); }
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .price-card { background: var(--dark-bg); padding: 40px; border-radius: 10px; text-align: center; border: 1px solid #333; transition: var(--transition); position: relative; }
        .price-card:hover { border-color: var(--primary-color); transform: scale(1.05); }
        .plan-name { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-gray); margin-bottom: 10px; }
        .price { font-size: 3rem; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; }
        .price span { font-size: 1rem; color: var(--text-gray); }
        .price-features li { margin-bottom: 10px; color: var(--text-light); border-bottom: 1px solid #333; padding-bottom: 10px; }
        .price-features li:last-child { border-bottom: none; }

        #bmi-calc { padding: 80px 0; background: linear-gradient(45deg, #121212, #1E1E1E); }
        .bmi-container { background: var(--dark-bg); padding: 40px; border-radius: 10px; max-width: 600px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 4px solid var(--primary-color); }
        .bmi-form { display: flex; flex-direction: column; gap: 20px; }
        .input-group label { display: block; margin-bottom: 5px; color: var(--text-gray); }
        .input-group input { width: 100%; padding: 15px; background: #2a2a2a; border: 1px solid #444; color: white; border-radius: 5px; }
        #bmi-result { margin-top: 20px; padding: 15px; text-align: center; font-weight: bold; border-radius: 5px; display: none; }

        #transparent-promo { background-image: url('../img/boxx.jpg'); background-attachment: fixed; background-position: center; background-size: cover; position: relative; padding: 100px 0; height: 500px; display: flex; align-items: center; }
        #transparent-promo::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); }
        .trans-content { position: relative; z-index: 2; width: 100%; display: flex; justify-content: flex-end; padding-right: 50px; }
        .trans-box { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); max-width: 500px; text-align: left; }
        .trans-box h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }
        .trans-box p { margin-bottom: 20px; color: #ddd; }

        #faq { padding: 100px 0; }
        .faq-item { background: var(--card-bg); margin-bottom: 15px; border-radius: 5px; overflow: hidden; }
        .faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 1.1rem; transition: var(--transition); }
        .faq-question:hover { color: var(--primary-color); background: #252525; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 20px; background: #222; }
        .faq-answer p { padding: 20px 0; color: var(--text-gray); }

        /* =========================================
           UPDATED SECTION: CONTACT (BG IMAGE)
           ========================================= */
        #contact {
            padding: 100px 0;
            position: relative;
            /* ADDED BACKGROUND IMAGE */
            background-image: url('../img/boxxx.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax */
            text-align: center;
        }

        /* Dark overlay for contact section */
        #contact::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 0;
        }

        #contact .container {
            position: relative;
            z-index: 1; /* Bring content above overlay */
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            background-color: #0a0a0a;
            padding: 60px 0 20px;
            border-top: 1px solid #222;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: #fff;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-col p {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .links-col ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .links-col ul li a {
            color: #aaa;
            transition: 0.3s;
        }

        .links-col ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #222;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            border-top: 1px solid #222;
            padding-top: 20px;
            color: #555;
            font-size: 0.9rem;
        }

        #toast { visibility: hidden; min-width: 250px; background-color: var(--primary-color); color: #fff; text-align: center; border-radius: 4px; padding: 16px; position: fixed; z-index: 2000; left: 50%; bottom: 30px; transform: translateX(-50%); box-shadow: 0 4px 15px rgba(0,0,0,0.4); font-size: 1rem; opacity: 0; transition: opacity 0.5s, bottom 0.5s; }
        #toast.show { visibility: visible; opacity: 1; bottom: 50px; }

        /* --- UPDATED MEDIA QUERIES FOR MOBILE IMAGE FIX --- */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 78px;
                right: -100%;
                height: calc(100vh - 60px);
                width: 100%;
                background: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: 0.4s ease-in-out;
                gap: 748px;
                border-top: 1px solid #333;
            }

            .split-right{
                display: none;
            }
            .nav-links.active { right: 0; }
            
            /* Fix Layout Direction */
            #split-text-bg, #detail-split, #compact-split, #parallax-promo { flex-direction: column; height: auto; min-height: auto; }
            .split-left-text, .detail-text, .compact-text-wrapper, .parallax-right { padding: 40px 20px; order: 2; }
            .split-right-bg, .detail-img, .compact-img, .parallax-left { height: 300px; width: 100%; order: 1; }
            
            /* Fix Centering for Promos */
            .trans-content, .container-promo, .container-promo-left { justify-content: center; padding: 0 20px; text-align: center; }
            .trans-box, .glass-box { text-align: center; background: rgba(0,0,0,0.8); margin: 0 auto; width: 100%; padding: 28px 18px; }
            .trans-container { justify-content: center; }
            .trans-box-left { max-width: 100%; margin: 0 -18px; padding: 18px }

            /* --- FIX FOR IMAGE HIDING ON MOBILE --- */
            
            /* 1. Disable background-attachment: fixed on mobile because it causes rendering issues */
            #hero,
            #split-text-bg,
            .split-right-bg,
            #detail-split,
            .detail-img,
            #what-is-100rep,
            #promo-right-1,
            #promo-left-1,
            #promo-right-2,
            #compact-split,
            .compact-img,
            #parallax-promo,
            .parallax-left,
            #transparent-promo,
            #contact {
                background-attachment: scroll !important;
            }

            /* 2. Ensure image containers have height so they don't collapse */
            .split-right-bg,
            .detail-img,
            .compact-img,
            .parallax-left {
                min-height: 250px;
            }
        }

        /* --- SPLIT SECTION STYLES --- */
        .split-section {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .split-left {
            flex: 1;
            padding: 60px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--bg-dark);
        }

        .split-right {
            flex: 1;
            min-height: 500px;
            background-size: cover;
            background-position: center;
        }

        /* --- FORM STYLES --- */
        .split-left h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .split-left h2 span { color: var(--primary-color); }

        .split-left p {
            color: var(--text-gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .lead-form {
            display: flex;
            flex-direction: row;
            gap: 20px;
            margin-bottom: 18px;
            flex-wrap: wrap;
            width: 100%;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            background: #2a2a2a;
            border: 1px solid #444;
            color: #fff;
            border-radius: 4px;
            font-family: var(--font-body);
            outline: none;
            transition: 0.3s;
        }

        .form-group input:focus {
            border-color: var(--primary-color);
            background: #333;
        }

        /* --- PRICING --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 0;
        }

        .price-card {
            background: var(--bg-card);
            padding: 40px;
            text-align: center;
            border: 1px solid #333;
            border-radius: 8px;
        }

        .price-wrapper {
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .old-price {
            font-size: 1.1rem;
            color: #666;
            text-decoration: line-through;
            margin-bottom: 5px;
            font-family: var(--font-body);
        }

        .price {
            font-size: 2.5rem;
            font-family: var(--font-heading);
            margin: 0;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .price span { font-size: 1rem; color: #aaa; }

        /* New Pricing Description Section with BG */
        .pricing-desc-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://picsum.photos/seed/gymweights/1920/800');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin-top: -40px;
            border-top: 1px solid #333;
        }

        .pricing-desc-content {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .small-label {
            font-family: var(--font-body);
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .big-heading {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #fff;
            max-width: 600px;
        }

         /* Main Hero Section Container */
        .sb-hero-section {
            position: relative;
            width: 100%;
            height: 85vh; /* Full viewport height for impact */
            min-height: 600px;
            background-image: url('../img/boxx.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center; /* Vertically center content */
            justify-content: flex-start; /* Align content to left */
        }

        /* Dark Overlay to ensure text readability over image */
        .sb-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }

        /* Content Wrapper to hold text and button */
        .sb-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 5%; /* Spacing from left edge */
            padding-right: 5%;
        }

        /* Top Text: "Stride Box - Structured Performance Training" */
        .sb-top-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            border-left: 3px solid #d32f2f; /* Red accent line */
            padding-left: 15px;
        }

        /* Main Headline */
        .sb-headline {
            font-size: clamp(2.8rem, 5vw, 4.5rem); /* Responsive font size */
            font-weight: 800;
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 5px;
            max-width: 800px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        /* The red text span inside headline */
        .sb-highlight-text {
            color: #d32f2f; /* Bright Red Color */
            display: inline-block;
        }

        /* CTA Button: "Talk to a coach" */
        .sb-cta-button {
            display: inline-block;
            background-color: #8B0000;
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 16px 40px;
            border: none;
            border-radius: 4px; /* Slight rounded corners */
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
        }

        /* Hover Effect for Button */
        .sb-cta-button:hover {
            background-color: #b71c1c; /* Darker red on hover */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .sb-hero-section {
                align-items: flex-end; /* Align to bottom on mobile */
                padding-bottom: 60px;
                height: 100vh; /* Full height on mobile */
            }

            .sb-content-wrapper {
                padding-left: 0; /* Center text on mobile */
                font-size: 1.2rem;
                padding: 10px 8px 128px 28px;
            }
            
            .sb-top-label {
                border-left: none;
                border-bottom: 3px solid #d32f2f;
                display: inline-block;
                padding-left: 0;
                padding-bottom: 10px;
            }

            .sb-headline {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* 
     * STRIDE BOX PLANS CSS (Updated: Vertical Price)
     */

    .sb-plans-section {
        background-color: #000;
        padding: 80px 20px;
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    .sb-plans-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        align-items: stretch;
    }

    .sb-plan-card {
        background-color: #1a1a1a;
        border: 1px solid #333;
        border-radius: 8px;
        padding: 30px 20px;
        flex: 1 1 250px;
        text-align: center;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform 0.3s ease, border-color 0.3s ease;
        min-height: 420px;
    }

    .sb-plan-card:hover {
        transform: translateY(-10px);
        border-color: #d32f2f;
    }

    .sb-plan-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 4px;
        background-color: #333;
        border-radius: 0 0 4px 4px;
        transition: background-color 0.3s;
    }
    
    .sb-card-featured::before, .sb-card-best-value::before {
        background-color: #D32F2F;
    }

    .sb-plan-title {
        font-size: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: #ccc;
    }

    /* --- UPDATED PRICING CSS (Vertical Stack) --- */
    
    .sb-price-wrapper {
        display: flex;
        flex-direction: column; /* Changed from row to column for vertical alignment */
        align-items: center;
        justify-content: center;
        gap: 5px; /* Small gap between old and new price */
        margin-bottom: 10px;
    }

    .sb-old-price {
        font-size: 1.1rem;
        color: #666;
        text-decoration: line-through; /* Cut effect */
        font-weight: 500;
        line-height: 1;
    }

    .sb-new-price {
        font-size: 2.8rem; /* Slightly larger for dominance */
        font-weight: 800;
        color: #fff;
        line-height: 1;
        /* Small margin top to separate it slightly from the cut price */
        margin-top: 2px; 
    }

    /* Red color for Best Value card */
    .sb-card-best-value .sb-new-price {
        color: #D32F2F;
    }

    .sb-desc-text {
        font-size: 0.9rem;
        color: #aaa;
        margin-bottom: 25px;
        font-style: italic;
    }
    /* --- END UPDATED PRICING CSS --- */

    .sb-plan-features {
        list-style: none;
        margin-bottom: auto;
        text-align: left;
        padding-left: 10px;
    }

    .sb-plan-features li {
        margin-bottom: 12px;
        font-size: 0.95rem;
        color: #ddd;
        border-bottom: 1px solid #333;
        padding-bottom: 8px;
    }

    .sb-badge-not-recommended {
        background-color: #333;
        color: #888;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
    }

    .sb-note {
        font-size: 0.8rem;
        color: #666;
        margin-top: 10px;
    }

    .sb-best-value-badge {
        position: absolute;
        top: -12px;
        right: -12px;
        background-color: #D32F2F;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        transform: rotate(5deg);
    }

    .sb-plan-btn {
        display: block;
        margin-top: 25px;
        background-color: transparent;
        border: 2px solid #fff;
        color: #fff;
        padding: 12px 20px;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 0.85rem;
        letter-spacing: 1px;
        transition: all 0.3s;
        border-radius: 4px;
    }

    .sb-plan-btn:hover {
        background-color: #d32f2f;
        border-color: #d32f2f;
    }
    
    .sb-card-basic .sb-plan-btn {
        display: none;
    }
    .sb-card-basic {
        opacity: 0.7;
    }

    /* ================================================== */
        /* SECTION 2: REVIEWS (3 CARDS WITH QUOTES) */
        /* Unique Class: .unique-reviews-section */
        /* ================================================== */
        .unique-reviews-section {
            padding: 100px 20px;
            background-color: #0f0f0f;
            border-top: 1px solid #222;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background-color: #1e1e1e;
            padding: 40px;
            border-radius: 8px;
            border: 1px solid #333;
            position: relative;
        }

        /* Quote Symbol Styling */
        .quote-symbol {
            font-size: 3rem;
            color: #D32F2F; /* Red Quote */
            margin-bottom: 20px;
            display: block;
            opacity: 0.8;
        }

        .review-text {
            font-style: italic;
            color: #dcdcdc;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background-color: #333;
            border-radius: 50%;
            overflow: hidden;
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reviewer-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            color: #fff;
        }

        .reviewer-role {
            font-size: 0.85rem;
            color: #E85D04;
            text-transform: uppercase;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-header h2 { font-size: 2rem; }
            .process-grid, .reviews-grid { grid-template-columns: 1fr; }
        }


        /* 1. Default State: Hidden on Desktop/Laptop */
        .mobile-only-image-section {
            display: none; /* Screen se hat jata hai */
            width: 100%;
            background-color: #000;
            overflow: hidden;
        }

        .mobile-only-image-section img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* 2. Mobile State: Show only on Phones (Max-width 768px) */
        @media (max-width: 768px) {
            .mobile-only-image-section {
                display: block; /* Yahan dikhega */
            }
        }


        /* ================================================== */
        /* SECTION 1: NUMBERED CARDS (1, 2, 3) */
        /* Unique Class: .unique-process-section */
        /* ================================================== */
        .unique-process-section {
            padding: 100px 20px;
            background-color: #121212;
        }

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

        .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: #fff;
        }

        .section-header p {
            color: #aaaaaa;
            max-width: 600px;
            margin: 0 auto;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-card {
            background-color: #1e1e1e;
            padding: 40px 30px 30px; /* Top padding extra for spacing */
            border-radius: 8px;
            text-align: center;
            position: relative; /* Needed for absolute positioning of circle */
            border: 1px solid #333;
            transition: 0.3s;
        }

        .process-card:hover {
            transform: translateY(-5px);
            border-color: #D32F2F;
        }

        /* The Number Circle - Positioned Above Top Line */
        .step-number-circle {
            position: absolute;
            top: -25px; /* Pulls it up half its height */
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: #D32F2F; /* Primary Red Color */
            color: #fff;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 3px solid #121212; /* Dark border creates gap effect */
            z-index: 2;
        }

        .process-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            margin-top: 10px;
            color: #fff;
        }

        .process-card p {
            color: #bbbbbb;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 28px;
        }
