/* ===== BOUTON WHATSAPP FLOTTANT (avec image personnalisée) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #000000; /* Vert WhatsApp */
    width: 60px;
    height: 60px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.2s;
    z-index: 1000;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
}


/* Votre image à l'intérieur */
.whatsapp-float img {
    width: 90px;
    height: 90px;
    display: block;
    object-fit: contain;
}

/* Effet au survol */
.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #e07512; /* Vert un peu plus foncé */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Responsive : plus petit sur mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float img {
        width: 78px;
        height: 78px;
    }
}





/* style.css – Navbar moderne pour SamaBillet */

/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F5F7FA; /* gris clair */
    color: #1F2937; /* texte principal */
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Menu de navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4B5563; /* gris secondaire */
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #1565C0; /* bleu mobilité */
    border-bottom-color: #1565C0;
}

/* Hamburger (caché par défaut) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1F2937;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive : version mobile */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-left: 35%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }
}

/* Contenu fictif */
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content h1 {
    color: #0F9D58; /* vert principal */
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    color: #6B7280;
}



/* SECTION ACCUEIL */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh; /* occupe 90% de la hauteur de la fenêtre */
    min-height: 600px; /* hauteur minimale pour les petits écrans */
    background-image: url('ACCUEIL/ARRIER PLAN/ACCUEIL.png'); /* Image de bus / transport */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* effet parallaxe léger */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

/* Superposition sombre pour améliorer la lisibilité */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* noir semi-transparent */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    color: #0F9D58; /* vert principal */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: #f0f0f0;
}

/* Bouton de réservation */
.btn-reservation {
    display: inline-block;
    background-color: #0F9D58; /* vert */
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px; /* bouton arrondi */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border: 2px solid transparent;
}

.btn-reservation:hover {
    background-color: #0b7e45; /* vert plus foncé */
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.btn-reservation:active {
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .btn-reservation {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        background-attachment: scroll; /* désactive le parallaxe sur mobile pour fluidité */
    }
    .hero-title {
        font-size: 1.8rem;
    }
}





/* ===== SECTION NAVETTE AÉROPORT & LOCATION ===== */
.shuttle-section {
    position: relative;
    height: 500px;
    background-image: url('ACCUEIL/ARRIER PLAN/NAVETTE.png'); /* Image d'avion/aéroport */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallaxe léger */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

/* Superposition sombre */
.shuttle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* assombrit pour lisibilité */
    z-index: 1;
}

.shuttle-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.shuttle-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    color: #FFFFFF;
}

.shuttle-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    color: #f5f5f5;
}

