
        :root {
            --dark: #2C2C2C;
            --gold: #D4AF37;
            --gold-light: #E6C97A;
            --gold-dark: #B8962E;
            --light: #EAEAEA;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
            --shadow: 0 8px 30px rgba(44, 44, 44, 0.1);
            --shadow-lg: 0 20px 60px rgba(44, 44, 44, 0.15);
            --radius: 20px;
            --radius-lg: 28px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }
        
        /* ===== NAVIGATION ===== */
        .navbar {
            padding: 24px 0;
            background: transparent;
            transition: var(--transition);
            position: relative;
            z-index: 100;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 14px;
            letter-spacing: -0.5px;
        }

        .nav-links li{
            margin-left:35px !important;
        }
        
        .logo span { font-size: 36px; }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 15.5px;
            position: relative;
            padding: 10px 0;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover, .nav-links a.active { color: var(--gold); }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 3px;
            background: var(--gold);
            border-radius: 3px;
            transition: width 0.35s ease;
        }
        
        .nav-links a:hover::after { width: 100%; }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--dark) !important;
            padding: 14px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2.5px solid var(--gold);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
            transition: var(--transition);
        }
        
        .cta-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 35px rgba(212, 175, 55, 0.45);
            background: var(--gold-dark);
            border-color: var(--gold-dark);
        }
        
        .cta-btn.secondary {
            background: transparent;
            border: 2.5px solid var(--dark);
            color: var(--dark) !important;
        }
        
        .cta-btn.secondary:hover {
            background: var(--dark);
            color: var(--white) !important;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            padding: 140px 20px 120px;
            background: linear-gradient(135deg, rgba(44,44,44,0.94), rgba(44,44,44,0.88)),
                        url('https://images.pexels.com/photos/12940835/pexels-photo-12940835.jpeg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -30%; right: -20%;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 12s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 20px) scale(1.05); }
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 72px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 58px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -1.2px;
        }
        
        .hero-content h1 span {
            color: var(--gold);
            position: relative;
            display: inline-block;
        }
        
        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 10px; left: -4px; right: -4px;
            height: 14px;
            background: rgba(212,175,55,0.25);
            border-radius: 10px;
            z-index: -1;
        }
        
        .hero-content p {
            font-size: 20.5px;
            color: var(--light);
            margin-bottom: 38px;
            max-width: 580px;
            font-weight: 400;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }
        
        .hero-badges {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        
        .hero-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.14);
            padding: 13px 22px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .hero-badge-icon {
            width: 44px; height: 44px;
            background: var(--gold);
            border-radius: 13px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; color: var(--dark); font-weight: 700;
        }
        
        .hero-badge-text span {
            display: block;
            font-weight: 700; font-size: 19px; color: var(--white);
        }
        
        .hero-badge-text small {
            color: var(--light); font-size: 13px; font-weight: 400;
        }
        
        .hero-image {
            position: relative;
            animation: floatImg 10s ease-in-out infinite;
        }
        
        @keyframes floatImg {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }
        
        .hero-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 6px solid var(--white);
            object-fit: cover;
            height: 500px;
        }
        
        /* ===== SECTIONS ===== */
        section { padding: 100px 20px; }
        .container { max-width: 1400px; margin: 0 auto; }
        
        .section-title {
            text-align: center;
            margin-bottom: 76px;
        }
        
        .section-title h2 {
            font-size: 44px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            letter-spacing: -0.8px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -16px; left: 50%;
            transform: translateX(-50%);
            width: 80px; height: 5px;
            background: var(--gold);
            border-radius: 3px;
        }
        
        .section-title p {
            color: #555;
            font-size: 19px;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.8;
            font-weight: 400;
        }
        
        /* ===== ABOUT ===== */
        .about { background: var(--white); }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 68px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .about-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s ease;
        }
        
        .about-image:hover img { transform: scale(1.05); }
        
        .about-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(44,44,44,0.1), transparent 60%);
            pointer-events: none;
        }
        
        .about-content h3 {
            font-size: 38px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 28px;
            line-height: 1.2;
            letter-spacing: -0.6px;
        }
        
        .about-content p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 20px;
            text-align: justify;
            font-size: 16.5px;
            font-weight: 400;
        }
        
        .about-content p:last-of-type { margin-bottom: 34px; }
        
        /* ===== COUNTER ===== */
        .counter {
            background: linear-gradient(135deg, var(--dark), #383838);
            padding: 80px 20px;
            color: var(--white);
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 34px;
            text-align: center;
        }
        
        .counter-item { padding: 26px 18px; }
        
        .counter-item h3 {
            font-size: 58px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--gold);
            line-height: 1;
            letter-spacing: -2px;
        }
        
        .counter-item p {
            font-size: 18px;
            opacity: 0.95;
            font-weight: 500;
            color: var(--light);
        }
        
        /* ===== VISION & MISSION ===== */
        .vision-mission { background: var(--light); }
        
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 44px;
        }
        
        .vm-card {
            background: var(--white);
            padding: 54px 46px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 7px solid var(--gold);
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: -60%; right: -60%;
            width: 220px; height: 220px;
            background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 75%);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .vm-card:hover::before { transform: scale(1.4); }
        
        .vm-card h3 {
            font-size: 31px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            z-index: 1;
        }
        
        .vm-card h3 i { color: var(--gold); font-size: 29px; }
        
        .vm-card p {
            color: #555;
            line-height: 1.95;
            font-size: 16.5px;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }
        
        /* ===== WHY CHOOSE US ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 46px 36px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transition: transform 0.5s ease;
            transform-origin: left;
        }
        
        .feature-card:hover {
            border-color: var(--gold);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-card:hover::before { transform: scaleX(1); }
        
        .feature-icon {
            font-size: 58px;
            margin-bottom: 24px;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(4deg);
        }
        
        .feature-card h3 {
            font-size: 22.5px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 17px;
            letter-spacing: -0.4px;
        }
        
        .feature-card p {
            color: #555;
            font-size: 15.5px;
            line-height: 1.8;
            font-weight: 400;
        }
        
        /* ===== WORK PROCESS ===== */
        .process { background: var(--white); }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 26px 0;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 72px; left: 6%; right: 6%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--dark));
            z-index: 0;
            border-radius: 5px;
            box-shadow: 0 3px 15px rgba(212,175,55,0.3);
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 20px;
        }
        
        .step-number {
            width: 122px; height: 122px;
            background: var(--white);
            border: 6px solid var(--gold);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 44px; font-weight: 800;
            color: var(--gold);
            margin: 0 auto 28px;
            transition: var(--transition);
            box-shadow: 0 10px 35px rgba(212,175,55,0.25);
            position: relative;
            overflow: hidden;
        }
        
        .step-number::after {
            content: '';
            position: absolute;
            width: 150%; height: 150%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 75%);
            animation: pulseGold 3s infinite;
            z-index: -1;
        }
        
        @keyframes pulseGold {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.4); opacity: 0; }
        }
        
        .step:hover .step-number {
            transform: scale(1.14) rotate(3deg);
            background: var(--gold);
            color: var(--dark);
            box-shadow: 0 16px 45px rgba(212,175,55,0.45);
        }
        
        .step h4 {
            font-size: 21.5px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
            letter-spacing: -0.4px;
        }
        
        .step p {
            color: #555;
            font-size: 14.5px;
            line-height: 1.7;
            padding: 0 12px;
            font-weight: 400;
        }
        
        /* ===== SERVICES ===== */
        .services { background: var(--light); }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .service-card {
            background: var(--white);
            padding: 48px 34px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
            height: 100%;
            flex-direction: column;
            box-shadow: var(--shadow);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transition: transform 0.5s ease;
            transform-origin: left;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold);
        }
        
        .service-card:hover::before { transform: scaleX(1); }
        
        .service-emoji {
            font-size: 70px;
            margin-bottom: 26px;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-emoji {
            transform: scale(1.14) rotate(-3deg);
        }
        
        .service-card h3 {
            font-size: 23.5px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 19px;
            line-height: 1.35;
            letter-spacing: -0.5px;
        }
        
        .service-card p {
            color: #555;
            font-size: 14.8px;
            line-height: 1.85;
            margin-bottom: 26px;
            flex-grow: 1;
            text-align: left;
            font-weight: 400;
        }
        
        .read-more {
            color: var(--gold);
            text-decoration: none;
            font-weight: 700;
            font-size: 15.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.4s ease;
            margin-top: auto;
            position: relative;
        }
        
        .read-more::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2.5px;
            background: var(--gold);
            transition: width 0.35s ease;
        }
        
        .read-more:hover {
            gap: 16px;
            color: var(--dark);
        }
        
        .read-more:hover::after { width: 100%; }
        .read-more i { transition: transform 0.4s ease; }
        .read-more:hover i { transform: translateX(6px); }
        
        /* ===== BMI CALCULATOR ===== */
        .bmi-calculator {
            background: linear-gradient(135deg, rgba(44,44,44,0.97), rgba(44,44,44,0.93)),
                        url('https://images.pexels.com/photos/4342132/pexels-photo-4342132.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .bmi-calculator::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(44,44,44,0.95), rgba(44,44,44,0.9));
        }
        
        .bmi-calculator .section-title h2 { color: var(--white); }
        .bmi-calculator .section-title p { color: var(--light); }
        
        .bmi-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            padding: 56px 50px;
            border-radius: var(--radius-lg);
            backdrop-filter: blur(16px);
            border: 2px solid rgba(255,255,255,0.2);
            position: relative;
            z-index: 1;
        }
        
        .bmi-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 26px;
            margin-bottom: 34px;
        }
        
        .bmi-group { display: flex; flex-direction: column; gap: 11px; }
        .bmi-group.full { grid-column: 1 / -1; }
        
        .bmi-group label {
            font-weight: 600;
            font-size: 15.5px;
            color: var(--light);
            display: flex;
            align-items: center;
            gap: 9px;
        }
        
        .bmi-group label i { color: var(--gold); }
        
        .bmi-group input, .bmi-group select {
            padding: 18px 22px;
            border: 2.5px solid rgba(255,255,255,0.25);
            border-radius: 16px;
            font-family: inherit;
            font-size: 16.5px;
            background: rgba(255,255,255,0.14);
            color: var(--white);
            transition: var(--transition);
        }
        
        .bmi-group input::placeholder { color: var(--light); opacity: 0.8; }
        
        .bmi-group input:focus, .bmi-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.2);
            box-shadow: 0 0 0 5px rgba(212,175,55,0.18);
        }
        
        .bmi-group select option {
            background: var(--dark);
            color: var(--white);
        }
        
        .calculate-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--dark);
            padding: 20px 52px;
            border: none;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
            box-shadow: 0 8px 28px rgba(212,175,55,0.4);
        }
        
        .calculate-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 42px rgba(212,175,55,0.55);
        }
        
        .bmi-result {
            text-align: center;
            padding: 32px;
            background: rgba(255,255,255,0.14);
            border-radius: 20px;
            margin-top: 26px;
            display: none;
        }
        
        .bmi-result.show {
            display: block;
            animation: fadeInUp 0.6s ease;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .bmi-value {
            font-size: 56px;
            font-weight: 800;
            color: var(--gold);
            margin: 14px 0;
            line-height: 1;
        }
        
        .bmi-category {
            font-size: 22px;
            font-weight: 700;
            margin: 10px 0 18px;
            padding: 10px 24px;
            border-radius: 50px;
            display: inline-block;
        }
        
        .bmi-category.underweight { background: rgba(59,130,246,0.22); color: #60a5fa; }
        .bmi-category.normal { background: rgba(16,185,129,0.22); color: #34d399; }
        .bmi-category.overweight { background: rgba(245,158,11,0.22); color: #fbbf24; }
        .bmi-category.obese { background: rgba(239,68,68,0.22); color: #f87171; }
        
        .bmi-tip {
            font-size: 14.5px;
            color: var(--light);
            opacity: 0.94;
            line-height: 1.7;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1.5px solid rgba(255,255,255,0.18);
        }
        
        /* ===== BOOKING FORM ===== */
        .booking { background: var(--white); }
        
        .booking-form {
            max-width: 900px;
            margin: 0 auto;
            background: var(--light);
            padding: 58px 52px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 2.5px solid rgba(212,175,55,0.18);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 26px;
        }
        
        .form-group { margin-bottom: 8px; }
        .form-group.full { grid-column: 1 / -1; }
        
        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 15.5px;
            color: var(--dark);
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 18px 22px;
            border: 3px solid #d4d4d4;
            border-radius: 16px;
            font-family: inherit;
            font-size: 16.5px;
            background: var(--white);
            color: var(--dark);
            transition: var(--transition);
        }
        
        .form-group input::placeholder, .form-group textarea::placeholder { color: #888; }
        
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 5px rgba(212,175,55,0.14);
        }
        
        .form-group select option { background: var(--white); color: var(--dark); }
        .form-group textarea { resize: vertical; min-height: 145px; }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--dark);
            padding: 20px 62px;
            border: none;
            border-radius: 16px;
            font-size: 18.5px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 13px;
            box-shadow: 0 8px 28px rgba(212,175,55,0.35);
            margin-top: 12px;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 45px rgba(212,175,55,0.5);
        }
        
        /* ===== SERVICE PLANS ===== */
        .plans { background: var(--light); }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
            max-width: 1180px;
            margin: 0 auto;
        }
        
        .plan-card {
            background: var(--white);
            padding: 52px 38px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 4px solid transparent;
        }
        
        .plan-card.featured {
            transform: scale(1.08);
            border-color: var(--gold);
            background: linear-gradient(145deg, var(--white), #fafafa);
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }
        
        .plan-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -18px; left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--dark);
            padding: 8px 28px;
            border-radius: 28px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1px;
            box-shadow: 0 6px 22px rgba(212,175,55,0.4);
            z-index: 3;
        }
        
        .plan-card:hover {
            transform: translateY(-12px);
            border-color: var(--gold);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.08) translateY(-12px);
        }
        
        .plan-name {
            font-size: 26px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        
        .plan-price {
            font-size: 58px;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 28px;
            line-height: 1;
            letter-spacing: -2.5px;
        }
        
        .plan-price span {
            font-size: 18.5px;
            color: #666;
            font-weight: 500;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 38px;
            text-align: left;
        }
        
        .plan-features li {
            padding: 14px 0;
            border-bottom: 1.5px solid rgba(44,44,44,0.09);
            color: #555;
            font-size: 15.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 400;
        }
        
        .plan-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 800;
            font-size: 17.5px;
            background: rgba(212,175,55,0.18);
            width: 26px; height: 26px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        
        .plan-features li:last-child { border-bottom: none; }
        
        /* ===== REVIEWS ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }
        
        .review-card {
            background: var(--white);
            padding: 40px 36px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .review-card::before {
            content: '"';
            font-size: 100px;
            color: var(--gold);
            opacity: 0.16;
            position: absolute;
            top: 20px; left: 28px;
            font-family: Georgia, serif;
            line-height: 1;
            font-weight: 300;
        }
        
        .review-text {
            color: #555;
            font-style: italic;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            line-height: 1.82;
            font-size: 16px;
            font-weight: 400;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            gap: 19px;
        }
        
        .reviewer-avatar {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            display: flex; align-items: center; justify-content: center;
            color: var(--dark);
            font-weight: 800;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 6px 22px rgba(212,175,55,0.3);
        }
        
        .reviewer-info h4 {
            color: var(--dark);
            font-size: 18.5px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.4px;
        }
        
        .reviewer-info .location {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 400;
        }
        
        .reviewer-info .stars {
            color: #f59e0b;
            font-size: 15px;
            letter-spacing: 3px;
        }
        
        /* ===== FAQ ===== */
        .faq { background: var(--white); }
        
        .faq-list { max-width: 900px; margin: 0 auto; }
        
        .faq-item {
            background: var(--light);
            margin-bottom: 20px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2.5px solid transparent;
        }
        
        .faq-item:hover { border-color: rgba(212,175,55,0.35); }
        
        .faq-question {
            padding: 26px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--dark);
            font-size: 18px;
            transition: background 0.35s ease;
            letter-spacing: -0.4px;
        }
        
        .faq-question:hover { background: rgba(212,175,55,0.1); }
        
        .faq-question i {
            transition: transform 0.45s ease;
            color: var(--gold);
            font-size: 18px;
            font-weight: 700;
        }
        
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        
        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            color: #555;
            font-size: 16px;
            line-height: 1.85;
            font-weight: 400;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 32px 28px;
            max-height: 700px;
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark), #363636);
            color: var(--white);
            text-align: center;
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -45%; right: -18%;
            width: 680px; height: 680px;
            background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 74%);
            border-radius: 50%;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -28%; left: -10%;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(212,175,55,0.11) 0%, transparent 74%);
            border-radius: 50%;
        }
        
        .cta-section .container { position: relative; z-index: 1; }
        
        .cta-section h2 {
            font-size: 50px;
            font-weight: 800;
            margin-bottom: 26px;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .cta-section p {
            font-size: 22px;
            margin-bottom: 42px;
            opacity: 0.97;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        
        .cta-section .cta-btn {
            background: var(--gold);
            color: var(--dark) !important;
            font-size: 19.5px;
            padding: 18px 56px;
            border-color: var(--gold);
            box-shadow: 0 10px 32px rgba(212,175,55,0.45);
        }
        
        .cta-section .cta-btn:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
            transform: translateY(-5px);
            box-shadow: 0 20px 48px rgba(212,175,55,0.6);
        }
        
        /* ===== CONTACT ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.18fr;
            gap: 72px;
            align-items: start;
        }
        
        .contact-info h3 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 38px;
            letter-spacing: -0.6px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 26px;
            margin-bottom: 36px;
            padding-bottom: 28px;
            border-bottom: 2px solid var(--light);
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-icon {
            width: 64px; height: 64px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            color: var(--dark);
            font-size: 25px;
            flex-shrink: 0;
            box-shadow: 0 8px 28px rgba(212,175,55,0.35);
            font-weight: 700;
        }
        
        .contact-details h4 {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 18.5px;
            letter-spacing: -0.4px;
        }
        
        .contact-details p {
            color: #555;
            font-size: 16px;
            line-height: 1.72;
            font-weight: 400;
        }
        
        .contact-details a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.35s ease;
            font-weight: 600;
        }
        
        .contact-details a:hover {
            color: var(--dark);
            text-decoration: underline;
        }
        
        .contact-form {
            background: var(--white);
            padding: 52px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 3px solid rgba(212,175,55,0.14);
        }
        
        .contact-form .form-group { margin-bottom: 26px; }
        
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 18px 22px;
            border: 3px solid #d9d9d9;
            border-radius: 16px;
            font-family: inherit;
            font-size: 16.5px;
            transition: var(--transition);
            background: var(--white);
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 5px rgba(212,175,55,0.14);
        }
        
        .contact-form textarea { min-height: 155px; resize: vertical; }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 92px 20px 36px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 52px;
            margin-bottom: 64px;
        }
        
        .footer-col h4 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 32px;
            color: var(--white);
            position: relative;
            padding-bottom: 16px;
            letter-spacing: -0.5px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 48px; height: 4px;
            background: var(--gold);
            border-radius: 4px;
        }
        
        .footer-col p {
            color: #bbb;
            line-height: 1.9;
            margin-bottom: 26px;
            font-size: 15.5px;
            font-weight: 400;
        }
        
        .footer-col p:last-child { margin-bottom: 0; }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 18px; }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15.5px;
            font-weight: 400;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(6px);
        }
        
        .footer-links a i {
            font-size: 13px;
            opacity: 0.85;
            color: var(--gold);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .newsletter-form input {
            padding: 16px 22px;
            border: 3px solid rgba(255,255,255,0.2);
            border-radius: 14px;
            font-family: inherit;
            font-size: 15.5px;
            background: rgba(255,255,255,0.12);
            color: var(--white);
            transition: var(--transition);
        }
        
        .newsletter-form input::placeholder { color: #aaa; }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.16);
            box-shadow: 0 0 0 5px rgba(212,175,55,0.18);
        }
        
        .newsletter-form button {
            background: var(--gold);
            color: var(--dark);
            border: none;
            padding: 16px;
            border-radius: 14px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15.5px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 6px 22px rgba(212,175,55,0.3);
        }
        
        .newsletter-form button:hover {
            background: var(--gold-light);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(212,175,55,0.45);
        }
        
        .footer-bottom {
            border-top: 2px solid rgba(255,255,255,0.14);
            padding-top: 36px;
            text-align: center;
            color: #aaa;
            font-size: 14.5px;
            font-weight: 400;
        }
        
        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            margin: 0 16px;
            font-weight: 600;
            transition: color 0.35s ease;
        }
        
        .footer-bottom a:hover { color: var(--white); }
        .footer-bottom span { margin: 0 12px; opacity: 0.5; }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-container, .about-grid, .vm-grid, .contact-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 { font-size: 48px; }
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid, .services-grid, .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 540px;
            }
            .plan-card.featured { transform: scale(1); }
            .plan-card.featured:hover { transform: translateY(-12px); }
            .process-steps {
                flex-direction: column;
                gap: 58px;
            }
            .process-steps::before { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 850px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%; left: 0; right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 30px 36px;
                gap: 20px;
                box-shadow: var(--shadow-lg);
                border-radius: 0 0 22px 22px;
            }
            .nav-links.active { display: flex; }
            .mobile-menu { display: block; }
            .hero-content h1 { font-size: 42px; }
            .hero-content p { font-size: 19px; }
            .hero-badges { gap: 18px; }
            .hero-badge { padding: 11px 18px; }
            .section-title h2 { font-size: 38px; }
            .section-title p { font-size: 17.5px; }
            .bmi-form { grid-template-columns: 1fr; }
            .counter-grid, .features-grid, .services-grid, .reviews-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid { grid-template-columns: 1fr; }
            .booking-form { padding: 50px 40px; }
            .form-grid { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 540px) {
            .nav-container { padding: 0 22px; }
            .hero { padding: 115px 20px 95px; }
            .hero-container { gap: 48px; }
            .hero-content h1 { font-size: 36px; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .section-title h2 { font-size: 32px; }
            .section-title p { font-size: 16.5px; }
            section { padding: 80px 20px; }
            .about-content h3, .contact-info h3 { font-size: 32px; }
            .vm-card { padding: 46px 36px; }
            .feature-card, .service-card { padding: 40px 30px; }
            .step-number { width: 108px; height: 108px; font-size: 38px; }
            .cta-section h2 { font-size: 38px; }
            .cta-section p { font-size: 20px; }
            .contact-form { padding: 44px 32px; }
            .bmi-container { padding: 48px 36px; }
        }
