<!DOCTYPE html>

<html lang="en" class="scroll-smooth">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>MVP Private Services | Luxury Alpine Concierge</title>

    <!-- Tailwind CSS CDN -->

    <script src="https://cdn.tailwindcss.com"></script>

    <!-- FontAwesome Icons -->

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

    <!-- Google Fonts: Playfair Display, Cinzel, Montserrat -->

    <link rel="preconnect" href="https://fonts.googleapis.com">

    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">


    <script>

        tailwind.config = {

            theme: {

                extend: {

                    colors: {

                        darkBg: '#0C0C0C',

                        darkCard: '#141414',

                        goldChampagne: '#D4AF37',

                        goldMuted: '#C5A059',

                        goldLight: '#F3E5AB',

                        goldDark: '#8A6D3B'

                    },

                    fontFamily: {

                        cinzel: ['Cinzel', 'serif'],

                        playfair: ['Playfair Display', 'serif'],

                        sans: ['Montserrat', 'sans-serif'],

                    }

                }

            }

        }

    </script>


    <style>

        body {

            background-color: #0C0C0C;

            color: #E5E5E5;

            font-family: 'Montserrat', sans-serif;

            overflow-x: hidden;

        }


        .text-gold-gradient {

            background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #A37C27 100%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

        }


        .bg-gold-metallic {

            background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #B38B32 100%);

            transition: all 0.4s ease;

        }

        .bg-gold-metallic:hover {

            background: linear-gradient(135deg, #E6C250 0%, #D4AF37 50%, #C5A059 100%);

            box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);

        }


        .glass-card {

            background: rgba(20, 20, 20, 0.75);

            backdrop-filter: blur(12px);

            -webkit-backdrop-filter: blur(12px);

            border: 1px solid rgba(212, 175, 55, 0.2);

            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

        }

        .glass-card:hover {

            border-color: rgba(212, 175, 55, 0.55);

            transform: translateY(-5px);

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);

        }


        input, select, textarea {

            background-color: rgba(12, 12, 12, 0.85) !important;

            border: 1px solid rgba(212, 175, 55, 0.2) !important;

            color: #F3E5AB !important;

        }

        input:focus, select:focus, textarea:focus {

            border-color: #D4AF37 !important;

            outline: none !important;

            box-shadow: 0 0 10px rgba(212, 175, 55, 0.25) !important;

        }


        ::-webkit-scrollbar { width: 6px; }

        ::-webkit-scrollbar-track { background: #0C0C0C; }

        ::-webkit-scrollbar-thumb { background: #262626; border-radius: 3px; }

        ::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

    </style>

</head>

<body class="antialiased selection:bg-goldMuted selection:text-black">


    <header id="main-header" class="fixed top-0 left-0 w-full z-50 transition-all duration-500 bg-black/70 backdrop-blur-md border-b border-goldChampagne/10">

        <div class="max-w-7xl mx-auto px-6 lg:px-12 h-24 flex items-center justify-between">

            <!-- Brand Logo -->

            <a href="#" class="flex flex-col items-start group">

                <span class="font-cinzel tracking-[0.3em] text-2xl font-bold text-gold-gradient group-hover:opacity-90 transition-opacity">

                    MVP

                </span>

                <span class="font-sans text-[8px] tracking-[0.4em] text-gray-400 font-light -mt-1 uppercase">

                    Private Services

                </span>

            </a>


            <!-- Navigation Links -->

            <nav class="hidden md:flex items-center space-x-10 text-xs tracking-[0.2em] font-light uppercase">

                <a href="#hero" class="hover:text-goldChampagne transition-colors duration-300">Home</a>

                <a href="#services" class="hover:text-goldChampagne transition-colors duration-300">Services</a>

                <a href="#philosophy" class="hover:text-goldChampagne transition-colors duration-300">Philosophy</a>

                <a href="#destinations" class="hover:text-goldChampagne transition-colors duration-300">Destinations</a>

                <a href="#contact" class="hover:text-goldChampagne transition-colors duration-300">Contact</a>

            </nav>


            <!-- Actions Right -->

            <div class="hidden md:flex items-center space-x-6">

                <a href="#contact" class="px-6 py-2.5 text-xs tracking-[0.2em] uppercase font-medium text-goldChampagne border border-goldChampagne/40 rounded-sm hover:bg-goldChampagne hover:text-black transition-all duration-500 shadow-sm hover:shadow-[0_0_15px_rgba(212,175,55,0.3)]">

                    Inquire Now

                </a>

            </div>


            <!-- Mobile Menu Toggle Button -->

            <button id="mobile-menu-btn" class="md:hidden text-goldChampagne text-2xl focus:outline-none">

                <i class="fa-solid fa-bars-staggered"></i>

            </button>

        </div>


        <!-- Mobile Drawer Menu -->

        <div id="mobile-menu" class="hidden md:hidden bg-darkBg/95 border-b border-goldChampagne/20 backdrop-blur-xl px-6 py-8 transition-all">

            <div class="flex flex-col space-y-6 text-sm tracking-[0.2em] font-light uppercase text-center">

                <a href="#hero" class="hover:text-goldChampagne" onclick="toggleMobileMenu()">Home</a>

                <a href="#services" class="hover:text-goldChampagne" onclick="toggleMobileMenu()">Services</a>

                <a href="#philosophy" class="hover:text-goldChampagne" onclick="toggleMobileMenu()">Philosophy</a>

                <a href="#destinations" class="hover:text-goldChampagne" onclick="toggleMobileMenu()">Destinations</a>

                <a href="#contact" class="hover:text-goldChampagne" onclick="toggleMobileMenu()">Contact</a>


                <a href="#contact" onclick="toggleMobileMenu()" class="mt-4 inline-block py-3 px-8 text-xs tracking-[0.2em] uppercase text-black bg-gold-metallic font-medium rounded-sm">

                    Inquire Now

                </a>

            </div>

        </div>

    </header>


    <section id="hero" class="relative min-h-screen flex items-center justify-center pt-24 overflow-hidden">

        <!-- Snowy Mountain Background Image -->

        <div class="absolute inset-0 z-0">

            <img src="https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=2000&auto=format&fit=crop" 

                 alt="Snowy Alpine Peaks" 

                 class="w-full h-full object-cover object-center scale-105 transform animate-pulse duration-[10000ms]">

            <!-- Subtle Dark Gradients for contrast -->

            <div class="absolute inset-0 bg-gradient-to-t from-darkBg via-darkBg/75 to-black/70"></div>

        </div>


        <!-- Content -->

        <div class="relative z-10 max-w-5xl mx-auto px-6 text-center mt-12">

            <!-- Crest Icon -->

            <div class="inline-block mb-6">

                <div class="w-14 h-14 rounded-full border border-goldChampagne/40 flex items-center justify-center mx-auto bg-black/50 backdrop-blur-md">

                    <i class="fa-solid fa-snowflake text-goldChampagne text-xl"></i>

                </div>

            </div>


            <h2 class="text-xs md:text-sm uppercase tracking-[0.5em] text-goldMuted font-light mb-4">

                French Alps & Switzerland

            </h2>


            <h1 class="text-3xl md:text-6xl lg:text-7xl font-cinzel font-normal text-gold-gradient tracking-wide leading-tight mb-8">

                Bespoke Alpine Concierge & Private Luxury Services

            </h1>


            <p class="max-w-2xl mx-auto text-sm md:text-lg font-light text-gray-300 leading-relaxed mb-12">

                MVP Private Services curates extraordinary winter stays across the most exclusive chalets and resorts in the Alps.

            </p>


            <div class="flex flex-col sm:flex-row items-center justify-center gap-6">

                <a href="#contact" class="w-full sm:w-auto px-8 py-4 bg-gold-metallic text-black font-semibold text-xs uppercase tracking-[0.2em] rounded-sm hover:shadow-[0_0_25px_rgba(212,175,55,0.4)] transition-all duration-300">

                    Request Private Concierge

                </a>

                <a href="#services" class="w-full sm:w-auto px-8 py-4 border border-goldChampagne/40 text-goldChampagne hover:bg-goldChampagne/10 font-medium text-xs uppercase tracking-[0.2em] rounded-sm transition-all duration-300 backdrop-blur-sm">

                    Explore Services

                </a>

            </div>

        </div>


        <!-- Scroll Indicator -->

        <a href="#services" class="absolute bottom-10 left-1/2 transform -translate-x-1/2 text-goldChampagne/60 hover:text-goldChampagne transition-colors flex flex-col items-center space-y-2">

            <span class="text-[10px] uppercase tracking-[0.3em] font-light">Explore</span>

            <i class="fa-solid fa-chevron-down text-xs animate-bounce"></i>

        </a>

    </section>


    <section id="services" class="py-32 px-6 lg:px-12 relative bg-darkBg">

        <div class="max-w-7xl mx-auto relative z-10">

            <div class="text-center max-w-3xl mx-auto mb-20">

                <span class="text-xs uppercase tracking-[0.4em] text-goldMuted font-light">Excellence & Discretion</span>

                <h2 class="text-2xl md:text-4xl font-cinzel text-gold-gradient mt-3 mb-6">Our Tailored Services</h2>

                <div class="w-16 h-[1px] bg-gradient-to-r from-transparent via-goldChampagne to-transparent mx-auto"></div>

            </div>


            <!-- Services Grid -->

            <div class="grid grid-cols-1 md:grid-cols-2 gap-8 lg:gap-12">

                <!-- Card 1 -->

                <div class="glass-card p-8 lg:p-12 rounded-sm group relative overflow-hidden">

                    <div class="flex items-center justify-between mb-8">

                        <div class="w-14 h-14 rounded-full bg-black/50 border border-goldChampagne/30 flex items-center justify-center text-goldChampagne text-2xl group-hover:scale-110 group-hover:border-goldChampagne transition-all duration-500">

                            <i class="fa-solid fa-plane-departure"></i>

                        </div>

                        <span class="font-cinzel text-xs tracking-widest text-gray-600 group-hover:text-goldChampagne/60 transition-colors">01</span>

                    </div>

                    <h3 class="text-xl font-cinzel text-goldChampagne mb-4">Aviation & VIP Aviation Transfers</h3>

                    <p class="text-gray-400 text-sm font-light leading-relaxed mb-6">

                        Seamless transport management from private jets to direct helicopter flights landing straight onto high-altitude alpine altiports. Armored 4x4 vehicles and executive security chauffeurs available 24/7.

                    </p>

                    <ul class="text-xs text-gray-400 space-y-2 font-light list-disc list-inside marker:text-goldChampagne">

                        <li>Private Helicopters & Charter Jets</li>

                        <li>Executive Security Chauffeurs 24/7</li>

                        <li>Luggage & Ski Logistics</li>

                    </ul>

                </div>


                <!-- Card 2 -->

                <div class="glass-card p-8 lg:p-12 rounded-sm group relative overflow-hidden">

                    <div class="flex items-center justify-between mb-8">

                        <div class="w-14 h-14 rounded-full bg-black/50 border border-goldChampagne/30 flex items-center justify-center text-goldChampagne text-2xl group-hover:scale-110 group-hover:border-goldChampagne transition-all duration-500">

                            <i class="fa-solid fa-house-chimney-window"></i>

                        </div>

                        <span class="font-cinzel text-xs tracking-widest text-gray-600 group-hover:text-goldChampagne/60 transition-colors">02</span>

                    </div>

                    <h3 class="text-xl font-cinzel text-goldChampagne mb-4">Chalet Management & Property Prep</h3>

                    <p class="text-gray-400 text-sm font-light leading-relaxed mb-6">

                        Complete peace of mind for luxury residences. Bespoke chalet setup prior to arrival, recruitment of butler staff, housekeepers, floral arrangements, and daily maintenance.

                    </p>

                    <ul class="text-xs text-gray-400 space-y-2 font-light list-disc list-inside marker:text-goldChampagne">

                        <li>Vetted Household Staff & Butlers</li>

                        <li>Full Chalet Prep & Provisioning</li>

                        <li>Daily Estate Operations</li>

                    </ul>

                </div>


                <!-- Card 3 -->

                <div class="glass-card p-8 lg:p-12 rounded-sm group relative overflow-hidden">

                    <div class="flex items-center justify-between mb-8">

                        <div class="w-14 h-14 rounded-full bg-black/50 border border-goldChampagne/30 flex items-center justify-center text-goldChampagne text-2xl group-hover:scale-110 group-hover:border-goldChampagne transition-all duration-500">

                            <i class="fa-solid fa-utensils"></i>

                        </div>

                        <span class="font-cinzel text-xs tracking-widest text-gray-600 group-hover:text-goldChampagne/60 transition-colors">03</span>

                    </div>

                    <h3 class="text-xl font-cinzel text-goldChampagne mb-4">Michelin Chefs & Fine Dining</h3>

                    <p class="text-gray-400 text-sm font-light leading-relaxed mb-6">

                        Private resident Michelin-starred chefs for intimate chalet dinners, personal sommeliers, and guaranteed priority table reservations at the most sought-after mountain venues.

                    </p>

                    <ul class="text-xs text-gray-400 space-y-2 font-light list-disc list-inside marker:text-goldChampagne">

                        <li>In-house Private Chefs</li>

                        <li>Guaranteed Michelin Table Access</li>

                        <li>Rare Wine & Champagne Curation</li>

                    </ul>

                </div>


                <!-- Card 4 -->

                <div class="glass-card p-8 lg:p-12 rounded-sm group relative overflow-hidden">

                    <div class="flex items-center justify-between mb-8">

                        <div class="w-14 h-14 rounded-full bg-black/50 border border-goldChampagne/30 flex items-center justify-center text-goldChampagne text-2xl group-hover:scale-110 group-hover:border-goldChampagne transition-all duration-500">

                            <i class="fa-solid fa-person-skiing"></i>

                        </div>

                        <span class="font-cinzel text-xs tracking-widest text-gray-600 group-hover:text-goldChampagne/60 transition-colors">04</span>

                    </div>

                    <h3 class="text-xl font-cinzel text-goldChampagne mb-4">Privileged Access & Ski Experiences</h3>

                    <p class="text-gray-400 text-sm font-light leading-relaxed mb-6">

                        Olympic-level private ski instructors, heliskiing over untouched Swiss powder peaks, VIP club tables, and customized lifestyle management.

                    </p>

                    <ul class="text-xs text-gray-400 space-y-2 font-light list-disc list-inside marker:text-goldChampagne">

                        <li>Private Ski Instructors & Mountain Guides</li>

                        <li>Heliskiing & Freeride Expeditions</li>

                        <li>VIP Passes & Private Galas</li>

                    </ul>

                </div>

            </div>

        </div>

    </section>


    <section id="philosophy" class="py-28 px-6 relative bg-gradient-to-b from-darkBg via-darkCard to-darkBg border-y border-goldChampagne/10">

        <div class="max-w-4xl mx-auto text-center relative z-10">

            <i class="fa-solid fa-quote-left text-3xl text-goldChampagne/40 mb-8"></i>

            

            <h2 class="text-2xl md:text-3xl font-playfair italic text-gray-200 leading-relaxed font-normal mb-10">

                “Our mission goes beyond satisfying expectations—we anticipate what makes an alpine stay truly unforgettable. Absolute discretion is our hallmark, perfection our standard.”

            </h2>


            <div class="inline-block">

                <span class="font-cinzel tracking-[0.3em] text-xs text-gold-gradient uppercase block font-semibold mb-1">

                    MVP Private Services

                </span>

                <span class="text-[10px] tracking-widest uppercase text-gray-500 font-light">

                    Courchevel • Zermatt • St. Moritz • Megève

                </span>

            </div>

        </div>

    </section>


    <section id="destinations" class="py-32 px-6 lg:px-12 bg-darkBg">

        <div class="max-w-7xl mx-auto">

            <div class="text-center max-w-3xl mx-auto mb-20">

                <span class="text-xs uppercase tracking-[0.4em] text-goldMuted font-light">Iconic Alpine Locations</span>

                <h2 class="text-2xl md:text-4xl font-cinzel text-gold-gradient mt-3 mb-6">Key Destinations</h2>

                <p class="text-gray-400 text-sm font-light">

                    Dedicated on-ground presence across elite resorts in France & Switzerland.

                </p>

            </div>


            <div class="grid grid-cols-2 md:grid-cols-3 gap-4 lg:gap-8">

                <!-- Dest 1 -->

                <div class="relative h-64 lg:h-80 rounded-sm overflow-hidden group border border-goldChampagne/20">

                    <img src="https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=800&auto=format&fit=crop" alt="Courchevel 1850" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-700">

                    <div class="absolute inset-0 bg-gradient-to-t from-black via-black/30 to-transparent"></div>

                    <div class="absolute bottom-6 left-6 right-6">

                        <span class="text-[10px] text-goldChampagne tracking-widest uppercase font-light">France</span>

                        <h3 class="text-lg font-cinzel text-white group-hover:text-goldChampagne transition-colors">Courchevel 1850</h3>

                    </div>

                </div>


                <!-- Dest 2 -->

                <div class="relative h-64 lg:h-80 rounded-sm overflow-hidden group border border-goldChampagne/20">

                    <img src="https://images.unsplash.com/photo-1530122037265-a5f1f91d3b99?q=80&w=800&auto=format&fit=crop" alt="Zermatt" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-700">

                    <div class="absolute inset-0 bg-gradient-to-t from-black via-black/30 to-transparent"></div>

                    <div class="absolute bottom-6 left-6 right-6">

                        <span class="text-[10px] text-goldChampagne tracking-widest uppercase font-light">Switzerland</span>

                        <h3 class="text-lg font-cinzel text-white group-hover:text-goldChampagne transition-colors">Zermatt</h3>

                    </div>

                </div>


                <!-- Dest 3 -->

                <div class="relative h-64 lg:h-80 rounded-sm overflow-hidden group border border-goldChampagne/20">

                    <img src="https://images.unsplash.com/photo-1548777123-e216912df7d8?q=80&w=800&auto=format&fit=crop" alt="Megève" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-700">

                    <div class="absolute inset-0 bg-gradient-to-t from-black via-black/30 to-transparent"></div>

                    <div class="absolute bottom-6 left-6 right-6">

                        <span class="text-[10px] text-goldChampagne tracking-widest uppercase font-light">France</span>

                        <h3 class="text-lg font-cinzel text-white group-hover:text-goldChampagne transition-colors">Megève</h3>

                    </div>

                </div>


                <!-- Dest 4 -->

                <div class="relative h-64 lg:h-80 rounded-sm overflow-hidden group border border-goldChampagne/20">

                    <img src="https://images.unsplash.com/photo-1502784444187-359ac186c5bb?q=80&w=800&auto=format&fit=crop" alt="St. Moritz" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-700">

                    <div class="absolute inset-0 bg-gradient-to-t from-black via-black/30 to-transparent"></div>

                    <div class="absolute bottom-6 left-6 right-6">

                        <span class="text-[10px] text-goldChampagne tracking-widest uppercase font-light">Switzerland</span>

                        <h3 class="text-lg font-cinzel text-white group-hover:text-goldChampagne transition-colors">St. Moritz</h3>

                    </div>

                </div>


                <!-- Dest 5 -->

                <div class="relative h-64 lg:h-80 rounded-sm overflow-hidden group border border-goldChampagne/20">

                    <img src="https://images.unsplash.com/photo-1518098268026-4e89f1a2cd8a?q=80&w=800&auto=format&fit=crop" alt="Verbier" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-700">

                    <div class="absolute inset-0 bg-gradient-to-t from-black via-black/30 to-transparent"></div>

                    <div class="absolute bottom-6 left-6 right-6">

                        <span class="text-[10px] text-goldChampagne tracking-widest uppercase font-light">Switzerland</span>

                        <h3 class="text-lg font-cinzel text-white group-hover:text-goldChampagne transition-colors">Verbier</h3>

                    </div>

                </div>


                <!-- Dest 6 -->

                <div class="relative h-64 lg:h-80 rounded-sm overflow-hidden group border border-goldChampagne/20">

                    <img src="https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?q=80&w=800&auto=format&fit=crop" alt="Gstaad" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-700">

                    <div class="absolute inset-0 bg-gradient-to-t from-black via-black/30 to-transparent"></div>

                    <div class="absolute bottom-6 left-6 right-6">

                        <span class="text-[10px] text-goldChampagne tracking-widest uppercase font-light">Switzerland</span>

                        <h3 class="text-lg font-cinzel text-white group-hover:text-goldChampagne transition-colors">Gstaad</h3>

                    </div>

                </div>

            </div>

        </div>

    </section>


    <section id="contact" class="py-32 px-6 lg:px-12 relative bg-darkCard border-t border-goldChampagne/10">

        <div class="max-w-5xl mx-auto">

            <div class="grid grid-cols-1 lg:grid-cols-12 gap-12 items-start">

                

                <!-- Left Info Box -->

                <div class="lg:col-span-5 space-y-8">

                    <div>

                        <span class="text-xs uppercase tracking-[0.4em] text-goldMuted font-light">Direct Line</span>

                        <h2 class="text-3xl font-cinzel text-gold-gradient mt-2 mb-6">Contact MVP</h2>

                        <p class="text-gray-400 text-sm font-light leading-relaxed">

                            Our private concierges treat every request with total confidentiality. Contact us directly through our official channels.

                        </p>

                    </div>


                    <div class="space-y-6 pt-6 border-t border-goldChampagne/10">

                        <!-- Primary Email -->

                        <div class="flex items-start space-x-4">

                            <div class="w-10 h-10 rounded-full border border-goldChampagne/30 flex items-center justify-center text-goldChampagne shrink-0">

                                <i class="fa-regular fa-envelope text-xs"></i>

                            </div>

                            <div class="flex-1">

                                <span class="text-[10px] uppercase tracking-widest text-gray-500 block">Official Email</span>

                                <div class="flex items-center space-x-2">

                                    <a href="mailto:mvp.privateservices@gmail.com" class="text-sm font-light text-gray-200 hover:text-goldChampagne transition-colors">mvp.privateservices@gmail.com</a>

                                    <button onclick="copyEmail('mvp.privateservices@gmail.com')" title="Copy Email" class="text-xs text-goldChampagne/60 hover:text-goldChampagne">

                                        <i class="fa-regular fa-copy"></i>

                                    </button>

                                </div>

                            </div>

                        </div>


                        <!-- Secondary Email -->

                        <div class="flex items-start space-x-4">

                            <div class="w-10 h-10 rounded-full border border-goldChampagne/30 flex items-center justify-center text-goldChampagne shrink-0">

                                <i class="fa-regular fa-envelope text-xs"></i>

                            </div>

                            <div class="flex-1">

                                <span class="text-[10px] uppercase tracking-widest text-gray-500 block">Alternative Email</span>

                                <div class="flex items-center space-x-2">

                                    <a href="mailto:mvplifecontact@gmail.com" class="text-sm font-light text-gray-200 hover:text-goldChampagne transition-colors">mvplifecontact@gmail.com</a>

                                    <button onclick="copyEmail('mvplifecontact@gmail.com')" title="Copy Email" class="text-xs text-goldChampagne/60 hover:text-goldChampagne">

                                        <i class="fa-regular fa-copy"></i>

                                    </button>

                                </div>

                            </div>

                        </div>


                        <!-- WhatsApp Direct -->

                        <div class="flex items-start space-x-4">

                            <div class="w-10 h-10 rounded-full border border-goldChampagne/30 flex items-center justify-center text-goldChampagne shrink-0">

                                <i class="fa-brands fa-whatsapp text-sm"></i>

                            </div>

                            <div>

                                <span class="text-[10px] uppercase tracking-widest text-gray-500 block">WhatsApp Desk</span>

                                <a href="https://wa.me/41790000000?text=Hello%20MVP,%20I%20would%20like%20to%20inquire%20about%20your%20services." target="_blank" class="text-sm font-light text-goldChampagne hover:underline">

                                    Start WhatsApp Chat

                                </a>

                            </div>

                        </div>

                    </div>

                </div>


                <!-- Right Form Box -->

                <div class="lg:col-span-7 glass-card p-8 lg:p-10 rounded-sm">

                    <form id="vip-form" onsubmit="handleFormSubmit(event)" class="space-y-6">

                        <div class="grid grid-cols-1 md:grid-cols-2 gap-6">

                            <div>

                                <label class="block text-[10px] uppercase tracking-[0.2em] text-goldChampagne mb-2">Full Name *</label>

                                <input type="text" required placeholder="Your Name" class="w-full px-4 py-3 text-xs rounded-sm focus:outline-none">

                            </div>

                            <div>

                                <label class="block text-[10px] uppercase tracking-[0.2em] text-goldChampagne mb-2">Phone / WhatsApp *</label>

                                <input type="tel" required placeholder="+41 ... or +33 ..." class="w-full px-4 py-3 text-xs rounded-sm focus:outline-none">

                            </div>

                        </div>


                        <div class="grid grid-cols-1 md:grid-cols-2 gap-6">

                            <div>

                                <label class="block text-[10px] uppercase tracking-[0.2em] text-goldChampagne mb-2">Destination</label>

                                <select class="w-full px-4 py-3 text-xs rounded-sm focus:outline-none">

                                    <option value="courchevel">Courchevel 1850</option>

                                    <option value="zermatt">Zermatt</option>

                                    <option value="megeve">Megève</option>

                                    <option value="stmoritz">St. Moritz</option>

                                    <option value="verbier">Verbier</option>

                                    <option value="gstaad">Gstaad</option>

                                    <option value="other">Other Resort</option>

                                </select>

                            </div>

                            <div>

                                <label class="block text-[10px] uppercase tracking-[0.2em] text-goldChampagne mb-2">Dates of Stay</label>

                                <input type="text" placeholder="e.g. Dec 20 - Dec 28" class="w-full px-4 py-3 text-xs rounded-sm focus:outline-none">

                            </div>

                        </div>


                        <div>

                            <label class="block text-[10px] uppercase tracking-[0.2em] text-goldChampagne mb-2">Specific Requirements</label>

                            <textarea rows="4" placeholder="Detail your preferences: transfers, private chef, ski guide, chalet requests..." class="w-full px-4 py-3 text-xs rounded-sm focus:outline-none resize-none"></textarea>

                        </div>


                        <button type="submit" class="w-full py-4 bg-gold-metallic text-black font-semibold text-xs uppercase tracking-[0.25em] rounded-sm hover:shadow-[0_0_20px_rgba(212,175,55,0.4)] transition-all duration-300">

                            Submit Request

                        </button>

                    </form>


                    <!-- Form Confirmation Box -->

                    <div id="form-success" class="hidden text-center py-8">

                        <i class="fa-solid fa-circle-check text-4xl text-goldChampagne mb-4"></i>

                        <h3 class="font-cinzel text-xl text-goldChampagne mb-2">Request Received</h3>

                        <p class="text-xs text-gray-300 font-light">Your private concierge will review your message and contact you promptly.</p>

                    </div>

                </div>


            </div>

        </div>

    </section>


    <footer class="py-12 px-6 lg:px-12 bg-black border-t border-goldChampagne/10 text-center md:text-left">

        <div class="max-w-7xl mx-auto flex flex-col md:flex-row items-center justify-between gap-8">

            <div>

                <a href="#" class="font-cinzel tracking-[0.2em] text-xl font-bold text-gold-gradient block">

                    MVP PRIVATE SERVICES

                </a>

                <span class="text-[10px] tracking-widest text-gray-500 uppercase font-light">

                    Excellence • Discretion • Alpine Lifestyle

                </span>

            </div>


            <div class="text-xs text-gray-400 font-light flex flex-col md:flex-row gap-4 items-center">

                <a href="mailto:mvp.privateservices@gmail.com" class="hover:text-goldChampagne transition-colors">mvp.privateservices@gmail.com</a>

                <span class="hidden md:inline text-gray-700">•</span>

                <a href="mailto:mvplifecontact@gmail.com" class="hover:text-goldChampagne transition-colors">mvplifecontact@gmail.com</a>

            </div>


            <div class="text-[10px] text-gray-600 tracking-widest uppercase font-light">

                © 2026 MVP PRIVATE SERVICES. All rights reserved.

            </div>

        </div>

    </footer>


    <!-- Floating WhatsApp Button -->

    <a href="https://wa.me/41790000000?text=Hello%20MVP,%20I%20would%20like%20private%20concierge%20assistance." 

       target="_blank" 

       class="fixed bottom-6 right-6 z-50 w-14 h-14 rounded-full bg-black/80 border border-goldChampagne/50 text-goldChampagne flex items-center justify-center text-2xl shadow-[0_0_20px_rgba(0,0,0,0.8)] hover:scale-110 hover:border-goldChampagne hover:bg-goldChampagne hover:text-black transition-all duration-300 group">

        <i class="fa-brands fa-whatsapp"></i>

        <span class="absolute right-16 top-1/2 -translate-y-1/2 bg-black/90 text-goldChampagne text-[10px] uppercase tracking-widest px-3 py-1.5 rounded border border-goldChampagne/30 whitespace-nowrap opacity-0 group-hover:opacity-100 transition-opacity duration-300 pointer-events-none">

            24/7 Desk

        </span>

    </a>


    <!-- Toast Notification -->

    <div id="toast" class="fixed top-6 right-6 z-50 hidden bg-black/90 border border-goldChampagne text-goldChampagne text-xs px-4 py-3 rounded shadow-lg backdrop-blur-md">

        Email copied to clipboard.

    </div>


    <script>

        function toggleMobileMenu() {

            const menu = document.getElementById('mobile-menu');

            menu.classList.toggle('hidden');

        }


        document.getElementById('mobile-menu-btn').addEventListener('click', toggleMobileMenu);


        window.addEventListener('scroll', () => {

            const header = document.getElementById('main-header');

            if (window.scrollY > 50) {

                header.classList.add('py-2', 'bg-black/90');

            } else {

                header.classList.remove('py-2', 'bg-black/90');

            }

        });


        function handleFormSubmit(event) {

            event.preventDefault();

            document.getElementById('vip-form').classList.add('hidden');

            document.getElementById('form-success').classList.remove('hidden');

        }


        function copyEmail(emailText) {

            const tempInput = document.createElement('input');

            tempInput.value = emailText;

            document.body.appendChild(tempInput);

            tempInput.select();

            document.execCommand('copy');

            document.body.removeChild(tempInput);


            const toast = document.getElementById('toast');

            toast.classList.remove('hidden');

            setTimeout(() => {

                toast.classList.add('hidden');

            }, 2500);

        }

    </script>

</body>

</html>