/* Variables CSS */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #C69F57;
    --accent-color: #D4B068;
    --accent-light: #E0C080;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

/* Footer Logo */
.footer-brand {
    text-align: left;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

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

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-phone:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    animation: rotate3D 1.5s ease-out forwards;
}

@keyframes rotate3D {
    0% {
        transform: rotateY(0deg) scale(0.5);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: rotateY(360deg) scale(1);
        opacity: 1;
    }
}

/* Hero Tagline */
.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Hero Phone */
.hero-phone {
    margin: 2rem 0;
}

.hero-phone a {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 2px;
    transition: var(--transition);
}

.hero-phone a:hover {
    color: var(--secondary-color);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 0; top: 10px; }
    50% { opacity: 1; top: 20px; }
    100% { opacity: 0; top: 30px; }
}

/* Section Commune */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

/* Ensure all main sections stay in their stacking context */
section {
    position: relative;
    z-index: 1;
    background: inherit;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Section Inclus */
.inclus {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

.inclus-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.inclus-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.inclus-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.inclus-item:hover .inclus-icon {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.inclus-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.inclus-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

@media (max-width: 480px) {
    .inclus-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-phone a {
        font-size: 2rem;
    }
}

/* Avantages */
.advantages {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.advantages-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.advantage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.advantage-item p {
    color: var(--text-light);
}

/* Véhicules Section - Carousel */
.vehicules-carousel {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.vehicule-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-white);
    min-height: 500px;
}

.vehicule-showcase-image {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    overflow: hidden;
}

.vehicule-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-slide.active .vehicule-showcase-image img {
    transform: scale(1.05);
}

.vehicule-showcase-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicule-number {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.vehicule-showcase-content .vehicule-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.vehicule-showcase-content .vehicule-category {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.vehicule-specs-large {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.spec-item svg {
    color: var(--secondary-color);
    stroke: var(--secondary-color);
}

.vehicule-showcase-content .vehicule-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vehicule-showcase-content .btn {
    align-self: flex-start;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--bg-white);
}

.carousel-btn:hover svg {
    stroke: var(--bg-white);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: var(--text-light);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Carousel Progress Bar */
.carousel-progress {
    height: 3px;
    background: var(--border-color);
    margin-top: 1.5rem;
    border-radius: 3px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: var(--secondary-color);
    width: 0%;
    transition: width 0.1s linear;
}

/* Legacy grid styles (kept for other pages if needed) */
.vehicules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vehicule-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vehicule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vehicule-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicule-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicule-card:hover .vehicule-image img {
    transform: scale(1.1);
}

.vehicule-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.vehicule-badge.premium {
    background: var(--secondary-color);
}

.vehicule-badge.vvip {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.vehicule-content {
    padding: 1.5rem;
}

.vehicule-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.vehicule-category {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.vehicule-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.vehicule-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Minimal Vehicle Carousel */
.vehicules-carousel.minimal {
    position: relative;
}

.vehicules-carousel.minimal .carousel-container {
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.vehicule-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 5rem;
}

.vehicule-minimal-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.vehicule-minimal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Side Navigation Buttons */
.vehicules-carousel.minimal .carousel-btn.prev,
.vehicules-carousel.minimal .carousel-btn.next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;
}

.vehicules-carousel.minimal .carousel-btn.prev {
    left: 0;
}

.vehicules-carousel.minimal .carousel-btn.next {
    right: 0;
}

.vehicules-carousel.minimal .carousel-nav {
    justify-content: center;
}

.vehicules-carousel.minimal .carousel-nav .carousel-btn {
    position: absolute;
}

.carousel-slide.active .vehicule-minimal-image img {
    animation: slideInCar 0.8s ease-out;
}

@keyframes slideInCar {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.vehicule-minimal-info {
    margin-top: 2rem;
    max-width: 600px;
}

.vehicule-badge-inline {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.vehicule-badge-inline.premium {
    background: var(--secondary-color);
}

.vehicule-minimal-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vehicule-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.vehicule-specs-inline {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.vehicule-specs-inline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.vehicule-specs-inline svg {
    color: var(--secondary-color);
    stroke: var(--secondary-color);
}

.vehicule-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vehicule-minimal-info .btn {
    padding: 0.875rem 2.5rem;
}

/* Carousel Responsive */
@media (max-width: 992px) {
    .vehicule-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .vehicule-showcase-image {
        height: 300px;
    }
    
    .vehicule-showcase-content {
        padding: 2rem;
    }
    
    .vehicule-showcase-content .vehicule-title {
        font-size: 2rem;
    }
    
    .vehicule-minimal-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .vehicule-showcase-image {
        height: 250px;
    }
    
    .vehicule-showcase-content {
        padding: 1.5rem;
    }
    
    .vehicule-showcase-content .vehicule-title {
        font-size: 1.75rem;
    }
    
    .vehicule-specs-large {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav {
        gap: 1rem;
    }
    
    .vehicule-minimal {
        padding: 1rem;
    }
    
    .vehicule-minimal-info h3 {
        font-size: 1.75rem;
    }
    
    .vehicule-specs-inline {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Tarifs Section */
.tarifs {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.tarif-card {
    display: flex;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tarif-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.tarif-image {
    width: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-light);
}

.tarif-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.tarif-content {
    flex: 1;
    padding: 1.5rem;
}

.tarif-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.tarif-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.tarif-section {
    margin-bottom: 1rem;
}

.tarif-section:last-child {
    margin-bottom: 0;
}

.tarif-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.tarif-row span:first-child {
    color: var(--text-color);
}

.tarif-price {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    white-space: nowrap;
}

/* Réservation Section */
.reservation {
    background: var(--bg-light);
}

.reservation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

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

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

.reservation-cards .cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 2.5rem;
}

.reservation-cards .cta-card h3 {
    color: var(--bg-white);
}

.reservation-cards .cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-icon svg {
    stroke: var(--bg-white);
}

.reservation-cards .cta-card .btn-primary {
    margin-top: auto;
}

.reservation-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Address Autocomplete */
.address-autocomplete {
    position: relative;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: var(--shadow-hover);
}

.autocomplete-item {
    padding: 0.875rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: var(--bg-light);
}

.autocomplete-main {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.autocomplete-secondary {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.autocomplete-item:hover .autocomplete-main,
.autocomplete-item.active .autocomplete-main {
    color: var(--secondary-color);
}

.form-divider {
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-large {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.5rem 0;
}

/* Contact Section */
.contact {
    background: var(--primary-color);
    color: var(--bg-white);
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    margin-top: 3rem;
    text-align: center;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    list-style: none;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-top: 80px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Service Detail Page */
.service-detail {
    padding: 5rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

.service-detail-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Included Features */
.included-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Duration Options */
.duration-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.duration-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.duration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.duration-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.duration-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.duration-card span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    background: var(--bg-white);
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pricing-card .price-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Approach Steps */
.approach-steps {
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
}

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

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.service-feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Use Cases */
.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.use-case {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.use-case h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.use-case p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.destination-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Sidebar */
.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    border: none;
}

.sidebar-card.highlight .contact-item {
    color: var(--bg-white);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.sidebar-card.highlight h3 {
    color: var(--bg-white);
}

.sidebar-card > p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.sidebar-card.highlight > p {
    color: rgba(255, 255, 255, 0.9);
}

/* Sidebar Contact Items */
.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.sidebar-card.highlight .sidebar-contact-item {
    background: rgba(255, 255, 255, 0.15);
}

.sidebar-contact-item:hover {
    background: rgba(0, 0, 0, 0.06);
}

.sidebar-card.highlight .sidebar-contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sidebar-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.sidebar-card.highlight .sidebar-contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-contact-icon svg {
    width: 18px;
    height: 18px;
}

.sidebar-contact-text {
    display: flex;
    flex-direction: column;
}

.sidebar-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.15rem;
}

.sidebar-card.highlight .sidebar-contact-label {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-contact-value {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.sidebar-card.highlight .sidebar-contact-value {
    color: var(--bg-white);
}

.sidebar-contact-value:hover {
    color: var(--secondary-color);
}

.sidebar-card.highlight .sidebar-contact-value:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Sidebar Why Choose List */
.sidebar-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sidebar-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.sidebar-benefit-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.75rem;
}

.btn-block:last-child {
    margin-bottom: 0;
}

.vehicle-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.vehicle-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.vehicle-list li:last-child {
    border-bottom: none;
}

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

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.experience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
}

/* Destination Pages */
.destination-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.destination-route {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.destination-detail {
    padding: 5rem 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.destination-intro {
    margin-bottom: 2.5rem;
}

.destination-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.destination-intro .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.destination-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.destination-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.destination-description p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.destination-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-display {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.destinations-list {
    list-style: none;
    padding: 0;
}

.destinations-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.destinations-list li:last-child {
    border-bottom: none;
}

.destinations-list li a {
    color: var(--text-color);
    transition: var(--transition);
}

.destinations-list li a:hover {
    color: var(--secondary-color);
}

/* Destinations Index Page */
.destination-section {
    margin-bottom: 2.5rem;
}

.destination-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.destination-section h3 svg {
    color: var(--secondary-color);
    stroke: var(--secondary-color);
}

.destinations-list:not(ul) {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.destination-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.destination-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.destination-item.featured {
    border-left: 4px solid var(--secondary-color);
}

.destination-item-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.destination-details {
    font-size: 0.85rem;
    color: var(--text-light);
}

.destination-item-price {
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}

.destinations-list.compact .destination-item {
    padding: 0.75rem 1rem;
}

.destinations-list.compact .destination-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Responsive */

/* Tablette */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 2rem 0;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-phone a {
        font-size: 2.5rem;
    }
    
    .reservation-container {
        grid-template-columns: 1fr;
    }
    
    .reservation-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        display: none;
        border-radius: 8px;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        display: block;
    }
    
    /* Service pages mobile */
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        order: -1;
    }
    
    .included-features {
        grid-template-columns: 1fr;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Contact section */
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Sections */
    .services, .vehicules, .reservation, .contact {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .btn-phone {
        padding: 0.5rem;
        min-width: auto;
    }
    
    .btn-phone svg {
        width: 24px;
        height: 24px;
    }
    
    /* Footer */
    .footer-logo img {
        height: 60px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    /* Hero */
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-img {
        height: 70px;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-phone {
        margin: 1.5rem 0;
    }
    
    .hero-phone a {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Sections */
    .services, .vehicules, .reservation, .contact {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    /* Inclus */
    .inclus {
        padding: 3rem 0;
    }
    
    .inclus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .inclus-item {
        padding: 1rem;
    }
    
    .inclus-icon {
        width: 50px;
        height: 50px;
    }
    
    .inclus-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .inclus-item span {
        font-size: 0.85rem;
    }
    
    /* Véhicules */
    .vehicules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicule-title {
        font-size: 1.2rem;
    }
    
    /* Tarifs */
    .tarifs {
        padding: 3rem 0;
    }
    
    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tarif-card {
        flex-direction: column;
    }
    
    .tarif-image {
        width: 100%;
        min-width: auto;
        padding: 1.5rem;
    }
    
    .tarif-image img {
        max-height: 120px;
    }
    
    .tarif-content {
        padding: 1.25rem;
    }
    
    .tarif-title {
        font-size: 1.2rem;
    }
    
    .tarif-subtitle {
        font-size: 0.8rem;
    }
    
    .tarif-row {
        font-size: 0.85rem;
    }
    
    /* Destinations */
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .info-content p {
        font-size: 1.1rem;
    }
    
    .destination-intro h2 {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    /* Réservation */
    .reservation-sidebar {
        padding: 1.5rem;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
    
    .reservation-cards {
        grid-template-columns: 1fr;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Empêche le zoom iOS */
    }
    
    /* Contact */
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-map {
        height: 250px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Page Hero (services) */
    .page-hero {
        height: 35vh;
        min-height: 250px;
        margin-top: 60px;
    }
    
    .page-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .page-hero-content p {
        font-size: 0.95rem;
    }
    
    /* Service Detail */
    .service-detail {
        padding: 2rem 0;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem;
    }
    
    .service-detail-content .lead {
        font-size: 1rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-phone a {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .inclus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .inclus-item {
        padding: 0.75rem;
    }
    
    .inclus-icon {
        width: 40px;
        height: 40px;
    }
    
    .inclus-item span {
        font-size: 0.75rem;
    }
    
    .service-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
    }
    
    .btn-block {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* Fix pour le zoom automatique iOS sur les inputs */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Amélioration du tap target pour mobile */
@media (max-width: 768px) {
    .nav-link,
    .dropdown-menu li a,
    .footer-section ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn,
    .btn-phone {
        min-height: 44px;
    }
}

/* Orientation paysage mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-phone a {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ================================
   Destinations Index Page
   ================================ */

.destinations-index {
    padding: 4rem 0;
}

.destinations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.destinations-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.destinations-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.destinations-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary-color);
}

.category-title svg {
    color: var(--secondary-color);
}

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

.destinations-grid.popular {
    grid-template-columns: repeat(4, 1fr);
}

.destinations-grid.small {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.destination-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.destination-card.featured {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(198, 159, 87, 0.05) 100%);
    border-color: var(--secondary-color);
}

.destination-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
}

.destination-icon {
    width: 50px;
    height: 50px;
    background: rgba(198, 159, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.destination-icon svg {
    color: var(--secondary-color);
}

.destination-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.destination-card:hover h4 {
    color: var(--secondary-color);
}

.destination-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.destination-price {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.destination-card.compact {
    padding: 1rem 1.25rem;
}

.destination-card.compact h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.destinations-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.destinations-cta h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.destinations-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dropdown divider */
.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

/* Responsive Destinations Index */
@media (max-width: 1024px) {
    .destinations-grid,
    .destinations-grid.popular {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destinations-grid.small {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-index {
        padding: 3rem 0;
    }
    
    .destinations-intro h2 {
        font-size: 1.6rem;
    }
    
    .destinations-grid,
    .destinations-grid.popular {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .destinations-grid.small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .destination-card {
        padding: 1.25rem;
    }
    
    .destination-card.featured .destination-icon {
        width: 40px;
        height: 40px;
    }
    
    .destinations-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .destinations-grid,
    .destinations-grid.popular,
    .destinations-grid.small {
        grid-template-columns: 1fr;
    }
    
    .destination-card.compact {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .destination-card.compact h4 {
        margin-bottom: 0;
    }
}
