Votre service de valet à l'aéroport de Nice

Un service simple, rapide et sécurisé pour partir l'esprit léger. Réservez en ligne, remettez votre voiture au dépose-minute, récupérez-la à votre retour.

Réserver maintenant

Réservez votre voiturier

Code Auto-Dimensionné Webflow

🎯 CODE AUTO-DIMENSIONNÉ

Aucun réglage nécessaire !

✅ PROBLÈME RÉSOLU : Ce code se configure automatiquement en plein écran

📍 INSTRUCTIONS ULTRA-SIMPLES :

  1. Dans Webflow Designer → Ajoutez un élément "Code Embed"
  2. Copiez et collez le code ci-dessous (c'est tout !)
  3. Publiez votre site

❌ AUCUN réglage de Width/Height nécessaire - le code fait tout automatiquement !

⚠️ POURQUOI LES RÉGLAGES NE S'AFFICHENT PAS :
L'élément Code Embed de Webflow a des limitations d'interface. Ce code contourne le problème en se configurant automatiquement via CSS.

CODE AUTO-CONFIGURÉ :

<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> <style> /* Auto-configure l'élément embed pour occuper tout l'écran */ .w-embed { position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100vh !important; z-index: 999999 !important; margin: 0 !important; padding: 0 !important; } /* Cache tout le contenu Webflow existant */ body > *:not(.w-embed) { display: none !important; } .nvs-container { width: 100vw; height: 100vh; overflow-y: auto; overflow-x: hidden; font-family: 'Inter', sans-serif; color: #1a1a1a; line-height: 1.6; margin: 0; padding: 0; box-sizing: border-box; position: relative; } .nvs-container * { box-sizing: border-box; } .nvs-container .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0, 43, 96, 0.95); backdrop-filter: blur(10px); padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nvs-container .header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; position: relative; } .nvs-container .logo { flex: 1; text-align: center; font-size: 2.4rem; font-weight: 700; color: white; } .nvs-container .logo-text { background: linear-gradient(45deg, #0078ff, #00c851); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: glow 2s ease-in-out infinite alternate; } @keyframes glow { from { filter: drop-shadow(0 0 5px rgba(0, 120, 255, 0.5)); } to { filter: drop-shadow(0 0 15px rgba(0, 200, 81, 0.7)); } } .nvs-container .nav { position: absolute; right: 20px; } .nvs-container .contact-btn { background: linear-gradient(45deg, #0078ff, #00c851); color: white; padding: 12px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; min-height: 48px; transition: transform 0.3s ease; } .nvs-container .contact-btn:hover { transform: translateY(-2px); } .nvs-container .menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 10px; position: absolute; right: 20px; min-height: 48px; min-width: 48px; } .nvs-container .hero { min-height: 100vh; background: linear-gradient(135deg, rgba(0, 43, 96, 0.9), rgba(0, 120, 255, 0.8)), url('https://images.unsplash.com/photo-1618221197490-3ff133c552d8') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 120px 20px 80px; } .nvs-container .hero-content { max-width: 800px; } .nvs-container .hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 40px; line-height: 1.3; } .nvs-container .hero p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.95; } .nvs-container .cta-btn { background: linear-gradient(45deg, #0078ff, #00c851); color: white; padding: 16px 32px; border-radius: 50px; text-decoration: none; font-size: 1.1rem; font-weight: 600; display: inline-flex; align-items: center; min-height: 48px; transition: transform 0.3s ease; } .nvs-container .cta-btn:hover { transform: translateY(-3px); } .nvs-container .form-section { background: #f8fafb; padding: 80px 20px; } .nvs-container .container { max-width: 1200px; margin: 0 auto; } .nvs-container .section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; text-align: center; margin-bottom: 60px; background: linear-gradient(45deg, #002b60, #0078ff); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .nvs-container .form-container { max-width: 800px; margin: 0 auto; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); border-top: 4px solid #0078ff; } .nvs-container .form-iframe { width: 100%; height: 539px; border: none; } .nvs-container .final-contact { text-align: center; margin-top: 40px; padding: 30px; } .nvs-container .contact-info { font-size: 1.2rem; color: #002b60; font-weight: 600; margin-bottom: 12px; } .nvs-container .contact-link { color: #0078ff; text-decoration: none; } .nvs-container .contact-link:hover { color: #00c851; } .nvs-container .copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid #e5e7eb; color: #666; font-size: 0.9rem; } @media (max-width: 768px) { .nvs-container .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(0, 43, 96, 0.95); padding: 20px; text-align: center; } .nvs-container .nav.active { display: block; } .nvs-container .menu-toggle { display: block; } .nvs-container .logo { font-size: 2rem; } .nvs-container .hero { padding: 100px 20px 60px; } .nvs-container .hero h1 { margin-bottom: 30px; } .nvs-container .form-section { padding: 60px 20px; } } @media (max-width: 480px) { .nvs-container .logo { font-size: 1.8rem; } .nvs-container .hero { padding: 90px 15px 50px; } .nvs-container .hero h1 { font-size: 2rem; } .nvs-container .hero p { font-size: 1.1rem; } .nvs-container .cta-btn { padding: 14px 28px; font-size: 1rem; } .nvs-container .form-section { padding: 50px 15px; } .nvs-container .contact-info { font-size: 1.1rem; } } </style> <div class="nvs-container"> <header class="header"> <div class="header-container"> <div class="logo"> <span class="logo-text">Nice Valet Service</span> </div> <nav class="nav" id="nav"> <a href="tel:+33695749583" class="contact-btn">📞 06 95 74 95 83</a> </nav> <button class="menu-toggle" id="menu-toggle">☰</button> </div> </header> <section class="hero"> <div class="hero-content"> <h1>Votre service de valet à l'aéroport de Nice</h1> <p>Un service simple, rapide et sécurisé pour partir l'esprit léger. Réservez en ligne, remettez votre voiture au dépose-minute, récupérez-la à votre retour.</p> <a href="#reservation" class="cta-btn">Réserver maintenant</a> </div> </section> <section id="reservation" class="form-section"> <div class="container"> <h2 class="section-title">Réservez votre voiturier</h2> <div class="form-container"> <iframe id="JotFormIFrame-251844703576059" class="form-iframe" title="Formulaire de réservation voiturier aéroport Nice" src="https://form.jotform.com/251844703576059" allowtransparency="true" allow="geolocation; microphone; camera; fullscreen; payment" scrolling="no"> </iframe> </div> <div class="final-contact"> <div class="contact-info">📧 <a href="mailto:nicevaletservices@gmail.com" class="contact-link">nicevaletservices@gmail.com</a></div> <div class="contact-info">📞 <a href="tel:+33695749583" class="contact-link">06 95 74 95 83</a></div> <div class="copyright">&copy; 2025 Nice Valet Service. Tous droits réservés.</div> </div> </div> </section> </div> <script> document.getElementById('menu-toggle').addEventListener('click', function() { const nav = document.getElementById('nav'); nav.classList.toggle('active'); }); document.querySelectorAll('a[href^="#"]').forEach(function(link) { link.addEventListener('click', function(e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth' }); } }); }); window.addEventListener('scroll', function() { const header = document.querySelector('.nvs-container .header'); if (header) { if (window.scrollY > 50) { header.style.background = 'rgba(0, 43, 96, 0.98)'; } else { header.style.background = 'rgba(0, 43, 96, 0.95)'; } } }); </script> <script src="https://cdn.jotfor.ms/s/umd/latest/for-form-embed-handler.js"></script> <script> window.jotformEmbedHandler("iframe[id='JotFormIFrame-251844703576059']", "https://form.jotform.com/"); </script>
🎉 FINI : Aucun réglage à faire - Le code fait tout automatiquement !

🔧 COMMENT ÇA MARCHE :

  • Auto-configuration : Le CSS force l'élément Embed en plein écran
  • Cache Webflow : Masque automatiquement le contenu Webflow existant
  • Position fixed : L'élément occupe 100% de l'écran
  • Design parfait : Logo centré, téléphone à droite, formulaire intégré
  • Zero configuration : Aucun réglage manuel nécessaire
📱 RÉSULTAT GARANTI :
Votre site s'affichera en plein écran avec le design exact de votre code original, sans aucune configuration manuelle !
Nice Valet Service
06 95 74 95 83

Votre service de valet à l'aéroport de Nice

Un service simple, rapide et sécurisé pour partir l'esprit léger. Réservez en ligne, remettez votre voiture au dépose-minute, récupérez-la à votre retour.

Réserver maintenant

Pourquoi choisir Nice Valet Service ?

🚗

Simple et Rapide

Déposez votre voiture au dépose-minute, nous nous occupons du reste. Gain de temps garanti.

🔒

Sécurisé

Parking surveillé 24h/24, assurance tous risques incluse. Votre véhicule en toute sécurité.

💰

Tarif Compétitif

Tarifs transparents et avantageux. Pas de frais cachés, paiement sécurisé en ligne.

Nos Services

Service Standard

  • Prise en charge au dépose-minute
  • Parking sécurisé proche aéroport
  • Retour de véhicule à l'arrivée
  • Assurance tous risques incluse
  • Service disponible 24h/24

Service Premium

  • Tous les avantages du service standard
  • Nettoyage extérieur du véhicule
  • Vérification des niveaux
  • Parking couvert
  • Service conciergerie disponible

Réservez votre valet