/* style.css */
:root {
    /* Thème clair (défaut) */
    --primary: #ed1b24;
    --primary-dark: #c91820;
    --dark: #f5f5f5;
    --dark-light: #ffffff;
    --gray: #e8e8e8;
    --gray-light: #d4d4d4;
    --white: #1a1a1a;
    --white-off: #4a4a4a;
    --gradient: linear-gradient(135deg, var(--primary), #c91820);
    --shadow: 0 20px 40px rgba(0,0,0,0.1);
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.05);
    --border: rgba(0,0,0,0.1);
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --bg-secondary: #f0f0f0;
}

 [data-theme="dark"] {
    /* Thème sombre */
    --primary: #ed1b24;
    --primary-dark: #c91820;
    --dark: #000000;
    --dark-light: #141414;
    --gray: #383838;
    --gray-light: #4a4a4a;
    --white: #FFFFFF;
    --white-off: #CCCCCC;
    --gradient: linear-gradient(135deg, var(--primary), #c91820);
    --shadow: 0 20px 40px rgba(0,0,0,0.3);
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.2);
    --border: rgba(255,255,255,0.1);
    --card-bg: #2a2a2a;
    --input-bg: #2a2a2a;
    --bg-secondary: #383838;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, .logo, .btn {
    font-family: 'montserrat', sans-serif;
}

.gradient-text {
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--dark-rgb), 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: background 0.3s ease;
}

