        /* Variables CSS optimisées */
        :root {
            --primary: #FFC107;
            --primary-dark: #FFA000;
            --secondary: #1A237E;
            --secondary-light: #303F9F;
            --accent: #FF5252;
            --dark: #212121;
            --dark-light: #424242;
            --light: #F5F5F5;
            --light-dark: #E0E0E0;
            --gray: #757575;
            --gray-light: #BDBDBD;
            --white: #FFFFFF;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-fast: all 0.2s ease;
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --border-radius-lg: 16px;
        }

        /* Reset et styles de base critiques */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--white);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header critique pour LCP */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-text {
            color: var(--dark);
        }

        .logo-accent {
            color: var(--primary);
            margin-left: 5px;
        }

        .logo-icon {
            margin-left: 10px;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            margin: 0 15px;
            padding: 8px 0;
            position: relative;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Language Selector */
        .language-selector {
            position: relative;
            font-family: 'Inter', sans-serif;
        }

        .language-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--light-dark);
            border-radius: 8px;
            padding: 10px 14px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            color: var(--dark);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        }

        .language-btn:hover {
            border-color: var(--primary);
            background-color: rgba(0, 0, 0, 0.03);
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            border-radius: 3px;
            object-fit: cover;
        }

        .language-arrow {
            font-size: 0.7rem;
            transition: var(--transition);
            margin-left: auto;
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 170px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
        }

        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        .language-selector:hover .language-arrow {
            transform: rotate(180deg);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .language-option:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        .nav-cta {
            margin-left: 15px;
        }

        /* Mobile menu */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--dark);
            position: absolute;
            left: 0;
            transition: var(--transition);
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.8));
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
            color: var(--white);
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
        }

        .hero-text h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-text p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-label {
            font-size: clamp(0.9rem, 2vw, 1rem);
            opacity: 0.9;
        }

        /* Booking Form */
        .booking-form {
            flex: 1;
            min-width: 350px;
            max-width: 450px;
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            margin-left: -8px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
        }

        .form-title {
            color: var(--secondary);
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            font-weight: 600;
        }

        .form-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-dark);
            border-radius: var(--border-radius-sm);
            font-size: 0.9rem;
            transition: var(--transition);
            background-color: var(--white);
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
            outline: none;
        }

        .booking-options {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .booking-option {
            flex: 1;
            padding: 15px;
            text-align: center;
            border: 2px solid var(--light-dark);
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: var(--transition);
        }

        .booking-option:hover {
            border-color: var(--primary);
        }

        .booking-option.active {
            border-color: var(--primary);
            background-color: rgba(255, 193, 7, 0.1);
        }

        .booking-option i {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .booking-option p {
            margin: 0;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .whatsapp-btn {
            background-color: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            width: 100%;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            color: white;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            gap: 10px;
        }

        .btn-outline-dark {
            background-color: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
        }

        .btn-outline-dark:hover {
            background-color: var(--dark);
            color: var(--white);
        }

        /* Services Section */
        .services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover .service-icon {
            background: var(--white);
            color: var(--primary);
            box-shadow: none;
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: var(--white);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: var(--white);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
            transition: var(--transition);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
            transition: var(--transition);
        }

        .service-card p {
            color: var(--gray);
            font-size: 1rem;
            transition: var(--transition);
        }

        /* Zone Section */
        .zone-map {
            height: 500px;
            background: var(--light-dark);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .zone-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .zone-cities {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .city {
            background: var(--secondary);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .city:hover {
            background: var(--primary);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.8));
            position: relative;
            color: var(--white);
        }

        .about-container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: var(--border-radius-lg);
            background: var(--secondary-light);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            font-size: clamp(1.8rem, 4vw, 2.2rem);
            margin-bottom: 25px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            background: var(--light-dark);
        }

        .testimonial-author h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .testimonial-author p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 0;
        }

        .testimonial-rating {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--dark-light);
        }

        /* Contact Section */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 30px;
            position: relative;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }

        .info-text p,
        .info-text a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .info-text a:hover {
            color: var(--primary);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background: var(--light);
            padding: 40px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            color: var(--primary);
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }

        .footer-col p {
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-form .form-control {
            margin-bottom: 10px;
            width: 100%;
        }

        .copyright {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
        }

        /* Floating action button */
        .fabb {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: var(--secondary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            animation: pulse 2s infinite;
            transition: var(--transition);
            text-decoration: none;
        }

        .fabb:hover {
            transform: scale(1.1);
            animation: none;
        }

        /* Loading animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-circle {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark);
            color: var(--white);
            padding: 15px 25px;
            border-radius: var(--border-radius-sm);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast.show {
            opacity: 1;
            bottom: 50px;
        }

        .toast.success {
            background: var(--success);
        }

        .toast.error {
            background: var(--error);
        }

        .toast.warning {
            background: var(--warning);
        }

        /* Classes utilitaires */
        .text-center {
            text-align: center;
        }

        .text-primary {
            color: var(--primary);
        }

        .text-secondary {
            color: var(--secondary);
        }

        .bg-primary {
            background-color: var(--primary);
        }

        .bg-secondary {
            background-color: var(--secondary);
        }

        .bg-light {
            background-color: var(--light);
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--dark);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--secondary);
            transform: translateY(-2px);
        }

        .section {
            padding: clamp(60px, 10vw, 100px) 0;
        }

        .section-title {
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .text-button-form-blue {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-link {
                margin: 15px 0;
                font-size: 1.2rem;
            }

            .hamburger {
                display: block;
            }

            .nav-cta {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-img {
                height: 400px;
            }

            .booking-form {
                margin-left: 0;
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 60px;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .booking-form {
                padding: 25px;
            }

            .section {
                padding: 80px 0;
            }

            .stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .form-navigation {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .form-title {
                font-size: 1.5rem;
            }

            .booking-form {
                padding: 20px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .about-img {
                height: 300px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 20px;
            }

            .booking-options {
                flex-direction: column;
            }
        }

        /* Location search styles */
        .location-search {
            position: relative;
        }

        .location-search i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        .location-search input {
            padding-left: 40px;
        }

        .gps-inside-btn {
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            font-size: 16px;
            color: #333;
            cursor: pointer;
            padding: 0;
        }
