/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

header {
    background: #222;
    color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #e0b000;
}

.hero {
    background: linear-gradient(120deg, #222 60%, #222 100%);
    color: #fff;
    padding: 4rem 1.5rem 3rem 1.5rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #e0b000;
    color: #222;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #cfa000;
}

.hero-car-img {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 2rem auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

section {
    margin-bottom: 3rem;
}

.about h2, .pricing h2, .contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
}

.about p {
    margin-bottom: 1rem;
}

.services-list {
    list-style: disc inside;
    margin-left: 1rem;
    color: #444;
}

.pricing {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1rem;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.5rem;
}

.tarif-table th, .tarif-table td {
    border: 1px solid #e0e0e0;
    padding: 0.7rem 1rem;
    text-align: left;
}

.tarif-table th {
    background: #ffe5b2;
    color: #e67c00;
}

.tarif-note {
    font-size: 0.95rem;
    color: #888;
}

.contact form {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

footer {
    background: #222;
    color: #fff;
    padding: 2rem 1.5rem 1rem 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-info p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.footer-social a {
    color: #fff;
    margin-right: 1.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #e67c00;
}

.footer-info p, .footer-info a {
    color: #fff;
}

.car-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.car-image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
}
.img-caption {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
}

.special-orange {
    color: #e67c00;
    font-weight: bold;
}

.logo-block {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.site-logo {
    max-width: 400px;
    max-height: 200px;
    object-fit: contain;
}

/* Logo dans la navbar */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.navbar-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

.carrousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.carousel-images {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 1000px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}
.carousel-img {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    border-radius: 12px;
}
.carousel-img.active {
    opacity: 1;
    z-index: 2;
}
.carousel-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #e67c00;
    font-size: 2rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover {
    background: #ffe5b2;
    color: #b85c00;
}
.carousel-captions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.carousel-caption {
    font-size: 1.1rem;
    color: #888;
    transition: color 0.2s, font-weight 0.2s;
}
.carousel-caption.active {
    color: #e67c00;
    font-weight: bold;
}

.section-separator {
    border: none;
    border-top: 2px solid #eee;
    margin: 2.5rem auto 2rem auto;
    max-width: 700px;
}
.vehicules-section {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    padding: 1.5rem 1rem;
    background: #faf9f7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.vehicules-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}
.vehicules-types {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.vehicules-infos p {
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    color: #222;
}
.vehicules-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}
.vehicules-title-underline {
    width: 80px;
    height: 3px;
    background: #e67c00;
    margin: 0 auto 2.2rem auto;
    border-radius: 2px;
}
.vehicules-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.vehicule-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1.5rem 1.2rem 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    min-width: 220px;
    transition: box-shadow 0.2s;
}
.vehicule-card:hover {
    box-shadow: 0 4px 24px rgba(230,124,0,0.10);
}
.vehicule-img {
    width: 90%;
    max-width: 260px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1.2rem;
}
.vehicule-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.1rem;
    letter-spacing: 1px;
}
.vehicule-btn {
    border: 2px solid #222;
    background: #fff;
    color: #222;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
}
.vehicule-btn:hover {
    background: #e67c00;
    color: #fff;
    border-color: #e67c00;
}

/* Avantages section */
.avantages-section {
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
}
.avantage-row {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    width: 100%;
    max-width: 700px;
    justify-content: center;
}
.avantage-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin-right: 1.2rem;
}
.avantage-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.avantage-text h4, .avantage-text p {
    text-align: left;
}
.avantage-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.avantage-text p {
    font-size: 1.05rem;
    color: #444;
}
.avantages-section h4, .avantages-section p {
    color: #fff;
}

/* Bénéfices section */
.benefices-section {
    background: #f3f8fa;
    padding: 2.5rem 1rem 2.5rem 1rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    border-radius: 0 0 24px 24px;
    margin-bottom: 2.5rem;
}
.benefice-card {
    background: none;
    width: 260px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
}
.benefice-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}
.benefice-card h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.benefice-card p {
    font-size: 0.98rem;
    color: #444;
}

