/* Base Styles */
:root {
    --primary-color: #2b2d42;
    /* Anthracite */
    --secondary-color: #8d99ae;
    /* Gris bleuté */
    --accent-color: #ef233c;
    /* Rouge pourpre */
    --light-color: #edf2f4;
    /* Fond très clair */
    --dark-color: #2b2d42;
    /* Texte */
    --success-color: #06d6a0;
    /* Vert menthe */
    --text-white: #ffffff;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
}




h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}




a {
    text-decoration: none;
    color: inherit;
}




ul {
    list-style: none;
}




img {
    max-width: 100%;
    height: auto;
}




.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;


}




.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}




.btn-primary {
    background-color: #C6A664;
    color: var(--white-color);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(8, 116, 255, 0.3);




}




.btn-primary:hover {
    background-color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px white;
}


.btn-primaryh {
    background-color: #C6A664;
    color: var(--white-color);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(8, 116, 255, 0.3);
    margin-top: 40px;


}




.btn-primaryh:hover {
    background-color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px white;
}




















.btn-primary2 {
    font-size: 20px;
    background-color: #C6A664;
    color: var(--white-color);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(8, 116, 255, 0.3);
    margin-top: 40px;


}




.btn-primary2:hover {
    background-color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px white;
}






.btn-primary3 {
    background-color: #C6A664;
    font-size: 25px;
    color: var(--white-color);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(8, 116, 255, 0.3);
    margin-top: 40px;
    border-radius: 1000px;


}




.btn-primary3:hover {
    background-color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px white;
}




.btn-secondary {
    background-color: transparent;
    font-size: 20px;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    white-space: nowrap;
}




.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}




.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}




.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}




.section-title {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}




.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}


.section-title2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}




.section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}




/* Navbar */
.navbar {
    background-color: #000000;
    color: var(--white-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}




.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}




.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
}




.logo span {
    color: #C6A664;
}


/* Effet de souslignement dynamique */
.nav-list a:not(.btn) {
    position: relative;
    padding: 5px 0;
    display: inline-block;
}




.nav-list a:not(.btn) span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C6A664;
    transition: width 0.3s ease;
}




.nav-list a:not(.btn):hover span::after {
    width: 100%;
}




/* Animation active pour la page courante */
.nav-list a:not(.btn).active span::after {
    width: 100%;
}


.nav-list {
    display: flex;
    align-items: center;
}




.nav-list li {
    margin-left: 30px;
}




.nav-list a {
    font-weight: 600;
    transition: color 0.3s ease;
}




.nav-list a:hover {
    color: #C6A664;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}


.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #C6A664;
    transition: all 0.3s ease;
}



.hero-content {
    animation: fadeSlideIn 1s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}


/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://i.pinimg.com/originals/ff/87/9d/ff879d3e484e169c11f2746d5f9ca957.jpg') no-repeat center center/cover;
    color: var(--white-color);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}


@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeSlideIn 0.6s ease-out forwards;
    animation-delay: 0.1s;
}




.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeSlideIn 0.6s ease-out forwards;
    animation-delay: 0.25s;
}




.hero-content .btn {
    margin: 0 10px;
    animation: fadeSlideIn 0.6s ease-out forwards;
    animation-delay: 0.4s;
}




/* Services Section */
.services {
    padding: 80px 0;
    background: white;
    position: relative;
    color: white;
}




.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
}




.services .container {
    position: relative;
    z-index: 1;
}




.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}




.service-card {
    background: #C6A664;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}




.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 116, 255, 0.1);
    z-index: 0;
}




.service-card>* {
    position: relative;
    z-index: 1;
}




.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}




.service-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}




.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}



@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    animation: fadeUp 0.6s ease forwards;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background-color: var(--white-color);
}




.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}




.form-group {
    margin-bottom: 20px;
}




.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}




.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}




.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 116, 255, 0.1);
}




.form-row {
    display: flex;
    gap: 20px;
}




.form-row .form-group {
    flex: 1;
}




/* Fleet Section */
.fleet {
    padding: 80px 0;
    background-color: var(--light-color);
}




.fleet-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}




.fleet-item {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}




.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}