[data-theme="light"] .navbar {
    background: rgba(245,245,245,0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--white-off);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-cta {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(237,27,36,0.3);
    background: var(--primary-dark);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.theme-toggle:hover {
    border-color: var(--primary);
}

.theme-toggle i {
    font-size: 1.1rem;
    color: var(--white-off);
    transition: color 0.3s;
}

.theme-toggle .fa-sun {
    color: #f39c12;
}

.theme-toggle .fa-moon {
    color: var(--primary);
}

.theme-toggle.active .fa-sun {
    color: var(--primary);
}

.theme-toggle.active .fa-moon {
    color: var(--white-off);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 24px 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(237,27,36,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(237,27,36,0.1);
    border: 1px solid rgba(237,27,36,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    /* color: var(--white-off); */
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(237,27,36,0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--white-off);
}

.hero-image {
    position: relative;
}

.floating-car {
    font-size: 12rem;
    animation: float 3s ease-in-out infinite;
    text-align: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-card {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: rgba(56,56,56,0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 24px;
    border: 1px solid var(--border);
}

[data-theme="light"] .hero-card {
    background: rgba(255,255,255,0.9);
}


/* Hero Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomSlow 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

/* Animation de zoom lent sur l'arrière-plan */
@keyframes zoomSlow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Ajustement du contenu hero pour être au-dessus de l'arrière-plan */
.hero {
    position: relative;
    z-index: 1;
}

.hero-content, .hero-image {
    position: relative;
    z-index: 2;
}

/* Effet de brillance sur l'arrière-plan */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 40%, rgba(237,27,36,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

[data-theme="light"] .hero-background::after {
    background: radial-gradient(circle at 20% 40%, rgba(237,27,36,0.08) 0%, transparent 70%);
}

/* Effet de parallaxe au scroll */
@media (min-width: 768px) {
    .hero-bg-image {
        transition: transform 0.1s ease-out;
    }
}

/* Amélioration du contraste pour le texte sur l'image */
.hero-badge {
    backdrop-filter: blur(4px);
}

.hero h1, .hero p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

[data-theme="light"] .hero h1{
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Version mobile */
@media (max-width: 768px) {
    .hero-background {
        position: absolute;
    }
    
    .hero-bg-image {
        object-position: 30% center;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--white-off);
    max-width: 600px;
    margin: 0 auto;
}

/* Vehicles Grid */
.vehicles {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.vehicle-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-light), var(--gray));
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image i {
    font-size: 5rem;
    color: var(--primary);
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vehicle-info {
    padding: 24px;
    height: 50vh;
}

.vehicle-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.vehicle-category {
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.vehicle-desc {
    color: var(--white-off);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vehicle-features span {
    background: var(--gray);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--white-off);
}

.vehicle-features i {
    color: var(--primary);
    margin-right: 4px;
    font-size: 0.65rem;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.per-day {
    color: var(--white-off);
    font-size: 0.8rem;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 27, 36, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(237,27,36,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--white-off);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border);
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--white-off);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--white-off);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--card-bg);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--border);
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--white-off);
    margin-bottom: 32px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white-off);
}

.contact-details i {
    width: 32px;
    color: var(--primary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    margin-bottom: 16px;
    font-family: 'montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white-off);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--white-off);
    font-size: 0.8rem;
}

/* Reservation Page */
.reservation-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.reservation-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--border);
}

.reservation-header {
    text-align: center;
    margin-bottom: 40px;
}

.reservation-header h1 {
    margin-bottom: 12px;
}

.reservation-header p {
    color: var(--white-off);
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-family: 'montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group.checkbox input {
    width: auto;
}

.price-summary {
    background: var(--gray);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
}

.summary-title {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--white-off);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-family: 'montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

/* Success Message */
.success-message {
    text-align: center;
    /* max-width: 600px; */
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 32px;
    padding: 10px;
    border: 1px solid var(--border);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.reservation-details {
    background: var(--gray);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.detail-label {
    color: var(--white-off);
}

.detail-value {
    font-weight: 700;
}

.detail-value.highlight {
    color: var(--primary);
    font-size: 1.2rem;
}

.payment-instructions {
    text-align: left;
    background: var(--gray);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}

.payment-instructions h3 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wave-number {
    background: var(--card-bg);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-family: montserrat;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 16px 0;
    color: var(--primary);
}

.payment-steps {
    margin: 20px 0;
}

.step {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.payment-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Hero Image - Voiture */
.hero-car-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(237,27,36,0.2));
    transition: transform 0.3s ease;
}

.hero-car-image:hover {
    transform: scale(1.02);
}

.floating-car {
    text-align: center;
    padding: 20px;
}

/* Vehicle Images */
.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.vehicle-image i {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
}

/* ==================== BOUTON LOCALISATION ==================== */
.location-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.location-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.location-btn:hover {
    background: var(--hover-bg);
    transform: scale(1.05);
}

.location-btn:hover i {
    transform: translateY(-2px);
}

/* ==================== MODAL LOCALISATION ==================== */
.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.location-modal-content {
    background: var(--card-bg);
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
    border: 1px solid var(--border);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.location-modal-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.location-modal-header h3 i {
    color: var(--primary);
}

.location-modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--white-off);
}

.location-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.location-modal-body {
    padding: 24px;
}

.location-address {
    display: flex;
    gap: 16px;
    background: var(--gray);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.location-address i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
}

.location-address strong {
    font-size: 1rem;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.location-address .address-note {
    font-size: 0.8rem;
    color: var(--white-off);
    display: block;
    margin-top: 6px;
}

.location-map-container {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.location-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-maps {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s;
}

.btn-maps:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-maps i {
    font-size: 1.1rem;
}

.location-hours {
    background: var(--gray);
    padding: 20px;
    border-radius: 16px;
}

.location-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.location-hours h4 i {
    color: var(--primary);
}

.location-hours ul {
    list-style: none;
    padding: 0;
}

.location-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--white-off);
}

.location-hours li:last-child {
    border-bottom: none;
}

.location-hours li span {
    font-weight: 600;
    color: var(--white);
}

/* ==================== SERVICES HERO ==================== */
.hero-services {
    margin: 32px 0 24px;
}

.service-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-service i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.btn-service:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 27, 36, 0.3);
}

.btn-service:hover i {
    color: var(--white);
    transform: scale(1.1);
}