.tarifs-section {
    max-width: 1350px;
    margin: 0 auto 2.5rem auto;
    padding: 1.5rem 1rem;
}
.tarifs-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}
.tarifs-title-underline {
    width: 100px;
    height: 3px;
    background: #111;
    margin: 0 auto 2.2rem auto;
    border-radius: 2px;
}
.tarifs-grid {
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: nowrap !important;
    overflow-x: unset;
    min-width: 0;
    width: 100%;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
}

.tarif-card {
    background: #faf9f7;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(17,17,17,0.07);
    padding: 1.7rem 1.1rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    min-width: 200px;
    transition: box-shadow 0.2s, border 0.2s, transform 0.15s;
    margin-bottom: 0.5rem;
    min-height: 400px;
}

/* Suppression du style de scrollbar */
.tarifs-grid::-webkit-scrollbar,
.tarifs-grid::-webkit-scrollbar-thumb,
.tarifs-grid::-webkit-scrollbar-track {
    display: none;
}
.tarif-card:hover {
    box-shadow: 0 8px 32px rgba(230,124,0,0.13);
    border-color: #e67c00;
    transform: translateY(-4px) scale(1.03);
    background: #fffbe9;
}
.tarif-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 0.7rem;
}
.tarif-destination {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #222;
    font-weight: 500;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.tarif-euro {
    font-size: 1rem;
    color: #e67c00;
    margin-bottom: 0.1rem;
    font-weight: 500;
}
.tarif-prix {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111;
    margin-left: 0.2rem;
}
.tarif-details {
    font-size: 0.93rem;
    color: #888;
    text-align: center;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.2rem;
    width: 100%;
}
.tarif-details:last-of-type {
    border-bottom: none;
    margin-bottom: 0.7rem;
}
.tarif-btn {
    background: #e67c00;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.7rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(230,124,0,0.07);
    letter-spacing: 0.5px;
}
.tarif-btn:hover {
    background: #b85c00;
    color: #fff;
    box-shadow: 0 4px 16px rgba(230,124,0,0.13);
}

@media (max-width: 1100px) {
    .vehicules-grid, .benefices-section {
        gap: 1.2rem;
    }
    .avantages-section {
        gap: 1.2rem;
    }
    .tarifs-grid {
        gap: 1.2rem;
    }
}
@media (max-width: 900px) {
    main {
        max-width: 100%;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .vehicules-grid, .benefices-section {
        flex-direction: column;
        align-items: center;
    }
    .vehicule-card, .benefice-card {
        width: 95vw;
        max-width: 350px;
    }
    .avantage-row {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        max-width: 95vw;
    }
    .avantage-text {
        align-items: center;
    }
    .avantage-text h4, .avantage-text p {
        text-align: center;
    }
    .avantage-icon {
        margin-bottom: 0.5rem;
    }
    .logo-block {
        margin-bottom: 1rem;
    }
    .site-logo {
        max-width: 180px;
        max-height: 90px;
    }
    .navbar-logo img {
        height: 32px;
    }
    .tarifs-grid {
        flex-direction: column !important;
        align-items: center;
        min-width: unset;
    }
    .tarif-card {
        width: 95vw;
        max-width: 350px;
    }
    .carousel-images {
        height: 320px;
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .about h2, .pricing h2, .contact h2 {
        font-size: 1.3rem;
    }
    .pricing, .contact form {
        padding: 1rem 0.5rem;
    }
    .carousel-images {
        height: 180px;
        max-width: 99vw;
    }
} 

.reservation-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.reservation-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(17,17,17,0.07);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    max-width: 420px;
    margin: 2rem auto;
}
#reservation-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
#reservation-form input,
#reservation-form select,
#reservation-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    background: #faf9f7;
    color: #222;
    box-shadow: 0 2px 8px rgba(17,17,17,0.04);
    transition: border 0.2s;
}
#reservation-form input:focus,
#reservation-form select:focus,
#reservation-form textarea:focus {
    border-color: #e67c00;
    outline: none;
}
#reservation-form label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.3rem;
    display: block;
}
#reservation-form .form-row {
    display: flex;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 0.7rem;
}
#reservation-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.2rem;
}
.reservation-btn {
    width: 100%;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.2rem;
    box-shadow: 0 4px 18px rgba(229,57,53,0.10);
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}
.reservation-btn:hover {
    background: #b71c1c;
}
#reservation-form input[type="checkbox"] {
    width: auto;
    margin-left: 0.7rem;
    accent-color: #e67c00;
}