.fleet-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}




.fleet-item:hover img {
    transform: scale(1.05);
}




.fleet-info {
    padding: 20px;
}




.fleet-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}




.fleet-info ul {
    margin-top: 15px;
}




.fleet-info li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--text-light);
}




.fleet-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}




/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--white-color);
}




.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}




.pricing-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}




.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}




.pricing-card.featured {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
}




.pricing-card.featured .price {
    color: var(--secondary-color);
}




.pricing-card.featured .btn-outline {
    color: var(--white-color);
    border-color: var(--white-color);
}




.pricing-card.featured .btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}




.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}




.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--primary-color);
}




.price span {
    font-size: 1rem;
    font-weight: 400;
}




.pricing-card ul {
    margin: 30px 0;
}




.pricing-card li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}




.pricing-card.featured li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}




/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-subtitle {
    text-align: center;
}



.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}




.contact-info p {
    color: black;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}




.contact-info i {
    margin-right: 15px;
    color: #C6A664;
    font-size: 1.2rem;
    min-width: 25px;
}




.social-links {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}




.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;


    color: var(--white-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}




.social-links a:hover {


    transform: translateY(-3px);
}




.contact-form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}




/* Footer */
.footer {
    background-color: black;
    color: var(--white-color);
    padding: 60px 0 0;
}




.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}




.footer-col h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}




.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}




.footer-col ul li {
    margin-bottom: 10px;
}




.footer-col ul a {
    transition: color 0.3s ease;
}




.footer-col ul a:hover {
    color: var(--secondary-color);
}




.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}




/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }


    .hero-content h1 {
        font-size: 2.8rem;
    }
}


@media (max-width: 768px) {


    .menu-toggle {
        display: flex;




    }


    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }




    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
    }




    .nav-list.active {
        left: 0;
    }




    .nav-list li {
        margin: 15px 0;
    }




    .form-row {
        flex-direction: column;
        gap: 0;
    }




    .hero-content h1 {
        font-size: 2.2rem;
    }




    .hero-content .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}




@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }


    .booking-form,
    .contact-form {
        padding: 30px 20px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Bouton WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    height: 60px;
    border-radius: 30px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}


.whatsapp-text {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    display: inline-block;
}


.whatsapp-btn i {
    font-size: 30px;
}


.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}


/* Adaptation pour très petits écrans */
@media (max-width: 400px) {
    .whatsapp-btn {
        padding: 0 15px;
        height: 50px;
    }


    .whatsapp-text {
        font-size: 14px;
    }


    .whatsapp-btn i {
        font-size: 24px;
    }
}


/* Single Vehicle Section */
.fleet {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}


.section-subtitle {
    color: #777;
    margin-bottom: 40px;
    font-size: 1.2rem;
}


.single-vehicle {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
}


.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
}


.vehicle-image {
    height: 350px;
    overflow: hidden;
}


.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}


.vehicle-details {
    padding: 30px;
}


.vehicle-details h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8rem;
}


.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}


.vehicle-specs li {
    display: flex;
    align-items: center;
    color: #555;
}


.vehicle-specs i {
    color: #C6A664;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}


@media (max-width: 768px) {
    .vehicle-specs {
        grid-template-columns: 1fr;
    }


    .vehicle-image {
        height: 250px;
    }
}


/* Styles pour le formulaire de contact */
.contact-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
}


.styled-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}


.form-group {
    position: relative;
    margin-bottom: 0;
}


.form-group.full-width {
    grid-column: span 2;
}


.floating-label {
    position: relative;
}


.floating-label label {
    position: absolute;
    left: 45px;
    top: 18px;
    color: #777;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}


.floating-label .input-icon {
    position: absolute;
    left: 15px;
    top: 21px;
    color: #666;
    font-size: 18px;
}


.floating-label input,
.floating-label textarea,
.floating-label select {
    width: 100%;
    padding: 18px 20px 18px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}


.floating-label select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}


.floating-label textarea {
    min-height: 150px;
    resize: vertical;
}


