:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #A8872E;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-medium: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #B0B0B0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0,0,0,0.5);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Évite le bleu / violet par défaut des navigateurs sur les liens */
a {
    -webkit-tap-highlight-color: rgba(201, 168, 76, 0.15);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }
}

section[id],
footer#contact,
#coordonnees {
    scroll-margin-top: 100px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal-on-scroll:not(.revealed) {
    opacity: 0;
    transform: translateY(24px);
}

.reveal-on-scroll {
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero au-dessus de la ligne de flottaison : pas d’animation (évite flash / “double” visuel) */
.hero .reveal-on-scroll,
.hero .reveal-on-scroll:not(.revealed) {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll:not(.revealed) {
        opacity: 1;
        transform: none;
    }
    .reveal-on-scroll {
        transition: none;
    }
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    padding-top: max(20px, env(safe-area-inset-top));
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
    padding-top: max(12px, env(safe-area-inset-top));
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1002;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    background: linear-gradient(165deg, rgba(22, 22, 22, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.45);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.logo:hover {
    border-color: rgba(201, 168, 76, 0.65);
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.6),
        0 0 24px rgba(201, 168, 76, 0.12);
}

.logo-img {
    height: 64px;
    width: auto;
    max-width: min(260px, 52vw);
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.75));
}

@media (max-width: 480px) {
    .logo {
        padding: 6px 10px;
        border-radius: 14px;
    }

    .logo-img {
        height: 52px;
        max-width: min(220px, 62vw);
    }
}

/* Pied de page : pas de grand cadre vide — logo seul, plus lisible */
.footer .logo {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 0;
    margin-bottom: 4px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.footer .logo:hover {
    border: none;
    box-shadow: none;
    opacity: 0.88;
}

.footer .logo-img {
    height: clamp(64px, 12vw, 88px);
    width: auto;
    max-width: min(320px, 100%);
    display: block;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 20px rgba(201, 168, 76, 0.15));
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-desktop a:hover {
    color: var(--white);
}

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

.nav-desktop a:hover::after {
    width: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    padding: 88px 24px 24px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow-y: auto;
}

body.menu-open .mobile-nav {
    display: flex;
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 16px 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    outline: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition);
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

body.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.9) 30%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.9) 100%);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: animate-pulse 2s infinite;
}

@keyframes animate-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 550px;
}

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

.hero-trust-line {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badges span {
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--light-gray);
    letter-spacing: 1px;
}

/* Contact Card */
.hero-contact-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.hero-contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-contact-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-intro {
    margin-bottom: 24px !important;
    line-height: 1.5;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 8px;
    text-align: left;
}

.form-privacy {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--light-gray);
    line-height: 1.45;
    text-align: center;
}

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

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

.booking-form input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.booking-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--black-medium);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.price-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.price-item .route {
    font-weight: 500;
}

.price-item .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-price {
    border-color: rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.05);
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-gray);
    font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--black-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.test-card {
    background: var(--black-medium);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.test-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
}

.test-card .user {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float__icon {
    display: block;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--black-medium);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.faq-item h4 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.faq-item a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item a:hover {
    color: var(--gold-light);
}

.section-intro {
    max-width: 720px;
    margin: 1rem auto 0;
    padding-top: 0;
    text-align: center;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.65;
}

.section-intro strong {
    color: var(--white);
    font-weight: 600;
}

.services {
    padding: 100px 0;
    background: var(--black-light);
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-label {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--black-medium);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

.service-card.active {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,168,76,0.1);
}

/* ============================================
   FLOTTE
   ============================================ */
.fleet {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-lead {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.65;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fleet-card {
    background: var(--black-medium);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: var(--transition);
}

.fleet-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
}

.fleet-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.fleet-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ============================================
   ZONES (GEO / SEO local)
   ============================================ */
.geo-zones {
    padding: 100px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.geo-zones__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.geo-zones__col {
    background: var(--black-medium);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.geo-zones__col a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.geo-zones__col a:hover {
    color: var(--gold-light);
}

.geo-zones__h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--white);
}

.geo-zones__col p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   STICKY CTA (conversion mobile)
   ============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.sticky-cta__btn:last-child {
    border-right: none;
}

.sticky-cta__btn--call,
.sticky-cta__btn--call:link,
.sticky-cta__btn--call:visited,
.sticky-cta__btn--call:active {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.sticky-cta__btn--book,
.sticky-cta__btn--book:link,
.sticky-cta__btn--book:visited,
.sticky-cta__btn--book:active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold);
}

.sticky-cta__btn--wa,
.sticky-cta__btn--wa:link,
.sticky-cta__btn--wa:visited,
.sticky-cta__btn--wa:active {
    background: #128c7e;
    color: #fff;
}

.sticky-cta__wa-icon {
    display: block;
    flex-shrink: 0;
}

.sticky-cta__wa-icon path {
    fill: currentColor;
}

.sticky-cta__btn:hover,
.sticky-cta__btn:focus-visible {
    filter: brightness(1.08);
    outline: none;
}

.sticky-cta__btn:focus-visible {
    box-shadow: inset 0 0 0 2px var(--gold);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: grid;
    }

    .whatsapp-float {
        display: none;
    }
}

/* Menu mobile ouvert : masquer la barre du bas pour éviter superposition */
body.menu-open .sticky-cta {
    display: none;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black-medium) 0%, #222 100%);
    border-top: 1px solid rgba(201,168,76,0.2);
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    align-items: start;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer-info p {
    color: var(--light-gray);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links a:link,
.footer-links a:visited {
    text-decoration: none;
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:active {
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 12px;
    color: var(--light-gray);
}

.footer-contact a,
.footer-contact a:link,
.footer-contact a:visited,
.footer-contact a:active {
    color: var(--gold);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.footer-contact a:hover {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 3rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-trust-line { margin-left: auto; margin-right: auto; }
    .geo-zones__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: flex; }
    .services-grid, .testimonials-grid, .fleet-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-flex { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .header-contact { display: none; }

    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .section-title {
        font-size: clamp(1.55rem, 5.2vw, 2.1rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .pricing,
    .services,
    .fleet,
    .geo-zones,
    .testimonials,
    .faq {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .cta-banner {
        padding: 56px 0;
    }

    .hero-contact-card {
        padding: 24px 18px;
    }

    .hero-contact-card h3 {
        font-size: 1.45rem;
    }

    /* Champs à 16px minimum : évite le zoom automatique iOS au focus */
    .booking-form input,
    .booking-form input::placeholder {
        font-size: 16px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-item .price {
        align-self: flex-end;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-lg {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .sticky-cta__btn {
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: clamp(1.35rem, 6vw, 1.9rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 32px;
    }
}

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