/* ================================================================
   ECO RIDER — CSS Principal
   Chauffeur VTC Electrique Toulon
   ================================================================ */

/* --- Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

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

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #34d399;
    --text-dark: #e5e7eb;
    --text-light: #bcc4d0;
    --bg-light: #111827;
    --bg-card: #1f2937;
    --bg-dark: #0a0f1a;
    --whatsapp: #1a8f4a;
    --whatsapp-dark: #147a3e;
    --sticky-bar-h: 60px;
    --float-right: 17px;
    /* Shadow scale */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
    /* Radius scale */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* --- Screen reader only (a11y) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Inline icon alignment (CSP-safe) --- */
.icon-inline {
    vertical-align: middle;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* --- Skip to content (a11y) --- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

/* --- Focus styles (a11y) --- */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    overflow: visible;
    padding-top: env(safe-area-inset-top, 0px);
}

nav.scrolled {
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    height: 60px;
}

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

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

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

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

.nav-phone-icon {
    font-size: 1.3rem;
}

.nav-whatsapp {
    background: var(--whatsapp);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}


.whatsapp-text {
    font-size: 1rem;
}

/* ================================================================
   BANNERS
   ================================================================ */
.pro-clients-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--bg-card);
    border-bottom: 1px solid var(--bg-card);
    padding: 2rem;
}

.pro-clients-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.pro-icon {
    font-size: 2.5rem;
}

.pro-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pro-text strong {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
}

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

.quotes-banner {
    background: var(--bg-card);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 3rem 2rem;
    overflow: hidden;
}

.quotes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.quote-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.quote-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    align-items: stretch; /* hero-content prend toute la hauteur */
    background: var(--bg-dark);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,15,26,0.8) 0%, rgba(10,15,26,0.4) 35%, rgba(10,15,26,0.0) 55%);
    z-index: 2;
    pointer-events: none;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    animation: slideInRight 1s ease forwards 0.3s;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% top;
    display: block;
    filter: brightness(1.15);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 480px;
    margin-left: 1.5rem;
    padding: calc(80px + env(safe-area-inset-top, 0px)) 2rem calc(2rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* centre verticalement dans la hauteur du hero */
}

.hero-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    margin-top: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-hashtags span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-hashtags span:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 8px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    color: var(--primary);
    display: block;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 0 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    font-weight: 500;
}

