/* General Body and Font */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #000;
            color: #fff;
            padding-bottom: 50px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        /* Section Theme (Black & Yellow Taxi) - pas de changement majeur ici */
        .driver-plus-section {
            background-color: #000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            /* Important: Plus de positionnement absolu sur le header */
            position: relative; /* Pour que le hero-section puisse se positionner par rapport à lui */
            min-height: 100vh; /* S'assure que la section prend au moins toute la hauteur */
        }

        /* Header Styling */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: rgba(0, 0, 0, 0.8); /* Ajout d'un fond semi-transparent pour qu'il soit visible */
            color: #fff;
            /* Changement clé : Retirer position: absolute; pour qu'il prenne sa place dans le flux normal */
            /* width: 100%; - Retiré car il prend déjà la largeur par défaut en tant que block */
            z-index: 100;
            position: sticky; /* ou fixed si vous voulez qu'il reste en haut en défilant */
            top: 0;
            width: 100%;
            box-sizing: border-box;
        }


        .logo img {
            height: 50px;
            width: auto;
        }

        /* Main Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: flex-end;
            margin-right: 30px;
        }

        .nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 30px;
        }

        .nav-list li a {
            color: #F8F8F8;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            padding: 10px 0;
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-list li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #FFD700;
            transform: scaleX(0);
            transform-origin: bottom left;
            transition: transform 0.3s ease-out;
        }

        .nav-list li a:hover::after,
        .nav-list li a:focus::after {
            transform: scaleX(1);
        }

        .nav-list li a:hover,
        .nav-list li a:focus {
            color: #FFD700;
        }

        /* Dropdown Menu for Services */
        .dropdown {
            position: relative;
        }

        .dropdown .dropbtn {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.9);
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
            z-index: 1;
            border-top: 3px solid #FFD700;
            left: 0;
        }

        .dropdown-content a {
            color: #F8F8F8;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

        .dropdown-content a:hover {
            background-color: #222;
            color: #FFD700;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Contact Number */
        .contact-number a {
            color: #FFD700;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            padding: 8px 15px;
            border: 2px solid #FFD700;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .contact-number a:hover {
            background-color: #FFD700;
            color: #000;
        }

        /* Toggle Menu for Mobile (Hidden by default) */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 100;
            order: 3;
        }

        .menu-toggle .bar {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Toggle Menu Animation for Open State */
        .menu-toggle.open .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.open .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Hero Section */
        .hero-section {
            position: relative; /* Garde le positionnement relatif pour l'image et l'overlay */
            width: 100%;
            height: 500px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Padding top basé sur la hauteur du header si vous voulez qu'il soit sous le header fixe */
            /* Sinon, si le header n'est pas fixe, il sera poussé naturellement */
            padding-top: 0; /* Pas de padding car le header est dans le flux */
            box-sizing: border-box;
        }

        .hero-image {
            width: 90%;
            height: 100%; /* L'image prend toute la hauteur du hero-section */
            object-fit: cover;
            position: absolute;
            top: 0; /* Positionné en haut du hero-section */
            left: 50%;
            transform: translateX(-50%);
            filter: brightness(60%);
            border-radius: 3%;
        }

        .hero-overlay {
            position: absolute;
            top: 0; /* Positionné en haut du hero-section */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 100%; /* Prend toute la hauteur du hero-section */
            background-color: rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            border-radius: 3%;
        }

        .hero-content {
            text-align: center;
            color: #fff;
            z-index: 2;
            padding: 20px;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 3.5em;
            margin-bottom: 15px;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero-content p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .btn-reserve {
            display: inline-block;
            background-color: #FFD700;
            color: #000;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .btn-reserve:hover {
            background-color: #ffc400;
            color: #000;
            transform: translateY(-2px);
        }

        /* Responsive Design Header & Hero */
        @media (max-width: 900px) {
            .nav-list {
                gap: 20px;
            }
            .hero-content h1 {
                font-size: 2.8em;
            }
            .hero-content p {
                font-size: 1.1em;
            }
        }

        @media (max-width: 768px) {
            .main-header {
                flex-wrap: wrap;
                justify-content: space-between;
                position: relative; /* Revient en relative sur mobile si fixe */
                width: auto;
                left: auto;
                padding: 15px 5%;
            }

            .logo {
                margin-bottom: 0;
                flex-basis: auto;
            }

            .contact-number {
                flex-basis: auto;
                order: 2;
                margin-top: 0;
            }

            .main-nav {
                order: 4;
                width: 100%;
                justify-content: center;
                margin-right: 0;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #000;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px 0;
                border-top: 3px solid #FFD700;
                transition: transform 0.3s ease-out;
                transform: translateY(-100%);
                z-index: 99;
                box-sizing: border-box;
                padding-left: 5%;
                padding-right: 5%;
            }

            .nav-list.open {
                display: flex;
                transform: translateY(0);
            }

            .nav-list li {
                margin: 10px 0;
            }

            .menu-toggle {
                display: block;
                order: 3;
            }

            .dropdown-content {
                position: static;
                background-color: #111;
                box-shadow: none;
                width: 100%;
                text-align: center;
            }
            .dropdown.active .dropdown-content {
                display: block;
            }

            .hero-section {
                height: 400px;
                padding-top: 0; /* Pas de padding si le header est dans le flux */
            }

            .hero-image {
                width: 100%;
                left: 0;
                transform: none;
                border-radius: 0;
                top: 0;
                height: 100%;
            }

            .hero-overlay {
                width: 100%;
                left: 0;
                transform: none;
                border-radius: 0;
                top: 0;
                height: 100%;
            }

            .hero-content h1 {
                font-size: 2.2em;
            }

            .hero-content p {
                font-size: 1em;
            }

            .btn-reserve {
                padding: 12px 25px;
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 300px;
            }
            .hero-content h1 {
                font-size: 1.8em;
            }
            .hero-content p {
                font-size: 0.9em;
            }
            .btn-reserve {
                padding: 10px 20px;
                font-size: 0.9em;
            }
            .main-header {
                padding: 10px 5%;
            }
            .logo img {
                height: 40px;
            }
            .contact-number a {
                font-size: 0.9em;
                padding: 6px 10px;
            }
        }

        /* --- STYLES DU FORMULAIRE DE CONTACT --- */
        /* Retiré le padding-top du body car le header n'est plus absolu */
        body {
            /* Garde les propriétés générales du body, mais pas celles de positionnement spécifiques au formulaire */
            display: block; /* Le body doit être un bloc normal pour que les éléments se suivent */
            /* align-items: flex-start; et min-height: 100vh; sont déplacés ou ajustés si nécessaire */
            /* Ils étaient spécifiques pour le centrage du FORMULAIRE, pas de toute la page */
        }

        .contact-section {
            display: flex;
            width: 85%;
            max-width: 1100px;
            margin: 50px auto; /* Centre le formulaire horizontalement et donne de la marge en haut/bas */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            background-color: transparent;
        }

        .form-glass-box {
            flex: 1.2;
            background-color: rgba(26, 26, 26, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.4);
            border-radius: 12px;
            padding: 40px;
            color: #fff;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease-in-out;
            z-index: 1;
        }

        .form-glass-box:hover {
            border-color: #ffd700;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
        }

        .paragraph-section {
            flex: 1;
            padding: 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            background-color: transparent;
            z-index: 0;
        }

        .paragraph-section h2 {
            font-family: Georgia, serif;
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 2.2em;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            line-height: 1.2;
        }

        .paragraph-section p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1.05em;
            color: #f0f0f0;
        }

        .form-glass-box h2 {
            font-family: Georgia, serif;
            color: #ffd700;
            margin-bottom: 35px;
            text-align: center;
            font-size: 2em;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-weight: 600;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"],
        .contact-form textarea {
            width: calc(100% - 24px);
            padding: 12px;
            margin-bottom: 22px;
            border: 1px solid #ffd700;
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border-radius: 6px;
            font-size: 1em;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-form input[type="text"]:focus,
        .contact-form input[type="email"]:focus,
        .contact-form input[type="tel"]:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #ffeb3b;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 110px;
        }

        .contact-form button {
            background-color: #ffd700;
            color: #000;
            padding: 14px 25px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.05em;
            font-weight: 700;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
            width: 100%;
            letter-spacing: 0.9px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .contact-form button:hover {
            background-color: #ffeb3b;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        /* Responsive Design Contact Section */
        @media (max-width: 992px) {
            .contact-section {
                width: 90%;
                flex-direction: column;
                border-radius: 8px;
            }

            .form-glass-box, .paragraph-section {
                padding: 30px;
                border-radius: 0;
            }

            .form-glass-box {
                border: 1px solid rgba(255, 215, 0, 0.4);
                border-bottom: none;
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
            }

            .paragraph-section {
                text-align: center;
                padding-top: 30px;
                padding-bottom: 30px;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
            }

            .paragraph-section h2 {
                font-size: 2em;
            }
            .form-glass-box h2 {
                font-size: 1.8em;
            }
        }

        @media (max-width: 576px) {
            .form-glass-box, .paragraph-section {
                padding: 20px;
            }
            .paragraph-section h2 {
                font-size: 1.8em;
                margin-bottom: 15px;
            }
            .form-glass-box h2 {
                font-size: 1.6em;
                margin-bottom: 25px;
            }
            .paragraph-section p {
                font-size: 0.9em;
            }
            .contact-form input, .contact-form textarea, .contact-form button {
                font-size: 0.9em;
                padding: 10px;
                margin-bottom: 18px;
            }
            .contact-form textarea {
                min-height: 90px;
            }
        }

        .footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

        .footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-brand p {
  margin: 20px 0;
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
  color: #D4AC0D;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #D4AC0D;
}

.logo {
  width: 160px;
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 10px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    width: 100%;
  }
}