/* Variables globales */
:root {
    --color-primary: #2A0A2A;      /* Violet foncé */
    --color-secondary: #4A1F4A;    /* Violet moyen */
    --color-accent: #8A2BE2;       /* Violet vif */
    --color-white: #ffffff;        /* Blanc */
    --color-light-gray: #F5F0F5;   /* Gris violacé très clair */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-primary);
}

/* Header et Navigation */
.header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo Styles */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo i {
    font-size: 2.8rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1;
}

.service-name {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
    background: rgba(var(--secondary-color-rgb), 0.1);
}

/* Buttons in Navigation */
.choose-limo-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: var(--secondary-color);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.choose-limo-btn i {
    font-size: 1.2rem;
}

.choose-limo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--secondary-color-rgb), 0.3);
}

#chooseBookingBtn {
    background: var(--primary-color);
}

#chooseBookingBtn:hover {
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Scrolled Navigation State */
.nav.scrolled {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Pourquoi nous choisir */
.why-us {
    padding: 5rem 2rem;
    background: var(--color-light-gray);
}

.why-us h2 {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

/* Section Vidéo */
.video-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 2rem;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.rating-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    color: #FBC02D;
    font-size: 1.2rem;
}

.review-count {
    color: var(--text-color);
    font-size: 0.9rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.google-badge:hover {
    transform: translateY(-2px);
}

.google-badge img {
    height: 24px;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.review-card {
    flex: 0 0 400px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.3rem;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--secondary-color);
    color: white;
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .google-rating {
        flex-direction: column;
        gap: 1rem;
    }

    .review-card {
        flex: 0 0 300px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: white;
}

/* Newsletter Section */
.footer-newsletter {
    background-color: var(--secondary-color);
    padding: 3rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    flex: 0 0 450px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 50px;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: white;
    color: var(--secondary-color);
}

/* Footer Main */
.footer-main {
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-cta {
    margin-top: 2rem;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.contact-hours {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-methods i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex: 0 0 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-payments {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-methods {
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .choose-limo-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .service-name {
        font-size: 0.9rem;
    }

    .logo i {
        font-size: 2.2rem;
    }
}

/* Footer Stats Section */
.footer-stats {
    background-color: var(--secondary-color);
    padding: 3rem 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Animation des chiffres */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
    }
}

/* Partners Section Styles */
.partners-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.partners-slider {
    position: relative;
    margin: 3rem 0;
    padding: 0 2rem;
}

.partners-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    cursor: grab;
}

.partner-item {
    flex: 0 0 250px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

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

.partner-hover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.partner-name {
    font-weight: 500;
    color: var(--primary-color);
}

.partner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.partner-nav:hover {
    background: var(--secondary-color);
    color: white;
}

.partner-nav.prev {
    left: 0;
}

.partner-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .partner-item {
        flex: 0 0 200px;
    }
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.reason-card h3 {
    margin: 1rem 0;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.reason-card .btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Styles pour le sélecteur d'activités */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.activity-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.activity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--color-primary);
}

.activity-content p {
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.activity-price {
    background: var(--color-light-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.activity-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;    
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.9rem;
}

.activity-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

/* Media queries pour le sélecteur d'activités */
@media (max-width: 1200px) {
    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation pour le menu d'activités */
.limo-menu {
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.limo-menu.active {
    transform: translateY(0);
}

.limo-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.limo-overlay.active {
    opacity: 1;
}

/* Styles pour le formulaire de réservation */
.booking-wrapper {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.booking-header {
    background: #D4AF37;
    color: white;
    padding: 30px;
    text-align: center;
}

.booking-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.booking-form {
    padding: 30px;
}

.form-section {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn-submit {
    background: #D4AF37;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background: #B4941F;
}

/* Responsive design */
@media (max-width: 768px) {
    .booking-wrapper {
        padding: 60px 15px;
    }

    .booking-header {
        padding: 20px;
    }

    .booking-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
}

/* Styles pour le header et footer légers */
.footer-light {
    background: #f8f9fa;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-light .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-light .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-light .footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-light .footer-info p {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.footer-light .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-light .contact-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.footer-light .contact-details i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.footer-light .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

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

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

.footer-light .footer-links a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-light .footer-links a:hover {
    color: var(--color-accent);
}

.footer-light .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-light .footer-bottom p {
    color: var(--color-secondary);
    margin: 0;
}

.footer-light .footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-light .footer-legal a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-light .footer-legal a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .footer-light .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-light .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-light .footer-legal {
        justify-content: center;
    }
}