.hero-subtitle-secondary {
    font-size: 0.82rem;
    color: #d1d5db;
    margin-bottom: 0.8rem;
    margin-top: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    font-weight: 400;
    line-height: 1.5;
    max-width: 480px;
    letter-spacing: 0.01em;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: var(--whatsapp);
    color: white;
    padding: 0.85rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-primary:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.3rem;
    border: 2px solid var(--primary);
    color: white;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-review {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.7rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
    flex-wrap: wrap;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.88rem;
    color: #d1d5db;
    font-style: italic;
}

.review-author {
    font-size: 0.82rem;
    color: #d1d5db;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

/* ================================================================
   SECTIONS GENERIQUES
   ================================================================ */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   WHY INDEPENDENT
   ================================================================ */
.why-independent {
    background: var(--bg-light);
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
}

.why-independent .section {
    padding-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.why-intro {
    background: var(--bg-card);
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 5px solid var(--primary);
}

.why-intro p {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.comparison-card.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.05);
}

.comparison-card.highlight:hover {
    transform: scale(1.05) translateY(-4px);
}

.comparison-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

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

.comparison-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
}

.comparison-card.highlight .comparison-list li::before {
    background: var(--bg-card);
}

.payment-banner {
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
}

.payment-badges {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

.badge-cb,
.badge-visa,
.badge-mc {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-dark);
}

/* ================================================================
   ABOUT ME
   ================================================================ */
.about-me {
    background: var(--bg-card);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight-text {
    background: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    font-style: italic;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 2rem;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
    background: var(--bg-light);
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
}

.services .section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 1.2rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    overflow: hidden;
    border-radius: 12px;
    height: 140px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1.2rem 1.5rem;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: flex-start;
}

.service-content p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.service-content ul li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ================================================================
   FEATURES (VTC Electrique)
   ================================================================ */
.features {
    background: var(--bg-card);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    justify-items: center;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ================================================================
   GUARANTEES
   ================================================================ */
.guarantees {
    background: var(--bg-light);
}

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

.guarantee-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    justify-items: center;
}

.guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.guarantee-icon svg {
    color: white;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

/* ================================================================
   PRICING (new)
   ================================================================ */
.pricing {
    background: var(--bg-card);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    grid-template-rows: auto auto auto auto auto auto;
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border-color: var(--primary);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 700;
}

.pricing-route {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-per-person {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
    min-height: 1.4em;
}

.pricing-per-person--empty {
    visibility: hidden;
}

.pricing-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-details li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
    background: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    grid-template-rows: auto auto auto auto auto;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-context {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0;
    align-self: start;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    align-self: end;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-card:nth-child(2) .author-avatar {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.author-info h4 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-subtext {
    color: white;
    margin-top: 1rem;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
    background: var(--bg-card);
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
}

.contact .section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.contact .section-title {
    margin-bottom: 0.3rem;
}

.contact .section-subtitle {
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    background: var(--bg-light);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    opacity: 0.12;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.contact-item--hero::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.contact-item--email::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E");
}

.contact-item--zone::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-item:hover {
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-details h3 {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 0.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-details p {
    color: white;
    line-height: 1.4;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-details p:last-child {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 400;
}

.contact-details strong {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    display: block;
}

/* Hero tile : numéro centré + boutons — pleine largeur */
.contact-item--hero {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    padding: 1.2rem 1.5rem;
}

.contact-item--hero h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: none;
}

.contact-item--hero .contact-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.contact-item--hero .contact-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.contact-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.4rem;
    justify-content: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

a.btn-whatsapp,
a.btn-whatsapp:visited,
a.btn-whatsapp:hover {
    background: var(--whatsapp);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
    fill: #ffffff !important;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--bg-card);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-phone:hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Email : lien cliquable bien visible */
.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

/* Zone tags (villes en pills) */
.contact-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.contact-zone-tags span {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-lg);
    font-size: 0.78rem;
    color: var(--text-light);
    transition: border-color 0.2s ease;
}

.contact-zone-tags span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Barre réseaux sociaux centrée — pleine largeur */
.contact-social-bar {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-social-bar .social-icons {
    margin: 0;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.social-icons a[aria-label*="Facebook"] {
    background: #1877F2;
}

.social-icons a[aria-label*="Instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a[aria-label*="LinkedIn"] {
    background: #0A66C2;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}

.booking-error {
    color: #ef4444;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
    border-color: #ef4444;
}


/* ================================================================
   MENTIONS LEGALES
   ================================================================ */
.legal-section {
    background: #0d1520;
    padding: 4rem 2rem;
    border-top: 1px solid var(--bg-card);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}


.legal-block {
    margin-bottom: 4rem;
}

.legal-block h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-card);
}

.legal-block h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
}

.legal-block p,
.legal-block li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-block ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.legal-block a {
    color: var(--primary);
}

.legal-block strong {
    color: var(--text-dark);
}

/* Pages légales séparées */
.nav-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-legal-back {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-legal-back:hover {
    opacity: 0.8;
}

.legal-page {
    min-height: 100vh;
    padding-top: 3rem;
}

.legal-page h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.legal-page .legal-block h2 {
    font-size: 1.4rem;
}

.legal-link-other {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-card);
    color: var(--text-light);
}

.legal-link-other a {
    color: var(--primary);
    font-weight: 600;
}

.footer-legal-page {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.85rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-card);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
    background: #050a12;
    color: #e5e7eb;
    padding: 3rem 2rem;
    padding-bottom: calc(3rem + var(--sticky-bar-h) + 10px);
    text-align: center;
}

@media (min-width: 769px) {
    footer {
        padding-bottom: 3rem;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.4rem 0;
}

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

.footer-legal {
    opacity: 0.7;
}


.footer-copy {
    margin-top: 2rem;
    opacity: 0.8;
}


/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 37px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    color: var(--text-dark);
    border: 1px solid #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ================================================================
   BOOKING POPUP
   ================================================================ */
/* ================================================================
   BOOKING POPUP — Redesign
   ================================================================ */

.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: bookingFadeIn 0.25s ease;
}

.booking-overlay[hidden] {
    display: none;
}

.booking-popup {
    background: #161e2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 500px;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(16, 185, 129, 0.08);
    animation: bookingSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 185, 129, 0.3) transparent;
}

.booking-popup::-webkit-scrollbar {
    width: 4px;
}
.booking-popup::-webkit-scrollbar-track {
    background: transparent;
}
.booking-popup::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 2px;
}

/* ── Header ─────────────────────────────── */
.booking-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    background: rgba(16, 185, 129, 0.06);
    border-top: 3px solid var(--primary);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.booking-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 12px;
}

.booking-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.booking-subtitle {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
    margin-top: 0.15rem;
}

.booking-close {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.booking-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.booking-route {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1.5rem 0;
}

.booking-route[hidden] {
    display: none;
}

/* ── Form layout ─────────────────────────── */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem 1.25rem 1.25rem;
}

.booking-row {
    display: flex;
    gap: 0.6rem;
}

.booking-row .booking-field {
    flex: 1 1 0;
    min-width: 0;
}

/* ── Cards ───────────────────────────────── */
.bk-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bk-card--route {
    border-color: rgba(16, 185, 129, 0.15);
    background: rgba(16, 185, 129, 0.03);
}

.bk-card-head {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(16, 185, 129, 0.75);
    padding-bottom: 0.1rem;
}

.bk-card-head svg {
    opacity: 0.8;
    flex-shrink: 0;
}

/* Route separator */
.bk-route-sep {
    height: 1px;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    margin: 0 0;
}

/* Dot indicators on route labels */
.booking-field--from label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 0.4rem;
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.7);
}

.booking-field--to label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #3b82f6;
    border-radius: 2px;
    margin-right: 0.4rem;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.6);
}

