* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0f0f0f;
            --secondary-dark: #1a1a1a;
            --accent-orange: #ff6b35;
            --accent-orange-dark: #e55a24;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --border-gray: #2a2a2a;
            --hero-desktop-image: url('assets/dumbellcanava1.png');
            --hero-mobile-image: url('assets/2.png');
            --hero-image-brightness: 1.55;
            --hero-image-contrast: 1;
            --hero-image-saturate: 1;
            --hero-image-blur: 0px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        #preloader{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(8px);
    z-index:99999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-logo{

    position:relative;

    width:190px;
    height:190px;

    display:flex;
    justify-content:center;
    align-items:center;

}

#preloader .logo{

    width:170px;

    z-index:2;

    animation:
        pulse 1.6s ease-in-out infinite;

}

#preloader .ring{

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    border-top:4px solid rgb(198, 96, 32);
    border-right:4px solid transparent;
    border-bottom:4px solid rgb(198, 96, 32);
    border-left:4px solid transparent;

    animation:spin 1.2s linear infinite;

}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}


@keyframes pulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

}


        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-gray);
            padding: 0 2rem;
            height: 79px;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            position: relative;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .logo img {
            height: 102px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .logo .logo-sfc {
            color: var(--accent-orange);
            font-weight: 800;
            font-size: 1.7rem;
        }

        .logo-text {
            color: var(--text-white);
        }

        .logo-highlight {
            color: var(--accent-orange);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            justify-content: center;
        }

        .nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .contact-btn {
            border: 2px solid var(--accent-orange);
            color: var(--accent-orange);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
            font-size: 0.95rem;
        }

        .contact-btn:hover {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== SIDE MENU (Mobile) ===== */
        .side-menu {
            position: fixed;
            right: -100%;
            top: 0;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: var(--secondary-dark);
            border-left: 1px solid var(--border-gray);
            padding: 2rem 1.5rem;
            z-index: 999;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .side-menu.active {
            right: 0;
        }

        .side-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-gray);
        }

        .side-menu-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .close-btn {
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-btn:hover {
            background: rgba(255,255,255,0.08);
        }

        .side-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .side-menu-links a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            padding: 0.8rem 0;
            transition: color 0.3s ease;
        }

        .side-menu-links a:hover {
            color: var(--accent-orange);
        }

        .side-menu .contact-btn {
            width: 100%;
            margin-top: 2rem;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            display: none;
        }

        .menu-overlay.active {
            display: block;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            width: 100%;
            min-height: calc(100vh - 79px);
            margin-top: 79px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 700px;
            text-align: center;
            padding: 3rem 2rem;
            animation: slideInUp 0.8s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-headline {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
        }

        .hero-line {
            display: block;
        }

        .hero-line-orange {
            color: var(--accent-orange);
        }

        .hero-line-two {
            color: var(--text-white);
        }

        .hero-line-three {
            color: var(--text-gray);
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            background: var(--accent-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-orange);
            border: 2px solid var(--accent-orange);
        }

        .btn-secondary:hover {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        /* ===== SECTIONS ===== */
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.05rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-choose {
            padding: 5rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
            border: 1px solid var(--border-gray);
            padding: 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-10px);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--text-white);
        }

        .feature-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== EQUIPMENT SECTION ===== */
        .equipment-section {
            padding: 5rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .equipment-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .equipment-card {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
            border: 1px solid var(--border-gray);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .equipment-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
        }

        .equipment-image {
            width: 100%;
            height: 200px;
            background: rgba(255, 107, 53, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .equipment-card:hover .equipment-image img {
            transform: scale(1.1);
        }

        .equipment-info {
            padding: 1.5rem;
        }

        .equipment-category {
            color: var(--accent-orange);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .equipment-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 0.8rem;
        }

        .equipment-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== PLANS SECTION ===== */
        .plans-section {
            padding: 5rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .plans-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .plan-card {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
            border: 1px solid var(--border-gray);
            padding: 2.5rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .plan-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
        }

        .plan-card.featured {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
            border-color: var(--accent-orange);
            transform: scale(1.05);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-orange);
            color: var(--primary-dark);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .plan-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-white);
        }

        .plan-price {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-orange);
            margin-bottom: 0.2rem;
        }

        .plan-duration {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
            color: var(--text-gray);
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-gray);
            font-size: 0.95rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li:before {
            content: "✓ ";
            color: var(--accent-orange);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .plan-btn {
            width: 100%;
            padding: 0.8rem;
            background: var(--accent-orange);
            color: var(--primary-dark);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .plan-btn:hover {
            background: var(--accent-orange-dark);
            transform: translateY(-2px);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 5rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
            border: 1px solid var(--border-gray);
            padding: 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-10px);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
        }

        .testimonial-rating {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .testimonial-info h4 {
            color: var(--text-white);
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .testimonial-info p {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .cta-desc {
            color: var(--text-gray);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 4rem 2rem 2rem;
            background: var(--secondary-dark);
            border-top: 1px solid var(--border-gray);
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .footer-column a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: var(--accent-orange);
        }

        .footer-column p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-gray);
            text-align: center;
            color: var(--text-gray);
        }

        .footer-bottom a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent-orange);
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            margin-top: 0.5rem;
        }

        .whatsapp-btn:hover {
            color: var(--accent-orange-dark);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .bmi-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                margin-top: 70px;
                min-height: calc(100vh - 70px);
            }

            .hero-content {
                padding: 3rem 2rem;
                max-width: min(620px, 100%);
            }

            .hero-headline {
                font-size: clamp(2rem, 4.4vw, 3rem);
            }

            .section-title {
                font-size: clamp(1.8rem, 3.6vw, 2.4rem);
            }

            .why-choose,
            .equipment-section,
            .plans-section,
            .testimonials-section,
            .cta-section,
            .footer {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
            }

            .nav-container {
                height: 60px;
            }

            .logo {
                font-size: 1rem;
            }

            .nav-links {
                display: none;
            }

            .contact-btn {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                margin-top: 60px;
                min-height: calc(100vh - 60px);
            }

            .hero-background {
                background-image: var(--hero-mobile-image);
            }

            .hero-content {
                position: relative;
                z-index: 2;
                padding: 2.25rem 1.25rem;
                min-height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                max-width: 100%;
            }

            .hero-headline {
                font-size: clamp(1.7rem, 5.5vw, 2.5rem);
            }

            .mobile-only {
                display: block;
            }

            .hero-description {
                font-size: 0.95rem;
                max-width: 100%;
                margin-bottom: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .open-status-card {
                padding: 1.5rem 2rem;
            }

            .open-status-label {
                font-size: 1rem;
            }

            .open-status-text {
                font-size: 1rem;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .section-title {
                font-size: 1.6rem;
            }

            .why-choose,
            .equipment-section,
            .plans-section,
            .testimonials-section,
            .cta-section,
            .footer {
                padding: 4.5rem 1.25rem;
            }

            .feature-card,
            .testimonial-card,
            .plan-card {
                padding: 1.2rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-column {
                padding-bottom: 1rem;
                border-bottom: 1px solid var(--border-gray);
            }
        }

        @media (max-width: 480px) {
            .navbar {
               height: 86px;
            }
            .nav-container {
                height: 75px;
            }
            .hero {
                margin-top: 72px;
                min-height: calc(100vh - 72px);
            }

            .hero-headline {
                font-size: clamp(1.45rem, 8vw, 2rem);
                line-height: 1.1;
                text-align: center;
            }

            .hero-description {
                font-size: 0.9rem;
                text-align: center;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                gap: 0.65rem;
                align-items: center;
            }
.logo-sfc {
                font-size: 1.1rem;
            }
            .btn-primary,
            .btn-secondary {
                width: min(100%, 280px);
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
                justify-content: center;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .plan-price {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 1.6rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-card,
            .testimonial-card,
            .plan-card,
            .open-status-card {
                padding: 1.2rem 0.95rem;
            }

            .why-choose,
            .equipment-section,
            .plans-section,
            .testimonials-section,
            .cta-section,
            .footer {
                padding: 4rem 1rem;
            }

            .footer-content {
                gap: 1.2rem;
            }

            .footer-column {
                padding-bottom: 0.9rem;
            }
        }

        /* ===== UTILITY ===== */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .highlight-orange {
            color: var(--accent-orange);
        }