/* ==================== PAGES SERVICE ==================== */
.service-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.service-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-header p {
    color: var(--white-off);
    font-size: 1.1rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card, .contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
}

.info-card h3, .contact-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--white-off);
}

.info-card li i {
    color: var(--primary);
    width: 20px;
}

.contact-card p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white-off);
}

.contact-card p i {
    width: 24px;
    color: var(--primary);
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.service-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
}

.service-form-container h2 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-form-container > p {
    color: var(--white-off);
    margin-bottom: 24px;
}

.service-form {
    margin-top: 24px;
}

.service-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-form .form-group {
    margin-bottom: 20px;
}

.service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.service-form input, 
.service-form select, 
.service-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
}

.success-message-form, .error-message-form {
    text-align: center;
    padding: 40px 20px;
}

.success-message-form i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 16px;
}

.success-message-form h3 {
    margin-bottom: 12px;
}

.success-message-form p {
    margin-bottom: 24px;
    color: var(--white-off);
}

.error-message-form {
    background: rgba(255,92,92,0.1);
    border: 1px solid var(--error);
    color: var(--error);
    border-radius: 12px;
    margin-bottom: 24px;
}

/* Logo cliquable */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-link img {
    height: 45px;
    width: auto;
}

.logo-link span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo-link .accent {
    color: var(--primary);
}

/* Styles pour l'upload de fichier */
.form-group input[type="file"] {
    padding: 10px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    margin-right: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: var(--primary-dark);
}

.form-group small {
    display: block;
    font-size: 0.7rem;
    color: var(--white-off);
    margin-top: 5px;
}

/* Styles pour les véhicules indisponibles */
.vehicle-card.vehicle-unavailable {
    opacity: 0.85;
    position: relative;
}

.vehicle-card.vehicle-unavailable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

[data-theme="light"] .vehicle-card.vehicle-unavailable::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Badge disponible */
.badge-available {
    background: rgba(61, 214, 140, 0.9);
    color: #1a1a1a;
}

/* Badge indisponible */
.badge-unavailable {
    background: rgba(255, 92, 92, 0.9);
    color: #ffffff;
}

/* Bouton de réservation actif */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237,27,36,0.3);
}

/* Bouton de réservation désactivé */
.btn-book-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gray);
    border: 1px solid var(--border);
    color: var(--white-off);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
    width: 100%;
}

.btn-book-disabled i {
    font-size: 0.9rem;
}

/* Version thème clair */
[data-theme="light"] .badge-available {
    background: rgba(61, 214, 140, 0.95);
    color: #1a1a1a;
}

[data-theme="light"] .badge-unavailable {
    background: rgba(255, 92, 92, 0.95);
    color: #ffffff;
}

[data-theme="light"] .btn-book-disabled {
    background: #e0e0e0;
    color: #999;
}

/* Effet de flou sur l'image des véhicules indisponibles */
.vehicle-card.vehicle-unavailable .vehicle-img {
    filter: grayscale(0.3);
}