/* Required star */
.bk-required {
    color: #f87171;
    font-size: 0.85em;
}

/* ── Field ───────────────────────────────── */
.booking-field {
    position: relative;
}

.booking-field label {
    display: flex;
    align-items: center;
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-light);
    margin-bottom: 0.28rem;
}

/* Inputs natifs date/heure — style unifié */
.booking-native-input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.55rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9px;
    color: #e5e7eb;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    cursor: pointer;
    color-scheme: dark;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Picker icons visibles en mode sombre (iOS/Chrome) */
.booking-native-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.booking-native-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.booking-field input,
.booking-field select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.55rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    color-scheme: dark;
}

/* appearance:none uniquement sur les text/tel/email — PAS sur date/time */
.booking-field input[type="text"],
.booking-field input[type="tel"],
.booking-field input[type="email"],
.booking-field select {
    appearance: none;
    -webkit-appearance: none;
}

.booking-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23bcc4d0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.booking-field select option {
    background: #1a2332;
    color: #e5e7eb;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.booking-field input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.87rem;
}

/* Textarea */
.booking-textarea {
    width: 100%;
    resize: vertical;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    border-radius: 9px;
    padding: 0.55rem 0.8rem;
    font-family: inherit;
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color-scheme: dark;
}

.booking-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.booking-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Departure & Arrival inputs */
#bookingFrom {
    background: rgba(16, 185, 129, 0.07);
    border-color: rgba(16, 185, 129, 0.25);
}

#bookingTo {
    background: rgba(59, 130, 246, 0.07);
    border-color: rgba(59, 130, 246, 0.25);
}

#bookingFrom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

#bookingTo:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

#bookingFrom:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #0c2a1a inset;
    -webkit-text-fill-color: var(--text-dark);
}

#bookingTo:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #0c1a2a inset;
    -webkit-text-fill-color: var(--text-dark);
}

/* Google Places dropdown styling */
.pac-container {
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    margin-top: 4px;
    font-family: inherit;
}

.pac-item {
    padding: 0.6rem 0.8rem;
    color: #e5e7eb;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background: rgba(16, 185, 129, 0.15);
}

.pac-item-query {
    color: white;
    font-weight: 600;
}

.pac-icon {
    display: none;
}

.pac-matched {
    color: var(--primary);
    font-weight: 600;
}

.booking-field input[readonly] {
    opacity: 0.7;
    cursor: default;
}

/* ── Geolocation button ──────────────────── */
.booking-input-wrap {
    display: flex;
    gap: 0.4rem;
    align-items: stretch;
}

.booking-input-wrap input {
    flex: 1;
    min-width: 0;
}

.booking-geo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    color: var(--primary);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    touch-action: manipulation;
    flex-shrink: 0;
}

.booking-geo-btn:hover,
.booking-geo-btn:focus-visible {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
}

.booking-geo-btn:active {
    transform: scale(0.95);
}

.booking-geo-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.booking-geo-btn.loading svg {
    animation: geoSpin 1s linear infinite;
}