.floating-label input:focus,
.floating-label textarea:focus,
.floating-label select:focus {
    outline: none;
    border-color: #4a6cf7;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}


.floating-label input:focus+label,
.floating-label textarea:focus+label,
.floating-label select:focus+label,
.floating-label input:not(:placeholder-shown)+label,
.floating-label textarea:not(:placeholder-shown)+label,
.floating-label select:not([value=""])+label {
    top: -10px;
    left: 40px;
    font-size: 12px;
    background: white;
    padding: 0 5px;
    color: #4a6cf7;
}


.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.form-note {
    color: #666;
    font-size: 14px;
    margin-left: 20px;
}


.form-note i {
    margin-right: 5px;
}


/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }


    .form-group.full-width {
        grid-column: span 1;
    }


    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }


    .form-note {
        margin: 15px 0 0 0;
    }
}






.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
}


.dropdown-btn img {
    width: 40px;
    border-radius: 4px;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0.5em;
    z-index: 1;
}


.dropdown-content button {
    width: 100%;
    border: none;
    background: none;
    padding: 0.3em 0.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1em;
}


.dropdown-content button:hover {
    background-color: #f1f1f1;
}


.dropdown-content img {
    width: 24px;
    margin-right: 0.5em;
    border-radius: 3px;
}


/* Ajoutez ceci à votre fichier CSS */
.dropdown:hover .dropdown-content {
    display: block;
}


.language-item {
    position: relative;
}


.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 4px;
    padding: 10px 0;
}


.dropdown-content button {
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}


.dropdown-content button:hover {
    background-color: #f5f5f5;
}


.dropdown-content button img {
    margin-right: 10px;
    width: 20px;
    height: auto;
}


/* Style pour le drapeau actuel */
.dropdown-btn img {
    width: 30px;
    height: auto;
    border-radius: 3px;
    transition: transform 0.3s;
}


.dropdown-btn:hover img {
    transform: scale(1.1);
}


/* Style pour les drapeaux dans le dropdown */
.dropdown-content button img {
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
}






/* Conteneur principal */
.phone-input-container {
    display: flex;
    width: 100%;
    height: 56px;
    align-items: center;
}


/* Style du select des codes pays */
.country-code-select {
    width: 120px;
    height: 108%;

    padding: 8px 6px;

    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background-color: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-size: 14px;
    background-image: url('https://flagcdn.com/w20/fr.png');
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px;
}






/* Style au focus */
.phone-number-input:focus {
    outline: none;
    border-color: #4a6cf7;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}



/* Version mobile */
@media (max-width: 768px) {
    .phone-input-container {
        height: 100%;
    }

    .phone-number-input {
        padding-left: 8px;
        /* Encore moins d'espace à gauche sur mobile */
    }

    .country-code-select {

        font-size: 13px;
        background-size: 18px;
        padding: 8px 19px;
        height: 100%;

    }
}



/* Style pour simuler le placeholder */
select:required:invalid {
    color: #999;
}


select option {
    color: #000;
    /* Couleur normale pour les options */
}


select option[value=""][disabled] {
    color: #999;
    /* Couleur du "placeholder" */
    display: none;
    /* Cache dans la liste déroulante */
}


/* Animation du label comme pour les inputs */
.floating-label select:focus~label,
.floating-label select:not([value=""])~label {
    top: -10px;
    left: 40px;
    font-size: 12px;
    background: white;
    padding: 0 5px;
    color: #4a6cf7;
}

.phone-number-input::placeholder {
    padding-left: 2px;
    /* Déplace légèrement le placeholder */
    color: #999;
    /* Couleur plus discrète */
    transition: all 0.3s ease;
}

.phone-number-input:focus::placeholder {
    color: transparent;
    /* Fait disparaître le placeholder au focus */
}

/* Pour les écrans mobiles */
@media (max-width: 768px) {
    .booking-form .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }

    /* Optionnel: pour améliorer l'apparence des sélecteurs de date/heure sur mobile */
    input[type="date"]::-webkit-inner-spin-button,
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-inner-spin-button,
    input[type="time"]::-webkit-calendar-picker-indicator {
        display: none;
        -webkit-appearance: none;
    }
}

/* Par défaut (grands écrans) */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Sur mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        width: 100%;
    }
}