/* =============================================
   ESTIM TAXI - Feuille de styles principale
   Palette : Noir (#1a1a1a) | Jaune (#F5B731) | Blanc (#FFFFFF)
   Police : Montserrat (UI) + Playfair Display (titres)
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-black: #1a1a1a;
    --color-dark: #222222;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-gray-lighter: #e5e5e5;
    --color-white: #ffffff;
    --color-yellow: #F5B731;
    --color-yellow-hover: #e5a820;
    --color-yellow-light: #fdf3d7;
    --color-red: #e74c3c;

    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --header-height: 90px;
    --container-max: 1200px;
    --container-padding: 1.5rem;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

@media (max-width: 768px) {
    html { font-size: 17px; }
}

@media (max-width: 480px) {
    html { font-size: 18px; }
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-yellow);
    color: var(--color-black);
    font-weight: 600;
    z-index: 10000;
    border-radius: var(--radius-sm);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
}

.btn-primary:hover {
    background-color: var(--color-yellow-hover);
    border-color: var(--color-yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.btn-dark:hover {
    background-color: var(--color-gray-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 6rem);
    max-width: 1440px;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    top: 0.5rem;
    width: calc(100% - 3rem);
    height: 70px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Navigation */
.nav-left,
.nav-right {
    flex: 1;
}

.nav-left {
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.nav-right {
    display: flex;
    justify-content: flex-start;
    padding-left: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}

.nav-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-dark);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-yellow);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-yellow);
}

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

/* Bouton Réservation (header) */
.btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--color-red);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.btn-reserve:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Logo */
.logo-container {
    flex-shrink: 0;
    z-index: 10;
}

.logo-link {
    display: block;
}

.logo-circle {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: transform var(--transition-base);
    border: none;
}

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

.site-header.scrolled .logo-circle {
    width: 56px;
    height: 56px;
}

.logo-circle:hover {
    transform: scale(1.05);
}

/* Logo small (footer) */
.logo-circle-sm {
    width: 56px;
    height: 56px;
}

/* Menu Burger (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    z-index: 20;
    padding: 8px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-black);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height) - 2rem);
    background-color: var(--color-white);
    z-index: 999;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    border-bottom: 1px solid var(--color-gray-lighter);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-yellow);
    padding-left: 1.5rem;
}

.btn-reserve-mobile {
    background-color: var(--color-red);
    color: var(--color-white) !important;
    text-align: center;
    border-radius: var(--radius-sm);
    border-bottom: none !important;
    margin-top: 1rem;
}

.btn-reserve-mobile:hover {
    background-color: #c0392b;
    color: var(--color-white);
    padding-left: 1rem;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    margin-top: 0;
}

.slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient when no images yet */
    background-color: var(--color-dark);
}

/* Slide 1 fallback */
.slide:nth-child(1) .slide-bg {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #1a1a1a 100%);
}

/* Slide 2 fallback */
.slide:nth-child(2) .slide-bg {
    background-image: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 50%, #2c3e50 100%);
}

/* Slide 3 fallback */
.slide:nth-child(3) .slide-bg {
    background-image: linear-gradient(135deg, #1a1a1a 0%, #34495e 50%, #1a1a1a 100%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-welcome {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-welcome::before,
.hero-welcome::after {
    content: '';
    width: 4rem;
    max-width: 4rem;
    height: 1px;
    background-color: var(--color-yellow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s forwards;
}

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

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 15;
}

.slider-arrow:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Hero Cards (plaquettes en chevauchement) */
.hero-cards {
    position: relative;
    z-index: 20;
    display: flex;
    gap: 1.5rem;
    width: 94%;
    max-width: 1300px;
    margin: -4rem auto 0;
}

.hero-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
}

.hero-card--yellow {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.hero-card--dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.hero-card__icon {
    flex-shrink: 0;
}

.hero-card--yellow .hero-card__icon {
    color: var(--color-black);
}

.hero-card--dark .hero-card__icon {
    color: var(--color-yellow);
}

.hero-card__body {
    flex: 1;
    min-width: 0;
}

.hero-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.hero-card__text {
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.hero-card__divider {
    width: 40px;
    height: 2px;
    margin-bottom: 1rem;
}

.hero-card--yellow .hero-card__divider {
    background-color: var(--color-black);
}

.hero-card--dark .hero-card__divider {
    background-color: var(--color-yellow);
}

.hero-card__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-card__features li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.hero-card__tag {
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.hero-card__tag:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
}

/* =============================================
   SECTION COMMUNE
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-yellow);
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =============================================
   POURQUOI CHOISIR ESTIM TAXI
   ============================================= */
.why-estim {
    padding: 56px 0;
    background-color: var(--color-white);
}

.why-estim__wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.why-estim__title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.why-estim__subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-gray);
    margin: 10px 0 28px;
    opacity: 0.7;
}

.why-estim__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-estim__card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.why-estim__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.why-estim__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: var(--color-yellow);
    display: grid;
    place-items: center;
    color: #111;
}