@keyframes geoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Submit button ───────────────────────── */
.booking-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #1a9e50 0%, #147a3e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    touch-action: manipulation;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.booking-submit:hover {
    background: linear-gradient(135deg, #1fb85e 0%, #1a9e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.booking-submit:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

@keyframes bookingFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bookingSlideUp {
    from { opacity: 0; transform: translateY(24px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================================
   iOS INSTALL BANNER
   ================================================================ */
.ios-install-banner {
    position: fixed;
    bottom: 60px;
    bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    z-index: 1100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    animation: iosSlideUp 0.4s ease;
}

.ios-install-banner[hidden] {
    display: none;
}

.ios-install-banner p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.ios-share-icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--primary);
    margin: 0 0.15rem;
}

.ios-install-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.3rem;
    line-height: 1;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ios-install-close:hover {
    color: white;
}

@keyframes iosSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

/* ================================================================
   REDUCED MOTION (a11y)
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-image-wrapper {
        animation: none !important;
        opacity: 1 !important;
    }

    .hero h1,
    .hero-subtitle,
    .hero-subtitle-secondary,
    .hero-stats,
    .cta-buttons,
    .hero-review {
        animation: none !important;
        opacity: 1 !important;
    }

    .booking-overlay,
    .hero-hashtags span,
    nav.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .service-card,
    .feature-card,
    .guarantee-card,
    .pricing-card,
    .comparison-card,
    .testimonial-card,
    .nav-whatsapp,
    .back-to-top,
    .social-icons a {
        transition: none !important;
    }
}

/* ================================================================
   BOOKING SUBMIT SPINNER
   ================================================================ */
@keyframes btn-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btn-spin 0.65s linear infinite;
    flex-shrink: 0;
}

/* Form optional label */
.form-optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.82rem;
}

