
        :root {
            --blue: #1982C4;
            --purple: #6A4C93;
            --coral: #FF595E;
            --mint: #8AC926;
            --yellow: #FFCA3A;
            --dark: #0a0a0f;
            --light: #fafafa;
            --gray: #e5e5e5;
            
            --gradient-1: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
            --gradient-2: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
            --gradient-3: linear-gradient(135deg, var(--coral), var(--yellow));
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Outfit', sans-serif;
            line-height: 1.65;
            color: #1a1a1a;
            background: var(--light);
            overflow-x: hidden;
        }
        
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--coral);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: transform 0.15s ease, background 0.15s ease;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
        }
        
        .cursor.hover {
            transform: translate(-50%, -50%) scale(2);
            background: rgba(255, 89, 94, 0.15);
        }
        
        /* Typography */
        h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; }
        
        .mono { font-family: 'Space Mono', monospace; }
        
        .gradient-text {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .btn-primary {
            background: var(--coral);
            color: white;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 10px 20px 40px rgba(255, 89, 94, 0.35);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--dark);
            border-color: white;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 24px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            padding: 14px 48px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.2);
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            letter-spacing: -0.5px;
        }
        
        .logo span { color: var(--coral); }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }
        
        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover { color: var(--coral); }
        .nav-links a:hover::after { width: 100%; }
        
        .nav-cta {
            background: var(--coral) !important;
            color: white !important;
            padding: 12px 24px !important;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px) !important;
        }
        
        .nav-cta::after { display: none !important; }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10000;
        }
        
        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--dark);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 48px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content { position: relative; }
        
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255, 89, 94, 0.1);
            border: 1px solid rgba(255, 89, 94, 0.3);
            border-radius: 100px;
            color: var(--coral);
            font-family: 'Space Mono', monospace;
            font-size: 0.78rem;
            margin-bottom: 28px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero-title {
            font-size: clamp(2.6rem, 6vw, 5rem);
            color: white;
            line-height: 1.02;
            margin-bottom: 28px;
            letter-spacing: -2.5px;
        }
        
        .hero-title .line {
            display: block;
            overflow: hidden;
        }
        
        .hero-title span {
            display: inline-block;
            transform: translateY(110%);
            animation: slideUp 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
            animation-delay: 0.3s;
        }
        
        @keyframes slideUp {
            to { transform: translateY(0); }
        }
        
        .hero-desc {
            color: rgba(255,255,255,0.6);
            font-size: 1.08rem;
            line-height: 1.85;
            margin-bottom: 38px;
            max-width: 500px;
        }
        
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 55px;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .stat-item h3 {
            font-size: 2.4rem;
            color: var(--coral);
            font-family: 'Space Mono', monospace;
            line-height: 1;
        }
        
        .stat-item p {
            color: rgba(255,255,255,0.45);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
        }
        
        .hero-visual {
            position: relative;
        }
        
        .hero-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }
        
        .hero-image-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(255,89,94,0.3);
            border-radius: 24px;
            z-index: 2;
            pointer-events: none;
        }
        
        .hero-image-container img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            display: block;
        }
        
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            animation: float 4s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .floating-card.fc-1 {
            bottom: 40px;
            left: -40px;
            animation-delay: 0s;
        }
        
        .floating-card.fc-2 {
            top: 40px;
            right: -35px;
            animation-delay: 1.5s;
        }
        
        .fc-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        
        .fc-text h4 {
            font-size: 0.92rem;
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
        }
        
        .fc-text p {
            font-size: 0.78rem;
            color: var(--purple);
            font-weight: 600;
        }
        
        /* Background Grid Pattern */
        .bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 1;
        }
        
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            z-index: 1;
        }
        
        .glow-orb.go-1 {
            width: 500px;
            height: 500px;
            background: var(--blue);
            top: -150px;
            right: -100px;
        }
        
        .glow-orb.go-2 {
            width: 350px;
            height: 350px;
            background: var(--purple);
            bottom: -100px;
            left: -80px;
        }
        
        /* About Section */
        .about {
            padding: 130px 0;
            background: var(--light);
            position: relative;
        }
        
        .about-wrapper {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            align-items: center;
        }
        
        .about-img-box {
            position: relative;
        }
        
        .about-img-box img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 20px;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
        }
        
        .about-badge {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: var(--gradient-2);
            padding: 28px 34px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(106, 76, 147, 0.3);
        }
        
        .about-badge h3 {
            font-size: 2.8rem;
            color: white;
            line-height: 1;
        }
        
        .about-badge p {
            color: rgba(255,255,255,0.88);
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 4px;
        }
        
        .about-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.78rem;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 14px;
            align-items: center;
            gap: 8px;
        }
        
        .about-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 22px;
            color: var(--dark);
        }
        
        .about-content > p {
            color: #555;
            font-size: 1rem;
            line-height: 1.88;
            margin-bottom: 18px;
        }
        
        .about-feats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 28px;
        }
        
        .about-feat {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 14px;
            background: white;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.88rem;
            border-left: 3px solid var(--coral);
            transition: transform 0.3s ease;
        }
        
        .about-feat:hover { transform: translateX(6px); }
        .about-feat i { color: var(--coral); }
        
        /* Counter Section */
        .counter-section {
            padding: 90px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 59px,
                rgba(255,255,255,0.02) 59px,
                rgba(255,255,255,0.02) 60px
            );
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 2;
        }
        
        .counter-item {
            text-align: center;
            padding: 50px 24px;
            border-right: 1px solid rgba(255,255,255,0.08);
            position: relative;
        }
        
        .counter-item:last-child { border-right: none; }
        
        .counter-icon {
            font-size: 2.8rem;
            margin-bottom: 18px;
            display: block;
        }
        
        .counter-num {
            font-size: 3.6rem;
            font-weight: 900;
            color: white;
            font-family: 'Space Mono', monospace;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .counter-num span { color: var(--coral); }
        
        .counter-label {
            color: rgba(255,255,255,0.45);
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }
        
        /* Vision Mission */
        .vm-section {
            padding: 125px 0;
            background: white;
        }
        
        .vm-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .vm-card {
            background: var(--light);
            border-radius: 24px;
            padding: 48px 38px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--gradient-1);
        }
        
        .vm-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 25px 65px rgba(25, 130, 196, 0.12);
        }
        
        .vm-icon {
            width: 82px;
            height: 82px;
            background: var(--gradient-2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            margin-bottom: 24px;
        }
        
        .vm-card h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
            color: var(--dark);
        }
        
        .vm-card p {
            color: #666;
            font-size: 0.97rem;
            line-height: 1.84;
        }
        
        /* Features Section */
        .features-section {
            padding: 125px 0;
            background: var(--light);
        }
        
        .features-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .feat-card {
            background: white;
            border-radius: 22px;
            padding: 38px 28px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid transparent;
        }
        
        .feat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: var(--gradient-2);
            border-radius: 4px 4px 0 0;
            transition: width 0.4s ease;
        }
        
        .feat-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 22px 58px rgba(106, 76, 147, 0.12);
        }
        
        .feat-card:hover::after { width: 80%; }
        
        .feat-emoji {
            width: 95px;
            height: 95px;
            background: linear-gradient(135deg, rgba(25, 130, 196, 0.1), rgba(106, 76, 147, 0.08));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.6rem;
            margin: 0 auto 22px;
            transition: all 0.5s ease;
        }
        
        .feat-card:hover .feat-emoji {
            background: var(--gradient-2);
            transform: scale(1.1) rotateY(360deg);
        }
        
        .feat-card h4 {
            font-size: 1.22rem;
            margin-bottom: 13px;
            color: var(--dark);
        }
        
        .feat-card p {
            color: #666;
            font-size: 0.93rem;
            line-height: 1.78;
        }
        
        /* Process Section */
        .process-section {
            padding: 125px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .process-header {
            text-align: center;
            margin-bottom: 80px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .process-header p { color: rgba(255,255,255,0.55); }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
        }
        
        .process-line {
            position: absolute;
            top: 62px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--blue), var(--purple), var(--coral));
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .step-num {
            width: 124px;
            height: 124px;
            background: var(--dark);
            border: 3px solid var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--blue);
            font-family: 'Space Mono', monospace;
            transition: all 0.4s ease;
        }
        
        .step:hover .step-num {
            background: var(--gradient-2);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
            box-shadow: 0 0 50px rgba(255, 89, 94, 0.4);
        }
        
        .step h4 {
            color: white;
            font-size: 1.15rem;
            margin-bottom: 11px;
        }
        
        .step p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        /* Services Section */
        .services-section {
            padding: 125px 0;
            background: white;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .svc-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .svc-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(25, 130, 196, 0.14);
        }
        
        .svc-img {
            height: 195px;
            overflow: hidden;
            position: relative;
        }
        
        .svc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .svc-card:hover .svc-img img { transform: scale(1.12); }
        
        .svc-emoji {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 52px;
            height: 52px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.55rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        
        .svc-body {
            padding: 22px 18px;
        }
        
        .svc-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 11px;
            color: var(--dark);
        }
        
        .svc-body p {
            color: #666;
            font-size: 0.89rem;
            line-height: 1.78;
            margin-bottom: 16px;
        }
        
        .svc-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.88rem;
            font-family: 'Space Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .svc-link:hover { gap: 14px; color: var(--coral); }
        
        /* BMI Calculator */
        .bmi-section {
            padding: 125px 0;
            background: var(--light);
            position: relative;
        }
        
        .bmi-wrapper {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .bmi-header {
            text-align: center;
            margin-bottom: 55px;
        }
        
        .bmi-container {
            background: white;
            border-radius: 28px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(25, 130, 196, 0.1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        
        .bmi-info h3 {
            font-size: 1.85rem;
            color: var(--dark);
            margin-bottom: 16px;
        }
        
        .bmi-info > p {
            color: #666;
            font-size: 0.98rem;
            line-height: 1.8;
            margin-bottom: 26px;
        }
        
        .bmi-cats {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }
        
        .bmi-cat {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--light);
            border-radius: 11px;
        }
        
        .bmi-dot {
            width: 14px;
            height: 14px;
            border-radius: 4px;
        }
        
        .bmi-cat span {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }
        
        .bmi-form {
            background: var(--light);
            border-radius: 22px;
            padding: 36px;
        }
        
        .bmi-form h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 24px;
        }
        
        .bmi-field {
            margin-bottom: 16px;
        }
        
        .bmi-field label {
            display: block;
            margin-bottom: 7px;
            color: #444;
            font-weight: 600;
            font-size: 0.87rem;
        }
        
        .bmi-field input,
        .bmi-field select {
            width: 100%;
            padding: 14px 17px;
            border: 2px solid #e0e0e0;
            border-radius: 11px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.96rem;
            outline: none;
            transition: all 0.3s ease;
            background: white;
        }
        
        .bmi-field input:focus,
        .bmi-field select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(25, 130, 196, 0.1);
        }
        
        .bmi-btn {
            width: 100%;
            padding: 15px;
            background: var(--gradient-2);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.35s ease;
            margin-top: 8px;
        }
        
        .bmi-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(106, 76, 147, 0.35);
        }
        
        .bmi-result {
            margin-top: 20px;
            padding: 22px;
            background: var(--gradient-1);
            border-radius: 14px;
            text-align: center;
            display: none;
        }
        
        .bmi-result.show {
            display: block;
            animation: fadeUp 0.4s ease;
        }
        
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .bmi-result-val {
            font-size: 2.7rem;
            font-weight: 900;
            color: white;
            font-family: 'Space Mono', monospace;
        }
        
        .bmi-result-lbl {
            color: rgba(255,255,255,0.92);
            font-size: 1.05rem;
            font-weight: 600;
            margin-top: 5px;
        }
        
        /* Booking Section */
        .booking-section {
            padding: 125px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .booking-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://images.pexels.com/photos/1092703/pexels-photo-1092703.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            opacity: 0.04;
        }
        
        .booking-wrap {
            max-width: 1040px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 2;
        }
        
        .booking-header {
            text-align: center;
            margin-bottom: 55px;
        }
        
        .booking-header p { color: rgba(255,255,255,0.55); }
        
        .booking-form-container {
            background: white;
            border-radius: 28px;
            padding: 52px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }
        
        .form-group.full { grid-column: 1 / -1; }
        
        .form-group label {
            display: block;
            margin-bottom: 7px;
            color: #333;
            font-weight: 600;
            font-size: 0.87rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 17px;
            border: 2px solid #e8e8e8;
            border-radius: 11px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(25, 130, 196, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 115px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 17px;
            background: var(--coral);
            color: white;
            border: none;
            border-radius: 100px;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.92rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.35s ease;
            margin-top: 8px;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(255, 89, 94, 0.4);
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 125px 0;
            background: white;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 48px;
            align-items: stretch;
        }
        
        .price-card {
            background: white;
            border: 2px solid #eee;
            border-radius: 24px;
            padding: 42px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .price-card.popular {
            border-color: var(--purple);
            transform: scale(1.05);
            box-shadow: 0 22px 60px rgba(106, 76, 147, 0.18);
        }
        
        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 18px;
            right: -32px;
            background: var(--gradient-2);
            color: white;
            padding: 7px 50px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            transform: rotate(45deg);
            font-family: 'Space Mono', monospace;
        }
        
        .price-card:hover:not(.popular) {
            transform: translateY(-10px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.08);
        }
        
        .price-icon { font-size: 3.2rem; margin-bottom: 18px; display: block; }
        
        .price-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .price-amt {
            font-size: 2.9rem;
            font-weight: 900;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Space Mono', monospace;
            margin-bottom: 6px;
        }
        
        .price-amt span {
            font-size: 1rem;
            color: #888;
            -webkit-text-fill-color: #888;
            font-weight: 400;
        }
        
        .price-desc { color: #888; font-size: 0.9rem; margin-bottom: 24px; }
        
        .price-list {
            list-style: none;
            text-align: left;
            margin-bottom: 28px;
        }
        
        .price-list li {
            padding: 11px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #555;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .price-list li:last-child { border-bottom: none; }
        .price-list li i { color: var(--coral); font-size: 0.82rem; width: 18px; }
        
        .price-btn {
            width: 100%;
            padding: 15px;
            background: var(--gradient-2);
            color: white;
            border: none;
            border-radius: 100px;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.86rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s ease;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }
        
        .price-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(106, 76, 147, 0.35);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 125px 0;
            background: var(--light);
        }
        
        .reviews-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .review-card {
            background: white;
            border-radius: 20px;
            padding: 34px 28px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
            position: relative;
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 18px;
            right: 22px;
            font-size: 4rem;
            color: var(--blue);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-card:hover {
            border-color: var(--blue);
            box-shadow: 0 16px 48px rgba(25, 130, 196, 0.1);
            transform: translateY(-6px);
        }
        
        .review-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }
        
        .review-stars i { color: #FFB800; font-size: 1rem; }
        
        .review-text {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 22px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 13px;
            padding-top: 18px;
            border-top: 1px solid #f0f0f0;
        }
        
        .review-avatar {
            width: 48px;
            height: 48px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
        }
        
        .review-name {
            color: var(--dark);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2px;
        }
        
        .review-loc { color: #888; font-size: 0.85rem; }
        
        /* FAQ Section */
        .faq-section {
            padding: 125px 0;
            background: white;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .faq-list {
            max-width: 880px;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .faq-item {
            background: var(--light);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 2px solid transparent;
        }
        
        .faq-item.active {
            border-color: var(--purple);
            box-shadow: 0 8px 35px rgba(106, 76, 147, 0.12);
        }
        
        .faq-q {
            padding: 22px 26px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .faq-q h4 {
            color: var(--dark);
            font-size: 1rem;
            font-weight: 600;
            padding-right: 16px;
        }
        
        .faq-toggle {
            width: 40px;
            height: 40px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: transform 0.35s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-toggle { transform: rotate(180deg); }
        
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-a-inner {
            padding: 0 26px 22px;
            color: #666;
            font-size: 0.93rem;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-a { max-height: 320px; }
        
        /* CTA Section */
        .cta-section {
            padding: 110px 0;
            background: var(--gradient-2);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 70%;
            height: 220%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 65%);
            transform: rotate(-12deg);
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 750px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .cta-content h2 {
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            color: white;
            margin-bottom: 18px;
        }
        
        .cta-content p {
            color: rgba(255,255,255,0.88);
            font-size: 1.1rem;
            margin-bottom: 36px;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 19px 46px;
            background: var(--dark);
            color: white;
            text-decoration: none;
            border-radius: 100px;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.92rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.35s ease;
            box-shadow: 0 14px 40px rgba(0,0,0,0.2);
            clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
        }
        
        .cta-btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 20px 55px rgba(0,0,0,0.3);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 125px 0;
            background: var(--light);
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 48px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 42px;
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .contact-item {
            background: white;
            padding: 24px 22px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all 0.35s ease;
            border-left: 4px solid transparent;
        }
        
        .contact-item:hover {
            border-left-color: var(--coral);
            transform: translateX(8px);
            box-shadow: 0 10px 35px rgba(25, 130, 196, 0.1);
        }
        
        .contact-icon {
            width: 58px;
            height: 58px;
            background: var(--gradient-2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            color: var(--dark);
            font-size: 1rem;
            margin-bottom: 4px;
        }
        
        .contact-text p,
        .contact-text a {
            color: #666;
            text-decoration: none;
            font-size: 0.91rem;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover { color: var(--purple); }
        
        .contact-form-box {
            background: white;
            padding: 42px 36px;
            border-radius: 24px;
            box-shadow: 0 14px 45px rgba(0,0,0,0.06);
        }
        
        .contact-form-box h3 {
            font-size: 1.65rem;
            color: var(--dark);
            margin-bottom: 26px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            padding: 82px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
            gap: 42px;
            max-width: 1420px;
            margin: 0 auto;
            padding: 0 48px 64px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        
        .footer-col h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 42px;
            height: 3px;
            background: var(--gradient-2);
            border-radius: 2px;
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.55);
            line-height: 1.78;
            margin-bottom: 22px;
            font-size: 0.9rem;
        }
        
        .footer-social {
            display: flex;
            gap: 10px;
        }
        
        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .footer-social a:hover {
            background: var(--coral);
            transform: translateY(-4px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 11px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 0.89rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--coral);
            padding-left: 6px;
        }
        
        .footer-links a i {
            color: var(--blue);
            font-size: 0.68rem;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }
        
        .newsletter-input {
            padding: 14px 17px;
            border: 2px solid rgba(255,255,255,0.08);
            border-radius: 11px;
            background: rgba(255,255,255,0.04);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-input::placeholder { color: rgba(255,255,255,0.38); }
        
        .newsletter-input:focus {
            border-color: var(--blue);
            background: rgba(255,255,255,0.08);
        }
        
        .newsletter-btn {
            padding: 14px;
            background: var(--gradient-2);
            color: white;
            border: none;
            border-radius: 11px;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 0.88rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 89, 94, 0.35);
        }
        
        .footer-bottom {
            padding: 26px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            max-width: 1420px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .copyright { color: rgba(255,255,255,0.4); font-size: 0.87rem; }
        
        .footer-legal {
            display: flex;
            gap: 26px;
        }
        
        .footer-legal a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.87rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover { color: var(--coral); }
        
        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .price-card.popular { transform: scale(1); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); gap: 45px; }
            .process-line { display: none; }
            .bmi-container { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; gap: 50px; }
            .hero-visual { display: none; }
            .about-wrapper { grid-template-columns: 1fr; gap: 50px; }
            .vm-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .counter-item:nth-child(even) { border-right: none; }
            .counter-item:nth-child(1),
            .counter-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: rgba(10, 10, 15, 0.98);
                flex-direction: column;
                padding: 100px 35px;
                gap: 22px;
                transition: right 0.4s ease;
                z-index: 9998;
            }
            
            .nav-links.open { right: 0; }
            .menu-toggle { display: flex; }
            
            .navbar { padding: 20px 24px; }
            .navbar.scrolled { padding: 14px 24px; }
            .hero-grid { padding: 110px 24px 80px; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            
            .services-grid,
            .features-grid,
            .pricing-grid,
            .process-steps,
            .reviews-grid { grid-template-columns: 1fr; }
            
            .form-row { grid-template-columns: 1fr; }
            .booking-form-container { padding: 32px 24px; }
            .bmi-container { padding: 28px; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 34px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            
            .counter-grid { grid-template-columns: 1fr; }
            .counter-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
            .counter-item:last-child { border-bottom: none; }
            
            .about-feats { grid-template-columns: 1fr; }
            
            [class*="-wrapper"],
            [class*="-container"],
            [class*="-grid"],
            [class*="-section"],
            .vm-grid,
            .faq-list { padding: 0 24px !important; }
        }
        
        @media (max-width: 480px) {
            .hero-title { font-size: 2.3rem; }
            .hero-actions { flex-direction: column; }
            .about-badge { right: 12px; bottom: -18px; padding: 22px 28px; }
            .about-badge h3 { font-size: 2.2rem; }
        }