.why-estim__card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-black);
    margin: 0 0 10px;
}

.why-estim__card-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-gray);
    opacity: 0.85;
}

/* =============================================
   WHY US
   ============================================= */
/* =============================================
   TRUST SECTION – Votre Confiance
   ============================================= */
.trust {
    padding: 64px 0;
    background-color: #f0f0f0;
}

.trust__wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.trust__icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 999px;
    border: 2px solid #f6c343;
    display: grid;
    place-items: center;
    color: #f6c343;
}

.trust__title {
    margin: 0;
    font-size: 34px;
    color: var(--color-black);
}

.trust__subtitle {
    margin: 10px 0 26px;
    opacity: .7;
    font-style: italic;
    color: var(--color-black);
}

.trust__content {
    text-align: left;
    max-width: 760px;
    margin: 0 auto;
}

.trust__p {
    margin: 0 0 14px;
    line-height: 1.75;
    opacity: .92;
    color: #333;
}

.trust__quote {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-left: 4px solid #2b6cb0;
    background: #e8edf2;
    border-radius: 10px;
}

.trust__quote p {
    margin: 0;
    line-height: 1.7;
    color: #333;
}

.trust__badges {
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 860px;
}

.trust__badge {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.trust__badge-ico {
    color: #f6c343;
}

.trust__badge-text {
    font-size: 13px;
    opacity: .9;
    color: #333;
}

.trust__notes {
    margin: 14px 0 0;
    opacity: .65;
    color: #333;
}

/* =============================================
   HISTORY + PARTNERSHIP (2 COLONNES)
   ============================================= */
.history-3col {
    padding: 72px 0;
    background: #fff;
}

.h3__wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

.h3__header {
    text-align: center;
    margin-bottom: 34px;
}

.h3__title {
    margin: 0;
    font-size: 36px;
    color: var(--color-black);
}

.h3__subtitle {
    margin: 10px 0 0;
    opacity: .65;
}

.h3__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

/* Timeline (col 1) */
.h3__timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.h3__timeline::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #f6c343;
    opacity: .9;
}

.h3__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
}

.h3__dot {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #f6c343;
    display: grid;
    place-items: center;
    color: #f6c343;
    background: #fff;
    margin-left: 4px;
    z-index: 1;
}

.h3__card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.h3__card-title {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--color-black);
}

.h3__card-text {
    margin: 0;
    line-height: 1.7;
    opacity: .9;
    font-size: 13px;
}

/* Col 2 */
.h3__col--mid {
    display: flex;
}

.h3__panel {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.h3__panel-title {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--color-black);
}

.h3__panel-text {
    margin: 0 0 12px;
    opacity: .9;
    line-height: 1.7;
    font-size: 13px;
}

.h3__list {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.h3__check {
    color: #2b6cb0;
    font-weight: 700;
    margin-right: 8px;
}

.h3__list li {
    font-size: 13px;
    opacity: .92;
    line-height: 1.6;
}

.h3__panel-note {
    margin: 0 0 14px;
    font-size: 13px;
    opacity: .9;
}

.h3__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #f6c343;
    color: #111;
    text-decoration: none;
    align-self: flex-end;
    margin-top: auto;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
}

.h3__btn:hover {
    opacity: .92;
}

.h3__btn-arrow {
    font-size: 16px;
}

