        /* ============================================
           STYLES EXACTS DE MANUS SPACE (tanobil-saas)
           ============================================ */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* TANOBIL Premium Orange Theme - Inspired by SIXT */
            --primary: #f26522; /* oklch(0.65 0.22 35) */
            --primary-foreground: #ffffff;
            --radius: 0.625rem; /* 10px */
            --background: #fafafa;
            --foreground: #18181b;
            --card: #ffffff;
            --card-foreground: #18181b;
            --border: #e4e4e7;
            --input: #e4e4e7;
            --ring: #f26522;
            --muted: #f4f4f5;
            --muted-foreground: #71717a;
            --accent: #f26522;
            --accent-foreground: #ffffff;
            --destructive: #ef4444;
            --destructive-foreground: #ffffff;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--background);
            min-height: 100vh;
            color: var(--foreground);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        @media (prefers-color-scheme: dark) {
            :root {
                --background: #09090b;
                --foreground: #fafafa;
                --card: #18181b;
                --card-foreground: #fafafa;
                --border: rgba(255, 255, 255, 0.1);
                --input: rgba(255, 255, 255, 0.15);
                --muted: #27272a;
                --muted-foreground: #a1a1aa;
            }
        }
        
        /* Header Styles - Identique à Manus Space */
        .header {
            background: rgba(24, 24, 27, 0.95); /* zinc-900/95 */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(39, 39, 42, 1); /* zinc-800 */
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            height: 64px; /* h-16 */
        }
        
        .header .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: #f26522;
            font-size: 1.5em;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #f26522;
        }
        
        /* ============================================
           BOUTONS - Styles exacts de Manus Space
           ============================================ */
        
        button, [type="button"], [type="submit"], [type="reset"],
        .btn, .btn-primary, .btn-secondary, .btn-outline, .btn-ghost,
        .btn-login, .btn-signup, .btn-search {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
            border-radius: var(--radius);
            font-size: 0.875rem; /* 14px */
            font-weight: 500;
            transition: all 0.2s ease;
            cursor: pointer;
            outline: none;
            border: none;
            text-decoration: none;
        }
        
        button:focus-visible, .btn:focus-visible {
            outline: 2px solid var(--ring);
            outline-offset: 2px;
        }
        
        button:disabled, .btn:disabled {
            pointer-events: none;
            opacity: 0.5;
        }
        
        /* Button Primary (default) - Identique à Manus Space */
        .btn-primary, .btn-login, .btn-search {
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 8px 16px;
            height: 36px; /* h-9 */
        }
        
        .btn-primary:hover, .btn-login:hover, .btn-search:hover {
            background: rgba(242, 101, 34, 0.9); /* primary/90 */
        }
        
        /* Button Outline - Identique à Manus Space */
        .btn-outline, .btn-signup {
            border: 1px solid var(--border);
            background: transparent;
            color: var(--foreground);
            padding: 8px 16px;
            height: 36px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        
        .btn-outline:hover, .btn-signup:hover {
            background: var(--accent);
            color: var(--accent-foreground);
        }
        
        @media (prefers-color-scheme: dark) {
            .btn-outline, .btn-signup {
                border-color: var(--input);
            }
            .btn-outline:hover, .btn-signup:hover {
                background: var(--input);
                opacity: 0.5;
            }
        }
        
        /* Button Ghost - Identique à Manus Space */
        .btn-ghost {
            background: transparent;
            color: var(--foreground);
            padding: 8px 16px;
            height: 36px;
        }
        
        .btn-ghost:hover {
            background: var(--accent);
            color: var(--accent-foreground);
        }
        
        @media (prefers-color-scheme: dark) {
            .btn-ghost:hover {
                background: var(--accent);
                opacity: 0.5;
            }
        }
        
        /* Button Sizes - Identique à Manus Space */
        .btn-sm {
            height: 32px; /* h-8 */
            padding: 6px 12px;
            font-size: 0.875rem;
            border-radius: 6px;
        }
        
        .btn-lg {
            height: 40px; /* h-10 */
            padding: 10px 24px;
            font-size: 1rem;
            border-radius: 6px;
        }
        
        /* Button Icon - Identique à Manus Space */
        .btn-icon {
            width: 36px;
            height: 36px;
            padding: 0;
        }
        
        .btn-icon-sm {
            width: 32px;
            height: 32px;
        }
        
        .btn-icon-lg {
            width: 40px;
            height: 40px;
        }
        
        /* Hero Section - Identique à Manus Space */
        .hero-section {
            position: relative;
            padding-top: 64px; /* Pour compenser le header fixe */
            min-height: 85vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        /* Background Vidéo Style Spotify */
        .hero-section .bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            object-fit: cover;
            background: #000;
        }
        
        /* Fallback SVG Pattern si vidéo ne charge pas */
        .hero-section .bg-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-image: url('/assets/background.jpg');
            z-index: 0;
        }
        
        /* Fallback SVG Pattern (optionnel) */
        .hero-section .bg-svg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-image: url('/assets/background-pattern.svg');
            z-index: 0;
            opacity: 0;
            transition: opacity 0.5s;
        }
        
        /* Afficher SVG si vidéo échoue */
        .hero-section.video-failed .bg-svg {
            opacity: 1;
        }
        
        .hero-section.video-failed .bg-video {
            display: none;
        }
        
        .hero-section .bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
            z-index: 1;
        }
        
        .hero-section .container {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 1rem;
            width: 100%;
        }
        
        /* Service Tabs - Identique à Manus Space */
        .service-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .service-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .service-tab.active {
            background: white;
            color: #18181b;
        }
        
        .service-tab:not(.active) {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .service-tab:not(.active):hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* Search Card - Identique à Manus Space */
        .search-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            max-width: 1280px;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-content h1 {
            font-size: 4em;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-content h2 {
            font-size: 2em;
            font-weight: 600;
            color: #f26522;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3em;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            animation: fadeInUp 1.2s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Service Selection Menu */
        .service-selection-menu {
            background: transparent;
            padding: 20px 30px;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .service-selection-btn {
            padding: 12px 24px;
            background: rgba(0,0,0,0.6);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1em;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .service-selection-btn:hover {
            background: rgba(242, 101, 34, 0.8);
            border-color: #f26522;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        
        .service-tab {
            transition: all 0.3s ease;
        }
        
        .service-tab:hover {
            transform: translateY(-2px);
        }
        
        .service-tab.active {
            background: white !important;
            color: #1a1a1a !important;
        }
        
        /* Search Form */
        .search-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 0.95em;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 12px 12px 45px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1em;
            background: white;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #f26522;
        }
        
        /* ============================================
           CHECKBOXES & RADIO - Styles exacts de Manus Space
           ============================================ */
        
        input[type="checkbox"], input[type="radio"], .checkbox-manus {
            width: 16px; /* size-4 */
            height: 16px;
            border: 1px solid var(--input);
            border-radius: 4px;
            background: transparent;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            transition: all 0.2s ease;
            outline: none;
            flex-shrink: 0;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-xs */
        }
        
        input[type="radio"], input[type="radio"].checkbox-manus {
            border-radius: 50%;
        }
        
        input[type="checkbox"]:checked, input[type="radio"]:checked, .checkbox-manus:checked {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--primary-foreground);
        }
        
        input[type="checkbox"]:checked::after, .checkbox-manus:checked::after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: 14px 14px;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        input[type="radio"]:checked::after {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
            margin: 3px auto;
        }
        
        input[type="checkbox"]:focus, input[type="radio"]:focus, .checkbox-manus:focus {
            box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1); /* focus-visible:ring-ring/50 ring-[3px] */
            border-color: var(--ring);
        }
        
        input[type="checkbox"]:disabled, input[type="radio"]:disabled, .checkbox-manus:disabled {
            cursor: not-allowed;
            opacity: 0.5;
            pointer-events: none;
        }
        
        @media (prefers-color-scheme: dark) {
            input[type="checkbox"], input[type="radio"], .checkbox-manus {
                background: rgba(255, 255, 255, 0.15); /* dark:bg-input/30 */
                border-color: var(--input);
            }
            input[type="checkbox"]:checked, input[type="radio"]:checked, .checkbox-manus:checked {
                background: var(--primary);
                border-color: var(--primary);
            }
        }
        
        /* Label pour checkbox/radio */
        label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 0.875rem;
            color: var(--foreground);
        }
        
        /* ============================================
           CARDS - Styles exacts de Manus Space
           ============================================ */
        
        .card {
            background: var(--card);
            color: var(--card-foreground);
            border-radius: 12px; /* rounded-xl */
            border: 1px solid var(--border);
            padding: 24px; /* py-6 */
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .card-header {
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
            align-items: start;
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .card-description {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }
        
        .card-content {
            padding: 0 24px;
        }
        
        .card-footer {
            padding: 0 24px;
            display: flex;
            align-items: center;
        }
        
        /* ============================================
           FORM GROUP - Styles exacts de Manus Space
           ============================================ */
        
        .form-group {
            margin-bottom: 16px;
        }
        
        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
            margin-bottom: 4px;
        }
        
        .form-group .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            color: var(--muted-foreground);
            z-index: 1;
            pointer-events: none;
        }
        
        /* ============================================
           NAVIGATION LINKS - Styles exacts de Manus Space
           ============================================ */
        
        .nav-link {
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 8px;
            text-decoration: none;
            color: rgba(212, 212, 216, 1); /* zinc-300 */
            transition: all 0.2s ease;
        }
        
        .nav-link:hover {
            color: white;
            background: rgba(39, 39, 42, 1); /* zinc-800 */
        }
        
        .nav-link.active {
            color: var(--primary);
            background: rgba(242, 101, 34, 0.1); /* primary/10 */
        }
        
        /* ============================================
           TYPOGRAPHIE - Styles exacts de Manus Space
           ============================================ */
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--foreground);
            letter-spacing: -0.025em; /* tracking-tight */
        }
        
        h1 {
            font-size: 2.25rem; /* text-4xl */
            font-weight: 800;
        }
        
        h2 {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 700;
        }
        
        h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 600;
        }
        
        p {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--foreground);
        }
        
        @media (min-width: 768px) {
            h1 {
                font-size: 3rem; /* md:text-5xl */
            }
            h2 {
                font-size: 2.25rem; /* md:text-4xl */
            }
        }
        
        @media (min-width: 1024px) {
            h1 {
                font-size: 3.75rem; /* lg:text-6xl */
            }
        }
        
        /* ============================================
           TRANSITIONS & ANIMATIONS - Identique à Manus Space
           ============================================ */
        
        * {
            transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        
        button, a, .btn, .nav-link, .service-tab {
            transition: all 0.2s ease;
        }
        
        button:hover, a:hover, .btn:hover, .nav-link:hover, .service-tab:hover {
            transform: translateY(-1px);
        }
        
        button:active, a:active, .btn:active {
            transform: translateY(0);
        }
        
        /* ============================================
           CONTAINER - Identique à Manus Space
           ============================================ */
        
        .container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem; /* 16px - mobile */
            padding-right: 1rem;
        }
        
        @media (min-width: 640px) {
            .container {
                padding-left: 1.5rem; /* 24px - tablet */
                padding-right: 1.5rem;
            }
        }
        
        @media (min-width: 1024px) {
            .container {
                padding-left: 2rem; /* 32px - desktop */
                padding-right: 2rem;
                max-width: 1280px; /* Standard content width */
            }
        }
        
        .search-actions {
            display: flex;
            gap: 10px;
            align-items: flex-end;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .search-actions .form-group {
            flex: 1;
            min-width: 200px;
            margin: 0;
        }
        
        .btn-search, .btn-ai {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-search {
            background: #f26522;
            color: white;
        }
        
        .btn-search:hover {
            background: #d85a1a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
        }
        
        .btn-ai {
            background: #17a2b8;
            color: white;
        }
        
        .btn-ai:hover {
            background: #138496;
            transform: translateY(-2px);
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 20px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .features-title {
            text-align: center;
            color: white;
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .features-subtitle {
            text-align: center;
            color: #f26522;
            font-size: 1.2em;
            margin-bottom: 50px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(242, 101, 34, 0.2);
        }
        
        .feature-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 60px 20px;
            text-align: center;
            background: rgba(242, 101, 34, 0.1);
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5em;
            color: white;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 1.2em;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            padding: 15px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s;
        }
        
        .cta-btn.primary {
            background: #f26522;
            color: white;
        }
        
        .cta-btn.primary:hover {
            background: #d85a1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
        }
        
        .cta-btn.secondary {
            background: white;
            color: #f26522;
            border: 2px solid #f26522;
        }
        
        .cta-btn.secondary:hover {
            background: #f26522;
            color: white;
        }
        
        /* Footer */
        .footer {
            background: #1a1a1a;
            padding: 40px 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer p {
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 12px 15px;
            }
            
            .logo {
                font-size: 1.2em;
            }
            
            .nav-links {
                gap: 10px;
            }
            
            .btn-login, .btn-signup {
                padding: 6px 15px;
                font-size: 0.9em;
            }
            
            .hero-content h1 {
                font-size: 2.5em;
            }
            
            .hero-content h2 {
                font-size: 1.5em;
            }
            
            .hero-content p {
                font-size: 1.1em;
            }
            
            .service-selection-menu {
                padding: 15px;
                gap: 10px;
            }
            
            .service-selection-btn {
                padding: 10px 18px;
                font-size: 0.9em;
            }
            
            /* Search Banner Mobile */
            .search-banner {
                padding: 20px 15px !important;
            }
            
            .search-banner-content {
                padding: 40px 15px 20px !important;
            }
            
            .search-banner-content h1 {
                font-size: 2em !important;
            }
            
            .search-banner-content h2 {
                font-size: 1.3em !important;
            }
            
            .search-banner-content p {
                font-size: 0.95em !important;
                line-height: 1.5 !important;
            }
            
            .search-form {
                padding: 20px 15px !important;
            }
            
            .form-row {
                flex-direction: column !important;
                gap: 15px !important;
            }
            
            .form-row > * {
                flex: 1 1 100% !important;
                min-width: 100% !important;
                margin-right: 0 !important;
                margin-bottom: 0 !important;
            }
            
            .form-group {
                width: 100% !important;
            }
            
            /* Réduire la taille des inputs datetime-local sur mobile - CORRECTION DÉBORDEMENT COMPLÈTE */
            input[type="datetime-local"] {
                font-size: 0.75em !important; /* Encore plus petit */
                padding: 6px 6px 6px 30px !important; /* Padding réduit */
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important; /* Important pour flex */
                box-sizing: border-box !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                white-space: nowrap !important;
                /* Réduire la hauteur pour éviter les débordements verticaux */
                height: 38px !important;
                line-height: 1.2 !important;
            }
            
            /* S'assurer que les icônes de date ne débordent pas */
            .form-group input[type="datetime-local"] + .input-icon,
            .form-group:has(input[type="datetime-local"]) .input-icon {
                left: 6px !important;
                font-size: 0.9em !important;
                width: 20px !important;
                height: 20px !important;
            }
            
            /* S'assurer que les conteneurs de dates ne débordent pas */
            .form-group:has(input[type="datetime-local"]) {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                overflow: hidden !important;
            }
            
            /* Ajuster les labels des dates */
            .form-group:has(input[type="datetime-local"]) label {
                font-size: 0.8em !important;
                margin-bottom: 4px !important;
            }
            
            /* Ajuster les labels sur mobile */
            .form-group label {
                font-size: 0.85em;
                margin-bottom: 6px;
            }
            
            .search-actions {
                flex-direction: column;
            }
            
            .search-actions .form-group,
            .btn-search,
            .btn-ai {
                width: 100%;
            }
            
            /* Tagline Section Mobile */
            .tagline-section {
                padding: 40px 15px !important;
            }
            
            .tagline-title {
                font-size: 1.8em !important;
            }
            
            .tagline-subtitle {
                font-size: 1.2em !important;
            }
            
            /* Ride Section Mobile */
            .ride-section {
                padding: 40px 15px !important;
            }
            
            .ride-section-content {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
            
            .ride-section h2,
            #ride-title {
                font-size: 1.8em !important;
            }
            
            .ride-section p,
            #ride-desc {
                font-size: 1em !important;
            }
            
            .ride-section a,
            #ride-order,
            #ride-hourly {
                padding: 12px 20px !important;
                font-size: 1em !important;
                width: 100%;
                text-align: center;
                display: block;
            }
            
            /* Carte de prix estimé mobile */
            .ride-section .container > div[style*="position: relative"] {
                margin-top: 30px;
            }
            
            .ride-section div[style*="background: rgba(45, 45, 45"] {
                padding: 20px !important;
            }
            
            /* Features Grid Mobile */
            .features-grid,
            .ride-features-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }
            
            .features-title {
                font-size: 1.8em !important;
            }
            
            .features-subtitle {
                font-size: 1em !important;
            }
            
            .feature-card {
                padding: 20px !important;
            }
            
            .cta-content h2 {
                font-size: 1.8em !important;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-btn {
                width: 100%;
            }
            
            /* Stats Section Mobile - IMPORTANT : 2x2 grid au lieu de 4 colonnes */
            .stats-section {
                padding: 40px 15px !important;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }
            
            .stat-number {
                font-size: 2em !important;
            }
            
            .stat-label {
                font-size: 0.9em !important;
            }
            
            /* Features Section Mobile */
            .features-section {
                padding: 40px 15px !important;
            }
            
            /* Popular Cities Section Mobile */
            section[style*="padding: 60px"],
            section[style*="padding: 80px"] {
                padding: 40px 15px !important;
            }
            
            /* CTA Section Mobile */
            .cta-section {
                padding: 40px 15px !important;
            }
            
            /* Assurer que tous les conteneurs sont bien ajustés */
            .container {
                padding: 0 15px !important;
            }
            
            /* Ajuster les espacements généraux */
            section {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
            
            /* Header mobile - s'assurer qu'il ne force pas la page à être plus grande */
            .header {
                height: 56px !important;
                max-height: 56px !important;
            }
            
            .header .container {
                padding: 0 10px !important;
            }
            
            /* Spacer pour header fixe mobile */
            .header-spacer,
            div[style*="height: 64px"] {
                height: 56px !important;
            }
            
            /* S'assurer que le body ne dépasse pas sur mobile */
            body {
                overflow-x: hidden !important;
                max-width: 100vw !important;
            }
            
            /* Tous les éléments doivent respecter la largeur de l'écran */
            * {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
        }
        
        @media (min-width: 1024px) {
            .search-form > div:first-child {
                grid-template-columns: 2fr 1fr 1fr 1fr !important;
            }
        }
        
        /* City Suggestions */
        .city-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white !important;
            z-index: 1000;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-top: 5px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: none;
        }
        
        .city-suggestion-item {
            padding: 12px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #000000 !important;
            background: #ffffff !important;
            transition: background 0.2s;
        }
        
        .city-suggestion-item:hover {
            background: #f8f9fa !important;
        }
        
        .city-suggestion-icon {
            font-size: 1.2em;
            color: #FF6600 !important;
        }
        
        /* FORCER la couleur noire pour les noms de villes */
        .city-suggestion-item span:not(.city-suggestion-icon) {
            color: #000000 !important;
            -webkit-text-fill-color: #000000 !important;
            font-weight: 700 !important;
            opacity: 1 !important;
            visibility: visible !important;
            text-shadow: none !important;
            background: transparent !important;
        }
        
        .city-suggestion-item {
            color: #000000 !important;
            background: #ffffff !important;
        }
        
        /* Styles pour la section de recherche (comme rental.html) */
        .search-banner {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%);
            padding: 40px 20px;
            margin-bottom: 30px;
        }
        
        .search-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 30px;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.8) 100%);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }
        
        .search-banner-content h1 {
            font-size: 3em;
            font-weight: 800;
            margin-bottom: 10px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .search-banner-content h2 {
            font-size: 1.8em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #FF6600;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .search-banner-content p {
            font-size: 1.1em;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .search-form {
            max-width: 1200px;
            margin: 30px auto 0;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .form-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .form-row > * {
            -webkit-box-flex: 1;
            -ms-flex: 1 1 200px;
            flex: 1 1 200px;
            min-width: 200px;
            margin-right: 15px;
            margin-bottom: 15px;
        }
        
        .form-row > *:last-child {
            margin-right: 0;
        }
        
        .btn-search {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #FF6600 0%, #FF4500 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1em;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .btn-search:hover {
            transform: scale(1.02);
        }
        
        /* Slide IA en bas de page - Styles complets */
        .ai-slide-bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #FF6600 0%, #ff8533 100%);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
            z-index: 2000;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 3px solid rgba(255,255,255,0.2);
        }
        
        .ai-slide-bottom.show {
            transform: translateY(0);
        }
        
        .ai-slide-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .ai-slide-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .ai-slide-icon {
            font-size: 1.8em;
        }
        
        .ai-slide-title {
            flex: 1;
            font-size: 1.3em;
            font-weight: 700;
            color: #ffffff !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .ai-slide-close {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 1.5em;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .ai-slide-close:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }
        
        .ai-slide-body {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        /* Style pour la description du slide IA - texte visible */
        .ai-slide-description {
            color: #ffffff !important;
            font-size: 0.95em;
            line-height: 1.5;
            margin: 0 0 12px 0;
            font-weight: 500;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            background: rgba(0,0,0,0.15);
            padding: 10px 15px;
            border-radius: 8px;
        }
        
        .ai-slide-input-group {
            display: flex;
            gap: 10px;
            align-items: stretch;
        }
        
        .ai-slide-input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            font-size: 1em;
            background: rgba(255,255,255,0.95);
            color: #333;
            transition: all 0.2s;
        }
        
        .ai-slide-input:focus {
            outline: none;
            border-color: white;
            background: white;
            box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
        }
        
        .ai-slide-voice-btn {
            padding: 14px 24px;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .ai-slide-voice-btn:hover {
            background: rgba(255,255,255,0.3);
            border-color: white;
            transform: translateY(-2px);
        }
        
        .ai-slide-voice-btn.listening {
            background: #dc3545;
            border-color: #dc3545;
            animation: pulse 1.5s infinite;
        }
        
        .ai-slide-search-btn {
            padding: 14px 24px;
            background: white;
            border: none;
            border-radius: 10px;
            color: #FF6600;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .ai-slide-search-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .ai-slide-status {
            min-height: 24px;
            color: #ffffff;
            font-size: 0.9em;
            font-weight: 600;
            padding: 8px 12px;
            text-align: center;
            background: rgba(0,0,0,0.2);
            border-radius: 6px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        
        .ai-slide-status.loading {
            color: #ffffff;
            background: rgba(59, 130, 246, 0.3);
        }
        
        .ai-slide-status.success {
            color: #ffffff;
            background: rgba(34, 197, 94, 0.3);
        }
        
        .ai-slide-status.error {
            color: #ffffff;
            background: rgba(239, 68, 68, 0.3);
        }
        
        /* Bouton flottant pour ouvrir le slide - Toujours visible en bas de l'écran */
        .ai-slide-toggle {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF6600 0%, #ff8533 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.8em;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,102,0,0.4);
            z-index: 10000 !important; /* Plus élevé que le header (z-index: 50) pour rester visible */
            display: flex !important; /* Toujours affiché en flex */
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            animation: float 3s ease-in-out infinite;
            /* Garantir la visibilité même lors du défilement */
            visibility: visible !important;
            opacity: 1 !important;
            pointer-events: auto !important;
            will-change: transform; /* Optimisation pour le scroll */
        }
        
        .ai-slide-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(255,102,0,0.6);
        }
        
        /* Masquer seulement quand le slide est ouvert */
        .ai-slide-toggle.hidden {
            display: none !important;
        }
        
        /* Sur mobile, s'assurer que le bouton reste visible même avec le slide ouvert (optionnel) */
        @media (max-width: 768px) {
            .ai-slide-toggle {
                bottom: 15px !important;
                right: 15px !important;
                width: 56px;
                height: 56px;
                z-index: 10000 !important; /* Z-index plus élevé que le header (50) et autres éléments */
                position: fixed !important; /* Toujours fixe même lors du scroll */
            }
            
            /* Si le slide est ouvert, le bouton peut rester visible mais décalé */
            .ai-slide-bottom.show ~ .ai-slide-toggle,
            .ai-slide-bottom.show + .ai-slide-toggle {
                bottom: 280px !important; /* Au-dessus du slide ouvert */
            }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @media (max-width: 768px) {
            .ai-slide-input-group {
                flex-direction: column;
            }
            
            .ai-slide-voice-btn,
            .ai-slide-search-btn {
                width: 100%;
                justify-content: center;
            }
        }