/* ================================================================
   HAMBURGER & MOBILE MENU
   ================================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.98);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-menu .mobile-whatsapp {
    background: var(--whatsapp);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* ================================================================
   RESPONSIVE — Tablet (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-whatsapp .whatsapp-text {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .services-grid .service-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }

    .services-grid .service-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
    }

    .features-grid .feature-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .guarantees-grid .guarantee-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .testimonials-grid .testimonial-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }

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

    .hero-content {
        max-width: 480px;
        margin-left: 3rem;
    }

    .hero-image-wrapper img {
        object-position: 50% top;
    }

    .cta-primary {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }

    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .comparison-card.highlight {
        transform: scale(1);
    }

    .comparison-card.highlight:hover {
        transform: translateY(-4px);
    }
}

/* ================================================================
   RESPONSIVE — Small Tablet (max 900px) — nav switch to hamburger
   ================================================================ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .nav-whatsapp {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        margin-left: 0;
    }
}

/* ================================================================
   RESPONSIVE — Mobile (max 768px)
   ================================================================ */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.6rem 1.2rem;
    }

    /* Booking popup -> bottom sheet on mobile */
    .booking-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .booking-popup {
        max-width: 100%;
        width: 100%;
        max-height: 92vh;
        max-height: 85dvh;
        border-radius: 20px 20px 0 0;
        animation: bookingSlideUpMobile 0.3s ease;
        overflow-x: hidden;
    }

    .booking-header {
        padding: 0.9rem 1.1rem;
        border-radius: 18px 18px 0 0;
    }

    .booking-form {
        gap: 0.5rem;
        padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .bk-card {
        padding: 0.75rem 0.85rem;
    }

    .booking-row {
        gap: 0.5rem;
    }

    .booking-field input,
    .booking-field select {
        font-size: 16px;
    }

    .booking-submit {
        padding: 0.85rem;
        margin-top: 0.2rem;
    }

    @keyframes bookingSlideUpMobile {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .logo {
        height: 50px;
    }

    .logo-img {
        height: 45px;
    }

    .pro-clients-banner {
        padding: 1.2rem 1rem;
    }

    .pro-clients-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .pro-text strong {
        font-size: 1rem;
    }

    .pro-details {
        font-size: 0.85rem;
    }

    .quotes-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        min-height: 100svh;
    }

    .hero h1 {
        order: 1;
    }

    .hero-subtitle {
        order: 3;
    }

    .hero-subtitle-secondary {
        order: 4;
    }

    .hero-stats {
        order: 5;
    }

    .cta-buttons {
        order: 6;
        margin-top: auto;
    }

    .hero-review {
        order: 7;
    }

    .hero::after {
        background: linear-gradient(to top, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.5) 60%, rgba(10,15,26,0.1) 100%);
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 70px 1.2rem calc(2rem + env(safe-area-inset-bottom, 0px));
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-subtitle-secondary {
        font-size: 0.88rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
        white-space: nowrap;
    }

    .cta-secondary {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .hero-review {
        margin-top: 0.5rem;
        flex-wrap: wrap;
        gap: 0.2rem 0.4rem;
    }

    .hero-review .review-text,
    .hero-review .review-author {
        font-size: 0.78rem;
    }

    .hero-review .review-stars svg {
        width: 14px;
        height: 14px;
    }

    .hero-scroll-reveal {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.3s ease;
    }

    .hero-scroll-reveal.visible {
        opacity: 1;
        max-height: 300px;
        overflow: visible;
    }

    .hero-subtitle.visible {
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-stats.visible {
        margin-top: 0.5rem;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 420px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Why independent */
    .why-intro {
        padding: 1.5rem 1.2rem;
    }

    .why-intro p {
        font-size: 1.05rem;
    }

    .comparison-card.highlight {
        transform: scale(1);
    }

    .comparison-card.highlight:hover {
        transform: translateY(-4px);
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .services-grid .service-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }

    .services-grid .service-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }

    .features-grid .feature-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* Guarantees grid */
    .guarantees-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .guarantees-grid .guarantee-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Pricing grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .pricing-grid .pricing-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }

    /* Testimonials grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .testimonials-grid .testimonial-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }

    .testimonial-card {
        padding: 1.8rem 1.2rem;
    }

    /* Contact section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-width: 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .contact-item {
        padding: 1.5rem 1rem;
        text-align: center;
        min-width: 0;
        word-break: break-word;
    }

    .contact-item::after {
        width: 50px;
        height: 50px;
        opacity: 0.08;
        right: 10px;
    }

    .contact-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-zone-tags {
        justify-content: center;
    }

    .contact-details {
        align-items: center;
    }

    /* CTA section */
    .cta-section {
        padding: 3rem 1.2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Payment banner */
    .payment-banner {
        font-size: 0.95rem;
        padding: 1rem 1rem;
    }

    /* FAQ section */
    .faq {
        padding: 3rem 1.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.1rem 0;
        gap: 0.5rem;
    }

    /* Footer */
    .footer-links {
        gap: 1rem;
    }

    /* Resize WhatsApp float on mobile — au-dessus de la barre sticky */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: calc(var(--sticky-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
        right: var(--float-right);
        font-size: 1.5rem;
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    .whatsapp-float.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .back-to-top {
        bottom: calc(var(--sticky-bar-h) + 74px + env(safe-area-inset-bottom, 0px));
        right: var(--float-right);
        width: 40px;
        height: 40px;
        z-index: 998;
    }

    /* Remove 100vh on mobile (content flows naturally, avoids Safari address bar issues) */
    .why-independent,
    .services,
    .contact,
    .faq {
        min-height: auto;
    }

    /* Disable hero animations on mobile for faster LCP */
    .hero-hashtags,
    .hero h1,
    .hero-subtitle,
    .hero-subtitle-secondary,
    .cta-buttons,
    .hero-review,
    .hero-image-wrapper {
        opacity: 1;
        animation: none;
    }

    /* Remove backdrop-filter on hero hashtags (GPU heavy on low-end devices) */
    .hero-hashtags span {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Form inputs: 16px min to prevent iOS auto-zoom */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.85rem 1rem;
    }

    /* Pricing empty spacer: hide on mobile (single column) */
    .pricing-per-person--empty {
        display: none;
    }


    /* Mobile sticky CTA bar */
    .mobile-sticky-cta {
        display: flex;
    }

    .footer-links a {
        padding: 0.7rem 0.5rem;
    }

}

/* Mobile sticky CTA bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--bg-dark);
    border-top: 1px solid var(--bg-card);
    padding: 0.5rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    gap: 0.5rem;
}

.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    min-height: 44px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: white;
}

.mobile-sticky-cta .sticky-whatsapp {
    background: var(--whatsapp);
}

.mobile-sticky-cta .sticky-phone {
    background: var(--bg-card);
    color: var(--text-dark);
}

/* Pricing card CTA button */
.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0;
    align-self: end;
    padding: 0.85rem 1.2rem;
    background: var(--whatsapp);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.pricing-cta:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.pricing-cta:active {
    transform: translateY(0);
}

/* TTC mention */
.pricing-ttc {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* FAQ section */
.faq {
    background: var(--bg-light);
    padding: 2rem 2rem;
    min-height: min(100vh, 900px);
    display: flex;
    align-items: flex-start;
}

.faq .section-title {
    margin-bottom: 0.3rem;
}

.faq .section-subtitle {
    margin-bottom: 1rem;
}

.faq .section {
    padding-top: 4rem;
    padding-bottom: 1rem;
    width: 100%;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--bg-card);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.3rem 0;
    min-height: 44px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
    overflow: hidden;
    padding: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer.open {
    grid-template-rows: 1fr;
}

.faq-answer.open > p {
    padding: 0 0 1.3rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--secondary);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
    text-decoration: underline;
    text-decoration-color: rgba(52, 211, 153, 0.6);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Button active state (mobile feedback) */
.cta-primary:active,
.pricing-cta:active,
.nav-whatsapp:active,
.btn-contact:active,
.sticky-whatsapp:active,
.sticky-phone:active,
.faq-question:active {
    transform: scale(0.97);
    opacity: 0.9;
}

/* Touch targets: remove hover effects on touch devices */
@media (hover: none) {
    .comparison-card:hover,
    .service-card:hover,
    .feature-card:hover,
    .guarantee-card:hover,
    .pricing-card:hover {
        transform: none;
    }

    .comparison-card.highlight:hover {
        transform: scale(1.05);
    }
}

/* Touch responsiveness */
.cta-primary,
.cta-secondary,
.pricing-cta,
.btn-contact,
.sticky-whatsapp,
.sticky-phone,
.faq-question,
.hamburger {
    touch-action: manipulation;
}


/* ================================================================
   RESPONSIVE — Small Mobile (max 400px)
   ================================================================ */
@media (max-width: 400px) {
    .contact-actions {
        flex-direction: column;
    }

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

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

    .hero-content {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .hero-hashtags span {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2.2rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .mobile-menu a {
        font-size: 1.3rem;
    }

    /* Booking popup : lignes empilées sur très petit écran */
    .booking-row {
        flex-direction: column;
    }

    .booking-form {
        padding: 0.7rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    }

    .bk-card {
        padding: 0.65rem 0.7rem;
    }

    .booking-header {
        padding: 0.7rem 0.8rem;
    }

    /* Guarantees : ajustements petit écran */
    .guarantee-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-card {
        padding: 1.5rem 1rem;
    }

    /* WhatsApp float plus petit et mieux placé */
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        right: 10px;
    }

    .back-to-top {
        width: 36px;
        height: 36px;
        right: 10px;
    }

    /* Contact icons */
    .contact-item::after {
        display: none;
    }

    /* Testimonials quote mark */
    .testimonial-card::before {
        font-size: 2rem;
    }

    /* Pricing badge overflow */
    .pricing-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    /* Footer */
    footer {
        padding: 2rem 0.8rem;
    }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image-wrapper,
    .hero h1,
    .hero-subtitle,
    .hero-subtitle-secondary,
    .cta-buttons,
    .hero-review {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .whatsapp-float {
        animation: none !important;
    }
}

/* ================================================================
   INLINE-STYLE REPLACEMENTS
   ================================================================ */

/* Section intro paragraphs (why-independent, features, guarantees) */
.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-intro--lg {
    margin-bottom: 2.5rem;
}

/* Pricing note link */
.pricing-note a {
    color: var(--primary);
    font-weight: 600;
}

/* CTA subtext overrides (already partially in .cta-section .cta-subtext) */
.cta-subtext a {
    color: white;
    text-decoration: underline;
}


/* Footer copy links */
.footer-copy a {
    color: var(--text-light);
}


/* ================================================================
   FAQ — CTA inline
   ================================================================ */
.faq-cta {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

.faq-cta:hover {
    opacity: 0.8;
}

/* ================================================================
   BOOKING SUCCESS — Boutons agenda
   ================================================================ */
.booking-success {
    color: var(--primary);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.75rem;
    background: rgba(16,185,129,0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16,185,129,0.3);
}

.booking-success-msg {
    margin: 0 0 0.5rem;
}

.booking-calendar {
    margin-top: 0.9rem;
    border-top: 1px solid rgba(16,185,129,0.2);
    padding-top: 0.75rem;
}

.booking-calendar-label {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0 0 0.6rem;
}

.booking-calendar-btns {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cal-btn:hover { opacity: 0.85; }

.cal-google  { background: #4285f4; color: #fff; }
.cal-apple   { background: #1c1c1e; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.cal-outlook { background: #0078d4; color: #fff; }

/* ================================================================
   PRINT STYLES
   ================================================================ */
@media print {
    nav, .whatsapp-float, .back-to-top, .mobile-menu, .cta-section {
        display: none !important;
    }

    body {
        background: white;
        color: #111;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

    a {
        color: #111;
    }
}