/* Hero Card modernisé */
.hero-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.hero-card:hover {
    transform: translateY(-5px);
    background: rgba(237, 27, 36, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-card:hover .card-badge {
    transform: translateX(5px);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: rgba(237, 27, 36, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.hero-card:hover .card-icon i {
    color: var(--white);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.card-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.card-badge {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-badge i {
    font-size: 0.8rem;
    color: var(--white);
}

/* Version thème clair */
[data-theme="light"] .hero-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .card-title {
    color: var(--dark);
}

[data-theme="light"] .card-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .card-icon {
    background: rgba(237, 27, 36, 0.1);
}

[data-theme="light"] .card-badge {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .card-badge i {
    color: var(--dark);
}


/* Hero Card avec animation de pulsation */
.animated-card {
    position: relative;
    overflow: hidden;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(237,27,36,0.3) 0%, transparent 70%);
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s infinite;
    pointer-events: none;
}

/* Dropdown Menu Styles */
.nav-links li.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow);
    list-style: none;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--white-off);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu li a i {
    width: 20px;
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--hover-bg);
    color: var(--white);
    padding-left: 24px;
}

.dropdown-menu li a:hover i {
    transform: translateX(3px);
}

/* Flèche de pointeur */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--card-bg);
    pointer-events: none;
}

/* Version thème clair */
[data-theme="light"] .dropdown-menu {
    background: var(--card-bg);
    border-color: var(--border);
}

[data-theme="light"] .dropdown-menu li a {
    color: var(--white-off);
}

[data-theme="light"] .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Version mobile responsive - version améliorée */
@media (max-width: 768px) {
    .nav-links, .nav-right {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 20px;
        z-index: 999;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    .nav-right.active {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        padding: 20px;
        z-index: 999;
        border-top: 1px solid var(--border);
        justify-content: center;
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Centrage des éléments en mobile */
    .nav-links.active li {
        text-align: center;
        width: 100%;
    }
    
    .nav-links.active a {
        display: block;
        padding: 12px;
        font-size: 1.1rem;
    }
    
    /* Dropdown en mobile - centré */
    .nav-links.active .dropdown {
        text-align: center;
    }
    
    .nav-links.active .dropdown-trigger {
        justify-content: center;
        padding: 12px;
    }
    
    .nav-links.active .dropdown-menu {
        position: static;
        background: var(--gray);
        margin-top: 10px;
        padding: 10px;
        text-align: center;
        display: none;
        border-radius: 12px;
    }
    
    .nav-links.active .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .nav-links.active .dropdown-menu li a {
        justify-content: center;
        padding: 10px;
    }
    
    /* Centrage du bouton CTA en mobile */
    .nav-right.active .btn-cta {
        width: auto;
        min-width: 200px;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    /* Centrage du contenu hero */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Centrage des sections */
    .section-header {
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }
    
    .contact-details div {
        justify-content: center;
    }
    
    /* Centrage des formulaires */
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-container {
        padding: 24px;
    }
    
    .payment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    /* Centrage des boutons de service */
    .service-buttons {
        justify-content: center;
    }
    
    /* Centrage des cartes */
    .vehicles-grid,
    .services-grid,
    .testimonials-grid {
        justify-items: center;
    }
    
    .vehicle-card,
    .service-card,
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    
    /* Centrage du footer */
    .footer-content {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Centrage général des éléments */
.container {
    text-align: center;
}

.container > * {
    text-align: left;
}

.section-header {
    text-align: center;
}

.vehicles-grid,
.services-grid,
.testimonials-grid {
    justify-items: center;
}

.vehicle-card,
.service-card,
.testimonial-card {
    width: 100%;
}


/* Responsive - Version mobile */
/* ==================== RESPONSIVE MOBILE CORRIGÉ ==================== */
@media (max-width: 768px) {
    /* Cacher les éléments par défaut */
    .nav-links {
        display: none;
    }
    
    /* Ne PAS cacher .btn-cta ici car il est dans nav-right */
    .menu-toggle {
        display: block;
        z-index: 1000;
        cursor: pointer;
    }
    
    /* Menu mobile qui s'affiche quand actif */
    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 20px;
        z-index: 999;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    /* Afficher nav-right en bas quand actif */
    .nav-right.active {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        padding: 20px;
        z-index: 999;
        border-top: 1px solid var(--border);
        justify-content: center;
        animation: slideUp 0.3s ease;
    }
    
    /* Styles des liens du menu mobile */
    .nav-links.active li {
        text-align: center;
        width: 100%;
        list-style: none;
    }
    
    .nav-links.active a {
        display: block;
        padding: 12px;
        font-size: 1.1rem;
        color: var(--white);
        text-decoration: none;
    }
    
    .nav-links.active a:hover {
        color: var(--primary);
    }
    
    /* Dropdown en mobile */
    .nav-links.active .dropdown {
        text-align: center;
    }
    
    .nav-links.active .dropdown-trigger {
        justify-content: center;
        padding: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    
    .nav-links.active .dropdown-menu {
        position: static;
        background: var(--gray);
        margin-top: 10px;
        padding: 10px;
        text-align: center;
        display: none;
        border-radius: 12px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .nav-links.active .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .nav-links.active .dropdown-menu li a {
        justify-content: center;
        padding: 10px;
    }
    
    /* Animation du dropdown en mobile */
    .dropdown-trigger i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.open .dropdown-trigger i {
        transform: rotate(180deg);
    }
    
    /* Bouton CTA en mobile */
    .nav-right.active .btn-cta {
        display: inline-flex !important;
        width: auto;
        min-width: 200px;
        text-align: center;
    }
    
    /* Animation pour l'apparition du menu */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Centrage du contenu hero */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Centrage des sections */
    .section-header {
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }
    
    .contact-details div {
        justify-content: center;
    }
    
    /* Centrage des formulaires */
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-container {
        padding: 24px;
    }
    
    .payment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    /* Centrage des boutons de service */
    .service-buttons {
        justify-content: center;
    }
    
    /* Centrage des cartes */
    .vehicles-grid,
    .services-grid,
    .testimonials-grid {
        justify-items: center;
    }
    
    .vehicle-card,
    .service-card,
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    
    /* Centrage du footer */
    .footer-content {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Hero card responsive */
    .hero-card {
        bottom: 10px;
        left: 10px;
        padding: 12px 16px;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 0.8rem;
    }
    
    .card-subtitle {
        font-size: 0.6rem;
    }
    
    .card-badge {
        width: 25px;
        height: 25px;
    }
    
    /* Boutons */
    .btn-book, .btn-book-disabled {
        width: 100%;
        justify-content: center;
    }
    
    .logo-link img {
        height: 35px;
    }
    
    .logo-link span {
        font-size: 1.2rem;
    }
    
    /* Location modal */
    .location-btn {
        padding: 4px;
        margin-left: 4px;
    }
    
    .location-btn i {
        font-size: 1rem;
    }
    
    .location-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-hours li {
        flex-direction: column;
        gap: 4px;
    }
    
    .location-address {
        flex-direction: column;
        text-align: center;
    }
    
    .location-address i {
        margin: 0 auto;
    }
}

/* Version tablette */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

.animated-card:hover .pulse-ring {
    animation: none;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-card {
        bottom: 10px;
        left: 10px;
        padding: 12px 16px;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 0.8rem;
    }
    
    .card-subtitle {
        font-size: 0.6rem;
    }
    
    .card-badge {
        width: 25px;
        height: 25px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .btn-book, .btn-book-disabled {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .logo-link img {
        height: 35px;
    }
    
    .logo-link span {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-info {
        order: 2;
    }
    
    .service-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .service-page {
        padding: 100px 0 60px;
    }
    
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .service-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-services {
        margin: 24px 0 20px;
    }
    
    .service-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .btn-service {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .btn-service i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-service {
        justify-content: center;
        padding: 10px 20px;
    }
}

/* Version responsive */
@media (max-width: 768px) {
    .location-btn {
        padding: 4px;
        margin-left: 4px;
    }
    
    .location-btn i {
        font-size: 1rem;
    }
    
    .location-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-hours li {
        flex-direction: column;
        gap: 4px;
    }
    
    .location-address {
        flex-direction: column;
        text-align: center;
    }
    
    .location-address i {
        margin: 0 auto;
    }
}

/* Animation flottante */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive pour l'image */
@media (max-width: 768px) {
    .hero-car-image {
        max-width: 280px;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
}

/* Version thème clair - ajustement de l'ombre */
[data-theme="light"] .hero-car-image {
    filter: drop-shadow(0 20px 30px rgba(237,27,36,0.15));
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .btn-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-container {
        padding: 24px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .nav-right {
        gap: 12px;
    }
}