/* Boutons */
.shuttle-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-shuttle {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-airport {
    background-color: #0F9D58; /* vert */
    color: #FFFFFF;
    border: 2px solid #0F9D58;
}

.btn-airport:hover {
    background-color: #0b7e45;
    border-color: #0b7e45;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.btn-rental {
    background-color: #FFC107; /* jaune */
    color: #1F2937; /* texte sombre pour contraste */
    border: 2px solid #FFC107;
}

.btn-rental:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .shuttle-section {
        height: 400px;
        background-attachment: scroll;
    }
    .shuttle-title {
        font-size: 2rem;
    }
    .shuttle-subtitle {
        font-size: 1.1rem;
    }
    .btn-shuttle {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .shuttle-title {
        font-size: 1.7rem;
    }
    .shuttle-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}




/* ===== SECTION RÉSERVATION NAVETTE AÉROPORT ===== */
.airport-shuttle-section {
    background-color: #F5F7FA; /* gris clair */
    padding: 4rem 1rem;
}

.airport-shuttle-section .container {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 2.5rem;
}

.airport-shuttle-section .section-title {
    text-align: center;
    color: #1F2937;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.airport-shuttle-section .section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Formulaire */
.airport-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.airport-form .form-group {
    display: flex;
    flex-direction: column;
}

.airport-form .form-group label {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.airport-form .form-group input,
.airport-form .form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background-color: #FFFFFF;
    font-family: inherit;
}

.airport-form .form-group input:focus,
.airport-form .form-group textarea:focus {
    outline: none;
    border-color: #FFC107; /* jaune */
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

/* Bouton */
.airport-form .btn-submit {
    background-color: #0F9D58; /* vert */
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.airport-form .btn-submit:hover {
    background-color: #0b7e45; /* vert foncé */
    transform: translateY(-2px);
}

.airport-form .btn-submit:active {
    transform: translateY(0);
}

.airport-form .btn-submit.success {
    background-color: #0F9D58; /* reste vert */
}

/* Message de confirmation */
.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
    color: #0F9D58;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .airport-shuttle-section .container {
        padding: 1.5rem;
    }
    .airport-shuttle-section .section-title {
        font-size: 1.8rem;
    }
}







/* ===== SECTION LOCATION DE VOITURE ===== */
.car-rental-section {
    background-color: #F5F7FA; /* gris clair */
    padding: 4rem 1rem;
}

.car-rental-section .container {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 2.5rem;
}

.car-rental-section .section-title {
    text-align: center;
    color: #1F2937;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.car-rental-section .section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Formulaire */
.rental-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rental-form .form-group {
    display: flex;
    flex-direction: column;
}

/* Deux colonnes pour les dates */
.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .half {
    flex: 1;
}

.rental-form .form-group label {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.rental-form .form-group input,
.rental-form .form-group select {
    padding: 0.8rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background-color: #FFFFFF;
    font-family: inherit;
}

.rental-form .form-group input:focus,
.rental-form .form-group select:focus {
    outline: none;
    border-color: #FFC107; /* jaune */
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

/* Groupe radio */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    color: #1F2937;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0F9D58; /* vert */
}

/* Bouton */
.rental-form .btn-submit {
    background-color: #0F9D58; /* vert */
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rental-form .btn-submit:hover {
    background-color: #0b7e45;
    transform: translateY(-2px);
}

.rental-form .btn-submit:active {
    transform: translateY(0);
}

.rental-form .btn-submit.success {
    background-color: #0F9D58;
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
    color: #0F9D58;
}

#location {
    background-color: #e0a800;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .car-rental-section .container {
        padding: 1.5rem;
    }
    .car-rental-section .section-title {
        font-size: 1.8rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .radio-group {
        flex-direction: column;
        gap: 0.8rem;
    }
}




/* ===== SECTION TROTTI TOUR (SAINT-LOUIS) ===== */
.trottinette-section {
    position: relative;
    height: 550px;
    background-image: url('PARTENAIRES/fond-trottitour.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

/* Superposition sombre pour la lisibilité */
.trottinette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.trottinette-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.trottinette-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.trottinette-title .highlight {
    color: #FFC107; /* jaune dynamique */
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.trottinette-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    color: #F5F7FA;
}

/* Grille des tarifs */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 1rem 1.8rem;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.25);
    background: #FFFFFF;
}

.duration {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F9D58; /* vert principal */
}

/* Bouton de réservation */
.btn-trottinette {
    display: inline-block;
    background-color: #0F9D58;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn-trottinette:hover {
    background-color: #0b7e45;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.btn-trottinette:active {
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .trottinette-section {
        height: auto;
        min-height: 500px;
        padding: 3rem 1rem;
        background-attachment: scroll;
    }
    .trottinette-title {
        font-size: 2rem;
    }
    .trottinette-subtitle {
        font-size: 1.1rem;
    }
    .pricing-grid {
        gap: 1rem;
    }
    .price-card {
        padding: 0.8rem 1.2rem;
        min-width: 110px;
    }
    .price {
        font-size: 1.2rem;
    }
    .btn-trottinette {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}





/* ===== SECTION LOCATION SIMPLIFIÉE ===== */
.car-rental-simple {
    background-color: #F5F7FA;  /* gris clair */
    padding: 4rem 1rem;
}

.car-rental-simple .container {
    max-width: 650px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 2.5rem;
}

.car-rental-simple .section-title {
    text-align: center;
    color: #1F2937;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.car-rental-simple .section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.rental-simple-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rental-simple-form .form-group {
    display: flex;
    flex-direction: column;
}

.rental-simple-form label {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.rental-simple-form input,
.rental-simple-form select {
    padding: 0.8rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
    background-color: #FFF;
    font-family: inherit;
}

.rental-simple-form input:focus,
.rental-simple-form select:focus {
    outline: none;
    border-color: #FFC107;  /* jaune */
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.3rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: normal;
    cursor: pointer;
    color: #1F2937;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #0F9D58; /* vert */
    margin: 0;
}

/* Bouton */
.rental-simple-form .btn-submit {
    background-color: #0F9D58; /* vert */
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.rental-simple-form .btn-submit:hover {
    background-color: #0b7e45;
    transform: translateY(-2px);
}

.rental-simple-form .btn-submit:active {
    transform: translateY(0);
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
    color: #0F9D58;
}

/* Responsive */
@media (max-width: 768px) {
    .car-rental-simple .container {
        padding: 1.5rem;
    }
    .radio-group {
        flex-direction: column;
        gap: 0.8rem;
    }
}






/* ===== SECTION PARTENAIRES ===== */
.partners-section {
    background-color: #FFFFFF;
    padding: 5rem 1rem;
    text-align: center;
}

.partners-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.partners-section .section-title {
    color: #1F2937;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partners-section .section-subtitle {
    color: #6B7280;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Grille des logos */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 120px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
}

/* Bouton secondaire (outline) */
.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 2px solid #1565C0;
    color: #1565C0;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background-color: #1565C0;
    color: #FFFFFF;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .partners-grid {
        gap: 1rem;
    }
    .partner-card {
        width: 130px;
        height: 100px;
        padding: 1rem;
    }
    .partners-section .section-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .partner-card {
        width: 100px;
        height: 80px;
    }
}





/* ===== SECTION RÉSERVATION ===== */
/* Section Réservation 7 lignes */
.reservation-7lines {
    background-color: #F5F7FA;
    padding: 4rem 1rem;
}
.reservation-7lines .container {
    max-width: 750px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.05);
    padding: 2.5rem;
}
.section-title {
    text-align: center;
    color: #1F2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.underline {
    text-decoration: underline;
    text-decoration-color: #0F9D58;
    text-underline-offset: 6px;
}
.section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select {
    padding: 0.85rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #FFF;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
    outline: none;
}
input:read-only:disabled {
    background-color: #F3F4F6;
    cursor: not-allowed;
}
/* Double colonne départ/destination + prix */
.form-row-double {
    display: flex;
    gap: 1.5rem;
}
.half {
    flex: 1;
}
.price-box {
    background-color: #FFF8E7;  /* léger jaune pâle */
    border-radius: 16px;
    padding: 0 0.2rem;
}
.price-card-display {
    background-color: #FFC107;
    color: #1F2937;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 0.85rem;
    border-radius: 16px;
    margin-top: 0.2rem;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05), 0 2px 5px rgba(0,0,0,0.1);
}
/* Bouton */
.btn-reserve {
    background-color: #1565C0; /* bleu */
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    margin-top: 0.5rem;
}
.btn-reserve:hover {
    background-color: #0D47A1;
    transform: scale(1.01);
}
.btn-reserve.success {
    background-color: #0F9D58; /* vert */
}
.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
}
@media (max-width: 650px) {
    .form-row-double {
        flex-direction: column;
        gap: 1rem;
    }
    .reservation-7lines .container {
        padding: 1.5rem;
    }
}



/* ===== SECTION CONTACT ===== */
.contact-section {
    background-color: #F5F7FA; /* gris clair */
    padding: 4rem 1rem;
}

.contact-section .container {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 2.5rem;
}

.contact-section .section-title {
    text-align: center;
    color: #1F2937;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background-color: #FFFFFF;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #FFC107; /* jaune d'accent */
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

/* Bouton */
.contact-form .btn-submit {
    background-color: #0F9D58; /* vert */
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact-form .btn-submit:hover {
    background-color: #0b7e45; /* vert foncé */
    transform: translateY(-2px);
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

/* État temporaire après envoi */
.contact-form .btn-submit.success {
    background-color: #0F9D58; /* reste vert (mais on peut le laisser identique) */
    /* ou si on veut un jaune pour confirmer, on peut le changer */
}

/* Message de confirmation */
.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
    color: #0F9D58;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-section .container {
        padding: 1.5rem;
    }
    .contact-section .section-title {
        font-size: 1.8rem;
    }
}








/* ===== FOOTER ===== */
.footer {
    background-color: #1F2937; /* gris très foncé (presque noir) */
    color: #F5F7FA;
    padding: 3rem 1rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.footer-logo .highlight {
    color: #FFC107; /* jaune */
}

.footer-description {
    color: #9CA3AF; /* gris clair */
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #FFC107;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0F9D58; /* vert */
}

/* Réseaux sociaux */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151; /* gris moyen */
    border-radius: 50%;
    color: #FFFFFF;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    background-color: #0F9D58; /* vert */
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
}

/* Footer bottom (copyright) */
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
    font-size: 0.95rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-description {
        max-width: 100%;
    }
    .social-icons {
        justify-content: center;
    }
}