
        * {
            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 {
            margin-top: 70px;
            min-height: calc(100vh - 70px);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            isolation: isolate;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(26, 26, 26, 0.72) 100%);
            z-index: 1;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            background-image: var(--hero-desktop-image);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            
            filter: brightness(var(--hero-image-brightness)) contrast(var(--hero-image-contrast)) saturate(var(--hero-image-saturate)) blur(var(--hero-image-blur));
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem;
            max-width: 620px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100%;
            animation: fadeUp 1s ease forwards;
        }

        .hero-headline {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            animation: fadeUp 1s ease 0.15s both;
        }

        .hero-headline br {
            display: block;
            content: '';
        }

        .hero-headline .highlight {
            color: var(--accent-orange);
        }

        .hero-headline .hero-line {
            display: block;
        }

        .hero-headline .hero-line-orange {
            color: var(--accent-orange);
        }

        .hero-description {
            font-size: 1.05rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-weight: 500;
            animation: fadeUp 1s ease 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 0.8rem;
            animation: fadeUp 1s ease 0.45s both;
        }

        .btn-primary {
            background: var(--accent-orange);
            color: var(--primary-dark);
            padding: 0.8rem 1.6rem;
            border-radius: 4px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
            text-decoration: none;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--accent-orange-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
            letter-spacing: 0.3px;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-white);
            padding: 0.9rem 2rem;
            border: 2px solid var(--accent-orange);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        .mobile-only {
            display: none;
        }

        .hero-text-scale {
            --hero-title-size: clamp(2rem, 6vw, 3.8rem);
            --hero-desc-size: 1.05rem;
            --hero-btn-width: auto;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .why-choose,
        .equipment-section,
        .plans-section,
        .about-fitness-section,
        .testimonials-section {
            animation: fadeUp 0.9s ease both;
        }

        .why-choose {
            animation-delay: 0.2s;
        }

        .equipment-section {
            animation-delay: 0.35s;
        }

        .plans-section {
            animation-delay: 0.5s;
        }

        .about-fitness-section {
            animation-delay: 0.65s;
        }

        .testimonials-section {
            animation-delay: 0.8s;
        }

        /* ===== OPEN STATUS CARD ===== */
        

        .status-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            text-align: center;
        }

        .status-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .status-icon {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .status-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .status-label {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.5;
            font-weight: 500;
        }

        @media (max-width: 1200px) {
            .open-status-card {
                padding: 2.5rem;
            }

            .status-content {
                gap: 2rem;
            }

            .status-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 1024px) {
            .status-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .open-status-card {
                padding: 2rem;
            }

            .status-number {
                font-size: 2rem;
            }

            .status-icon {
                font-size: 2.2rem;
                margin-bottom: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
                height: 70px;
            }

            .nav-container {
                height: 70px;
            }

            .logo {
                font-size: 1.82rem;
                gap: 0.25rem;
            }

            .logo img {
                height: 70px;
            }

            .logo .logo-sfc {
                font-size: 1.22rem;
            }

            .status-content {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }

            .open-status-card {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }

            .status-icon {
                font-size: 2.2rem;
                margin-bottom: 0.6rem;
            }

            .status-number {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .status-label {
                font-size: 0.9rem;
            }
            
        }

        @media (max-width: 480px) {
            :root {
                 --hero-image-brightness: 1.45;
            --hero-image-contrast: 2;
            --hero-image-saturate: 1.4;
            --hero-image-blur: 0px;
            }
            .navbar {
                padding: 0 0.8rem;
                height: 80px;
            }

            .nav-container {
                height: 90px;
            }


            .logo {
                font-size: 0.78rem;
                gap: 0.2rem;
            }

            .logo img {
                margin-top: 19px;
                height: 93px;
            }

            .logo .logo-sfc {
                margin-top: 19px;
                font-size: 1.2rem;
            }

            .hero {
                align-items: center;
                justify-content: center;
                text-align: center;
                
            }

            .hero-content {
                width: 100%;
                padding: 2rem 1.2rem;
                align-items: center;
                justify-content: center;
                
            }

            .hero-headline {
                line-height: 1.15;
                margin-bottom: 1rem;
                font-size: clamp(1.8rem, 8vw, 2.8rem);
            }

            .hero-line {
                display: block;
            }

            .hero-line-orange {
                font-size: clamp(2.9rem, 7.5vw, 2.6rem);
            }

            .hero-line-two,
            .hero-line-three {
                font-size: clamp(2.0rem, 6.8vw, 2.2rem);
            }

            .hero-description {
                font-size: 0.95rem;
                max-width: 320px;
                margin-bottom: 1.9rem;
            }

            .hero-buttons {
                justify-content: center;
                width: 100%;
            }

            .btn-primary {
                width: min(140px, 60vw);
                justify-content: center;
                padding: 0.7rem 0.9rem;
                font-size: 1.2rem;
            }

            .mobile-only {
                display: block;
            }

            .open-status-card {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }

            .status-icon {
                font-size: 1.8rem;
            }

            .status-number {
                font-size: 1.5rem;
            }

            .status-label {
                font-size: 0.85rem;
            }
        }

        /* ===== WHY CHOOSE US ===== */
        .why-choose {
            padding: 6rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .feature-card {
                padding: 1.5rem 1rem;
            }

            .feature-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .feature-title {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }

            .feature-desc {
                font-size: 0.85rem;
            }
        }

        .feature-card {
            background: var(--secondary-dark);
            padding: 2rem;
            border-radius: 6px;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-5px);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-desc {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== EQUIPMENT SHOWCASE (Carousel) ===== */
        .equipment-section {
            padding: 6rem 2rem;
            background: var(--secondary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .equipment-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
        }

        .carousel-wrapper {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 1rem;
        }

        .carousel-wrapper::-webkit-scrollbar {
            height: 6px;
        }

        .carousel-wrapper::-webkit-scrollbar-track {
            background: var(--border-gray);
            border-radius: 10px;
        }

        .carousel-wrapper::-webkit-scrollbar-thumb {
            background: var(--accent-orange);
            border-radius: 10px;
        }

        .equipment-card {
            min-width: 100%;
            flex: 0 0 100%;
            background: var(--primary-dark);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-gray);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        @media (min-width: 768px) {
            .equipment-card {
                min-width: 45%;
                flex: 0 0 45%;
            }
        }

        @media (min-width: 1024px) {
            .equipment-card {
                min-width: 28%;
                flex: 0 0 28%;
            }
        }

        .equipment-image {
            width: 100%;
            aspect-ratio: 591 / 800;
            min-height: 320px;
            padding: 0.9rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            font-size: 3rem;
        }

        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 8px;
            display: block;
        }

        .equipment-info {
            padding: 1.5rem;
        }

        .equipment-category {
            color: var(--accent-orange);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .equipment-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .equipment-desc {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .carousel-controls {
            display: flex;
            gap: 1rem;
            margin-top: 3rem;
            justify-content: center;
        }

        .carousel-controls.mobile {
            display: none;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--border-gray);
            background: transparent;
            color: var(--text-white);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .carousel-btn.active {
            border-color: var(--accent-orange);
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--accent-orange);
            width: 24px;
            border-radius: 4px;
        }

        .swipe-hint {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 1rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        @media (max-width: 768px) {
            .carousel-controls {
                display: none;
            }

            .carousel-controls.mobile {
                display: flex;
                justify-content: center;
                gap: 1rem;
                margin-top: 2rem;
            }

            .swipe-hint {
                display: block;
            }
        }

        /* ===== PLANS SECTION ===== */
        .plans-section {
            padding: 6rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .plans-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .plan-card {
            background: var(--secondary-dark);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-gray);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .plan-card.featured {
            border: 2px solid var(--accent-orange);
            transform: scale(1.05);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-orange);
        }

        .plan-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--accent-orange);
            color: var(--primary-dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .plan-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
        }

        .plan-duration {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-gray);
            color: var(--text-gray);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--accent-orange);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .plan-btn {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid var(--accent-orange);
            background: transparent;
            color: var(--accent-orange);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            text-decoration: none;
            display: inline-block;
        }

        .plan-btn:hover {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        .plan-card.featured .plan-btn {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        .plan-card.featured .plan-btn:hover {
            background: var(--accent-orange-dark);
        }

        .add-more-plans-btn {
            text-align: center;
            padding: 2rem 0;
        }

        .add-more-plans-btn p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }



        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 6rem 2rem;
            background: var(--primary-dark);
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--secondary-dark);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: var(--accent-orange);
            transform: translateY(-5px);
        }

        .testimonial-rating {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .testimonial-info h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .testimonial-info p {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.05) 100%);
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid var(--border-gray);
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 1rem;
            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) {
            .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;
            }

            .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);
        }