@media (max-width: 600px) {
    .reservation-card {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
} 

::selection {
    background: #e67c00;
    color: #fff;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e67c00;
}

.footer-social a:hover {
    color: #e67c00;
} 

.carousel-img-small {
    width: 70%;
    height: auto;
    max-height: 70%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
} 

.avantages-section-bg {
    background: #222;
    padding: 2.5rem 0;
} 

.tarifs-section-group {
    margin-bottom: 3rem;
}

.tarifs-sous-titre {
    text-align: center;
    margin-bottom: 1rem;
    color: #ff6600;
    font-size: 1.5rem;
    letter-spacing: 1px;
} 

.people-counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    margin: 0.7rem 0 0.5rem 0;
    flex-wrap: wrap;
}
.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    max-width: 120px;
    flex: 1 1 110px;
    margin-bottom: 0.2rem;
}
.counter-icon {
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
}
.counter-label {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.4rem;
    font-weight: 500;
    text-align: center;
    min-height: 2.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.counter-btn {
    background: #faf9f7;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
    color: #e67c00;
    cursor: pointer;
    margin: 0 0.2rem;
    transition: background 0.2s, border 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.counter-btn:hover {
    background: #ffe5b2;
    border-color: #e67c00;
}
.counter-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0.3rem;
    min-width: 18px;
    display: inline-block;
    text-align: center;
}
.reservation-btn {
    background: #e67c00 !important;
    color: #111 !important;
    border: none;
    border-radius: 10px;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.2rem;
    box-shadow: 0 4px 18px rgba(230,124,0,0.10);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}
.reservation-btn:hover {
    background: #ffb84d !important;
    color: #222 !important;
} 

.awesomplete {
    width: 100%;
}
.awesomplete ul, .awesomplete > ul {
    background: #fff !important;
    border: 2px solid #e67c00 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 18px rgba(230,124,0,0.08) !important;
    padding: 0.3rem 0 !important;
}
.awesomplete li, .awesomplete > ul > li {
    color: #111 !important;
    font-size: 1.08rem !important;
    padding: 0.5rem 1.2rem !important;
    cursor: pointer !important;
    transition: background 0.18s, color 0.18s !important;
    background: #fff !important;
}
.awesomplete li[aria-selected="true"], .awesomplete > ul > li[aria-selected="true"],
.awesomplete li:hover, .awesomplete > ul > li:hover {
    background: #ffe5b2 !important;
    color: #e67c00 !important;
}
.awesomplete mark, .awesomplete > ul > li mark {
    background: none !important;
    color: #e67c00 !important;
    font-weight: bold !important;
} 

.phone-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}
.phone-row select {
    min-width: 100px;
    max-width: 120px;
    padding: 0.5rem 0.7rem 0.5rem 0.7rem;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    font-size: 1.13rem;
    font-weight: bold;
    background: #faf9f7;
    color: #222;
    transition: border 0.2s;
    text-align: left;
    letter-spacing: 1px;
}
.phone-row select:focus {
    border-color: #e67c00;
    outline: none;
}
.phone-row input[type="tel"] {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.15rem;
    background: #faf9f7;
    color: #222;
    box-shadow: 0 2px 8px rgba(17,17,17,0.04);
    transition: border 0.2s;
    font-weight: 500;
    letter-spacing: 1px;
}
.phone-row {
    align-items: center;
} 

.layout-sticky-footer {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.layout-sticky-footer main {
    flex: 1;
} 


#map {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border: none;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