/* =============================================
   REVIEWS (AVIS CLIENTS)
   ============================================= */
.reviews { padding: 64px 0; background: #f5f5f5; }
.reviews__wrap { max-width: 1320px; margin: 0 auto; padding: 0 16px; }
.reviews__header { text-align: center; margin-bottom: 22px; }
.reviews__title { margin: 0; font-size: 34px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.reviews__line { display: inline-block; width: 50px; height: 2px; background: #111; opacity: .25; }
.reviews__subtitle { margin: 10px 0 0; opacity: .65; }

.reviews__rail {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.reviews__nav {
    width: 44px; height: 44px; border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.06);
    font-size: 22px; line-height: 1; cursor: pointer;
}
.reviews__nav:hover { opacity: .9; }

.reviews__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 14px;
    overflow-x: auto;
    padding: 10px 6px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.reviews__track::-webkit-scrollbar { height: 10px; }
.reviews__track::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 999px; }
.reviews__track::-webkit-scrollbar-track { background: rgba(0,0,0,.04); border-radius: 999px; }

.review-card {
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    display: grid;
    gap: 10px;
    min-height: 190px;
}
.review-card__top { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; }
.review-card__avatar {
    width: 42px; height: 42px; border-radius: 999px;
    background: #f6c343; color: #111;
    display: grid; place-items: center;
    font-weight: 800; font-size: 13px;
}
.review-card__name { font-weight: 800; font-size: 14px; }
.review-card__sub { display: flex; gap: 8px; align-items: center; opacity: .9; }
.stars { font-size: 12px; letter-spacing: .6px; }
.g-badge {
    width: 18px; height: 18px; border-radius: 6px;
    display: grid; place-items: center;
    background: #111; color: #fff;
    font-size: 11px; font-weight: 800;
}

.review-card__text {
    margin: 0;
    line-height: 1.6;
    font-size: 13px;
    opacity: .9;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.review-card__text.is-open {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.review-card__more {
    justify-self: start;
    border: none;
    background: transparent;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 13px;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 760px) {
    .reviews__rail { grid-template-columns: 1fr; }
    .reviews__nav { display: none; }
    .reviews__track { grid-auto-columns: minmax(250px, 85%); padding: 6px 2px; }
}

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

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-gray-dark);
}

.cta-section .btn-outline {
    color: var(--color-black);
    border-color: var(--color-black);
}

.cta-section .btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* =============================================
   FOOTER (SEO local + confiance)
   ============================================= */
.site-footer { background:#050505; color:#fff; padding:56px 0 24px; }
.footer__wrap { max-width:1320px; margin:0 auto; padding:0 16px; }
.footer__grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr 1.15fr; gap:32px; align-items:start; }
.footer__brand { font-weight:900; letter-spacing:.4px; color:#f6c343; font-size:18px; margin-bottom:14px; }
.footer__text { margin:0 0 18px; opacity:.85; line-height:1.7; font-size:13px; max-width: 360px; }
.footer__title { color:#f6c343; font-weight:800; margin:0 0 12px; font-size:15px; }
.footer__list { margin:0; padding:0; list-style:none; display:grid; gap:9px; }
.footer__list a { color:#fff; text-decoration:none; font-size:13px; opacity:.85; }
.footer__list a:hover { opacity:1; text-decoration:underline; }
.footer__social { display:flex; gap:10px; }
.footer__social-link {
  width:34px; height:34px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  color:#fff; text-decoration:none;
  font-size:12px; font-weight:800;
}
.footer__social-link:hover { background: rgba(255,255,255,.14); }
.footer__phone { display:inline-block; color:#fff; text-decoration:none; font-weight:900; font-size:16px; margin-bottom:10px; }
.footer__phone:hover { text-decoration:underline; }
.footer__meta { font-size:12px; line-height:1.8; opacity:.88; margin-bottom:12px; }
.footer__muted { opacity:.75; }
.footer__address { font-style:normal; font-size:12px; line-height:1.7; opacity:.88; margin: 0 0 12px; }
.footer__small-link { color:#f6c343; text-decoration:none; }
.footer__small-link:hover { text-decoration:underline; }
.footer__mail { display:inline-block; margin-top:2px; color:#fff; text-decoration:none; font-size:12px; opacity:.9; }
.footer__mail:hover { text-decoration:underline; }
.footer__cta { margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
.footer__btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  text-decoration:none; font-weight:800; font-size:13px;
}
.footer__btn--primary { background:#f6c343; color:#111; }
.footer__btn--primary:hover { opacity:.92; }
.footer__btn--ghost {
  border:1px solid rgba(255,255,255,.22);
  color:#fff; background: transparent;
}
.footer__btn--ghost:hover { background: rgba(255,255,255,.08); }
.footer__bottom {
  margin-top:38px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  font-size:12px;
  opacity:.75;
}
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__text { max-width: none; }
}

/* =============================================
   COOKIE BANNER (RGPD)
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-top: 3px solid var(--color-yellow);
}

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

.cookie-banner-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.cookie-learn-more {
    font-size: 0.82rem;
    color: var(--color-yellow-hover);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-learn-more:hover {
    color: var(--color-yellow);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Cookie Customize Panel */
.cookie-customize-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--color-gray-lighter);
}

.cookie-customize-panel[hidden] {
    display: none;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-lighter);
    gap: 1rem;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.cookie-option-info p {
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--color-gray-lighter);
    border-radius: 26px;
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.toggle input:checked + .toggle-slider {
    background-color: var(--color-yellow);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle.disabled .toggle-slider {
    cursor: not-allowed;
    background-color: var(--color-yellow);
    opacity: 0.7;
}

.cookie-customize-actions {
    padding-top: 1rem;
    text-align: right;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet Large (1200px) */
@media (max-width: 1200px) {
    .site-header {
        width: calc(100% - 4rem);
    }

    .site-header.scrolled {
        width: calc(100% - 2rem);
    }

    .nav-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }

    .btn-reserve {
        padding: 0.5rem 0.8rem;
        font-size: 0.72rem;
    }

    .why-estim__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* Tablet (992px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .trust__title {
        font-size: 30px;
    }

}

/* Tablet Small / Phablet (768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .site-header {
        top: 0;
        width: 100%;
        border-radius: 0 0 12px 12px;
    }

    .site-header.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0 0 12px 12px;
    }

    /* Hide desktop nav, show burger */
    .nav-left,
    .nav-right {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-circle {
        width: 56px;
        height: 56px;
    }

    /* Hero */
    .hero-slider {
        height: 100vh;
        height: 100dvh;
        height: calc(var(--vh, 1vh) * 100);
        min-height: unset;
        max-height: none;
    }

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

    .hero-welcome {
        font-size: 0.95rem;
    }

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

    .slider-arrow {
        display: none;
    }

    /* Hero cards */
    .hero-cards {
        flex-direction: column;
        width: 92%;
        gap: 1rem;
        margin-top: -4rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

    /* Sections */
    .why-estim {
        padding: 3rem 0;
    }

    .why-estim__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-estim__title {
        font-size: 26px;
    }

    .trust {
        padding: 4rem 0;
    }

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

    .trust__title {
        font-size: 26px;
    }

    .trust__content {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact__phone,
    .footer-contact__email {
        justify-content: center;
    }

    /* Cookie Banner */
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-welcome {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

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

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-welcome {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.82rem;
    }
}

/* History responsive */
@media (max-width: 920px) {
    .h3__grid {
        grid-template-columns: 1fr;
    }

    .h3__title {
        font-size: 30px;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .site-header,
    .cookie-banner,
    .hero-slider .slider-arrow,
    .hero-slider .slider-dots,
    .menu-toggle,
    .mobile-menu {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
        max-height: none;
        margin-top: 0;
    }

    .hero-content {
        position: static;
        transform: none;
        color: #000;
        padding: 2rem 0;
    }

    .hero-title,
    .hero-welcome {
        color: #000 !important;
    }

    a {
        text-decoration: underline;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .slide {
        transition: none;
    }
}

/* ---------- Focus Visible ---------- */
*:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 2px;
}

/* ---------- Selection ---------- */
::selection {
    background-color: var(--color-yellow);
    color: var(--color-black);
}
