/* --- 1. CONFIGURATION DE BASE ET PALETTE --- */
:root {
    --color-gold: #C0A062;
    --color-dark: #2F353B;
    --color-cream: #F9F8F4;
    --color-slate: #545F66;
    --color-grey: #666666;
    --color-border: #999999;
    --color-grey-dark: #1E242A;

    --site-padding-left: max(40px, 5vw);
    --site-max-width: 1400px;
    --site-gutter: max(40px, calc((100% - 1200px) / 2));
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--color-dark);
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
}

/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 110px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}

/* LOGO ARGAMAN */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    left: var(--site-gutter);
    z-index: 1001;
    transition: opacity 0.3s;
}

.brand-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 2px;
    color: var(--color-slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--color-slate);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-sub {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.brand-logo:hover .brand-icon,
.brand-logo:hover .brand-name,
.brand-logo:hover .brand-sub {
    color: var(--color-gold);
}
.brand-logo:hover .brand-icon { transform: scale(1.05); }

/* NAV MENU */
.navbar {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px;
    margin-left: 100px;
}

.nav-wrapper-mega, .nav-wrapper-simple {
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-wrapper-mega { position: static; }
.nav-wrapper-simple { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover { color: var(--color-gold); }
.nav-link i { font-size: 10px; color: var(--color-gold); transition: transform 0.3s; }

/* BOUTON BOOK NOW */
.btn-book {
    text-decoration: none;
    color: var(--color-grey);
    background-color: transparent;
    border: 1px solid var(--color-border);
    padding: 12px 25px;
    position: absolute;
    right: var(--site-gutter);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-book:hover {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
    color: #fff;
}

@media (min-width: 1025px) {
    .nav-wrapper-mega:hover .nav-link, .nav-wrapper-simple:hover .nav-link { color: var(--color-gold); }
    .nav-wrapper-mega:hover .nav-link i, .nav-wrapper-simple:hover .nav-link i { transform: rotate(180deg); }
    .nav-wrapper-mega:hover .dropdown-menu, .nav-wrapper-simple:hover .dropdown-menu {
        visibility: visible; opacity: 1; transform: translateY(0);
    }
}

.dropdown-menu {
    background-color: var(--color-dark);
    position: absolute; top: 100%; visibility: hidden; opacity: 0;
    transform: translateY(10px); transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 999;
}
.dropdown-menu.mega-style { left: 0; width: 100%; padding: 50px 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.dropdown-menu.simple-style { left: 50%; transform: translateX(-50%) translateY(10px); min-width: 250px; padding: 30px; display: flex; flex-direction: column; }

@media (min-width: 1025px) {
    .nav-wrapper-simple:hover .dropdown-menu.simple-style { transform: translateX(-50%) translateY(0); }
}

.column-title { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
ul { list-style: none; }
li { margin-bottom: 12px; }

li a { color: #b0b2b5; text-decoration: none; font-size: 14px; position: relative; display: block; transition: all 0.3s ease; }
li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0px; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; }
li a:hover { color: var(--color-gold); padding-left: 25px; }
li a:hover::before { width: 15px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2001; }
.bar { width: 30px; height: 2px; background-color: var(--color-dark); transition: all 0.3s; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

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

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

/* Hero animations (au chargement) */
.booking-hero h1 {
    animation: fadeInUp 0.8s ease-out both;
}

.booking-hero > p {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.booking-breadcrumb {
    animation: fadeIn 1s ease-out 0.4s both;
}

/* Scroll reveal — éléments cachés par défaut */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Décalage progressif pour les steps */
.reveal-left {
    opacity: 0;
    transform: translateX(-25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   3. HERO SECTION — design unifié avec la page Testimonials
   ============================================================ */
.booking-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 40px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15,17,20,0.55) 0%, rgba(15,17,20,0.65) 100%),
        url("Images/bed2318036c5638c4c1e924e0f209fa8c64dcfd636188c4c5d065845c5edce01.webp") center / cover no-repeat;
    background-color: #1E242A;
}

.booking-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.booking-hero .kicker {
    display: inline-block;
    color: #d8c28c;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.booking-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.booking-hero > .booking-hero-inner > p,
.booking-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    font-weight: 300;
    font-style: normal;
    max-width: 720px;
    margin: 0 auto;
}

/* Breadcrumb — collé en haut du hero, style testimonials */
.booking-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 18px 24px 0;
    width: 100%;
}
.booking-breadcrumb,
.booking-breadcrumb *,
.booking-breadcrumb *::before,
.booking-breadcrumb *::after {
    transition: none !important;
    animation: none !important;
}
.booking-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 max(40px, 5vw);
}
.booking-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.2px;
}
.booking-breadcrumb li {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.booking-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
/* Aucun hover/animation sur les liens */
.booking-breadcrumb a,
.booking-breadcrumb a:hover,
.booking-breadcrumb a:focus,
.booking-breadcrumb a:active,
.booking-breadcrumb a:visited {
    color: #fff !important;
    text-decoration: none !important;
    background: transparent !important;
    font-size: 14px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.booking-breadcrumb li a::before,
.booking-breadcrumb li a:hover::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.booking-breadcrumb a:hover {
    color: var(--color-gold);
    padding-left: 0;
}

/* ============================================================
   4. INTRO SECTION
   ============================================================ */
.booking-intro {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: left;
}

.booking-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.booking-intro p {
    font-size: 16px;
    color: var(--color-slate);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 15px;
}

/* ============================================================
   5. STEPS SECTION
   ============================================================ */
.steps-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.step-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    padding: 45px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

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

/* Gold connecting line between steps */
.step-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number-col::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 55px);
    background: linear-gradient(to bottom, var(--color-gold), rgba(192,160,98,0.4));
}

.step-card-last .step-number-col::after {
    display: none;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: var(--color-gold);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(192,160,98,0.35);
}

.step-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-content p {
    font-size: 15px;
    color: var(--color-slate);
    line-height: 1.75;
    margin-bottom: 15px;
}

.step-content a:not(.step-cta) {
    color: var(--color-gold);
    text-decoration: underline;
}

/* ============================================================
   6. STEP NOTE BOX
   ============================================================ */
.step-note {
    background: transparent;
    padding: 20px 25px;
    border-left: 3px solid var(--color-gold);
    margin: 20px 0;
}
.step-note strong { color: var(--color-dark); }
.step-note ul { padding-left: 20px; margin: 10px 0; }
.step-note li { font-size: 14px; color: var(--color-grey); margin-bottom: 6px; line-height: 1.5; }
.step-note li::before { display: none; }
.step-note li a::before { display: none; }
.step-note em { font-size: 13px; color: #999; }

/* ============================================================
   7. STEP CTA BUTTON
   ============================================================ */
.step-cta {
    display: inline-block;
    background: var(--color-gold);
    color: #fff;
    border: 1px solid var(--color-gold);
    padding: 14px 35px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 10px;
}
.step-cta:hover {
    background: transparent;
    color: var(--color-gold);
}

.steps-cta {
    text-align: center;
    padding: 10px 0 0;
}

/* ============================================================
   BANNER IMAGES
   ============================================================ */
.booking-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    margin: 0;
}

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

.booking-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.booking-banner-lifestyle {
    height: 540px;
}

/* Voile gris sur la bannière clinique (torre.jpg) */
.booking-banner:not(.booking-banner-lifestyle)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(60, 65, 72, 0.40) 0%,
        rgba(40, 44, 50, 0.50) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.banner-overlay p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    max-width: 1100px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .booking-banner { height: 250px; }
    .booking-banner-lifestyle { height: 360px; }
    .banner-overlay p { font-size: 15px; padding: 20px; }
}

/* ============================================================
   8. PACKAGE BOX
   ============================================================ */
.package-box {
    background: transparent;
    padding: 30px;
    margin: 20px 0;
}
.package-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.package-box ul { list-style: none; padding: 0; }
.package-box li {
    font-size: 14px;
    color: var(--color-grey);
    padding: 4px 0;
    border-bottom: none;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    margin-bottom: 0;
}
.package-box li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    width: auto;
    height: auto;
    background: none;
    top: 8px;
    transform: none;
}
.package-box li:last-child { border-bottom: none; }

/* ============================================================
   9. OPTIONS GRID (STEP 3)
   ============================================================ */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.option-card {
    border: 1px solid #e5e5e5;
    padding: 25px;
    background: transparent;
    transition: all 0.3s;
}
.option-card:hover { border-color: var(--color-gold); box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.option-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}
.option-card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================================
   10. FINAL CTA
   ============================================================ */
.booking-final-cta {
    background: var(--color-dark);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}
.booking-final-cta h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.booking-final-cta p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-gold-filled {
    display: inline-block;
    background: var(--color-gold);
    color: #fff;
    border: 1px solid var(--color-gold);
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-gold-filled:hover { background: transparent; color: var(--color-gold); }
.cta-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-gold-outline:hover { background: var(--color-gold); color: #fff; }

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.seo-content {
    padding: 80px 40px;
    background: #fff;
}

.seo-content-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.seo-content-inner h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.seo-content-inner p {
    font-size: 15px;
    color: var(--color-grey);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 16px;
}

.seo-content-inner p:last-child { margin-bottom: 0; }

.seo-content-inner strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
footer { padding: 0; background-color: transparent; border-top: none; width: 100%; }
.footer-cta-bar { background-color: var(--color-grey-dark); padding: 50px 10%; display: flex; align-items: center; justify-content: space-between; color: #fff; flex-wrap: wrap; gap: 30px; }
.cta-content h2 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 1.3; max-width: 1200px; margin: 0; text-align: left; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--color-gold); padding: 12px 30px; color: #fff; background: var(--color-gold); text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-footer-cta:hover { background: #fff; color: var(--color-grey); border-color: #fff; }
.footer-info-section { background-color: #fff; padding: 80px 40px 30px 40px; color: var(--color-dark); }
.footer-grid-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid #dcdcdc; padding-bottom: 60px; margin-bottom: 30px; align-items: flex-start; }
.f-col-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 25px; }

.f-brand-block {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-slate);
    margin-bottom: 10px;
}
.f-brand-icon-ft { width: 40px; height: 40px; color: var(--color-slate); }
.f-brand-text-ft {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: flex-start;
}
.f-name-ft {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 400;
}
.f-sub-ft {
    font-size: 9px;
    letter-spacing: 2.85px;
    text-transform: uppercase;
    margin-top: 2px;
    margin-left: 1px;
}

.f-address-box p { font-size: 13px; color: var(--color-grey); line-height: 1.6; margin-bottom: 5px; }
.f-address-box .highlight { color: var(--color-dark); font-weight: 600; margin-top: 10px; display: block; }
.f-socials-row { display: flex; gap: 15px; margin-top: 10px; }
.f-socials-row a { color: var(--color-slate); font-size: 18px; transition: color 0.3s; text-decoration: none; }
.f-socials-row a:hover { color: var(--color-gold); }
.f-col-links h4 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: var(--color-slate); font-weight: 700; }
.f-link-list { list-style: none; padding: 0; margin: 0; }
.f-link-list li { margin-bottom: 10px; }
.f-link-list li a { font-size: 13px; color: var(--color-grey); text-decoration: none; transition: color 0.3s; position: relative; }
.f-link-list li a::before { display: none; }
.f-link-list li a:hover { color: var(--color-gold); padding-left: 0; }
.f-group-title { font-size: 13px; color: var(--color-slate); font-weight: 700; margin-top: 25px; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.mt-0 { margin-top: 0 !important; }
.footer-legal-row { text-align: center; font-size: 11px; color: #999; }
.footer-legal-row a { color: #999; text-decoration: none; margin-left: 10px; transition: color 0.3s; }
.footer-legal-row a:hover { color: var(--color-gold); }

/* ============================================================
   12. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    li a::before { display: none !important; }
    li a:hover { padding-left: 0 !important; }

    /* Header mobile */
    header { justify-content: space-between; padding: 0 20px; height: 90px; position: fixed; top: 0; left: 0; width: 100%; border-bottom: 1px solid #e5e5e5; z-index: 2000; }
    body { padding-top: 90px; }
    .brand-logo { position: static; left: auto; }
    .brand-icon { width: 35px; height: 35px; }
    .brand-name { font-size: 18px; letter-spacing: 2px; }
    .brand-sub { font-size: 7px; letter-spacing: 3px; }
    .hamburger { display: flex; }
    .navbar { position: fixed; top: 90px; left: 0; width: 100%; height: calc(100vh - 90px); background-color: #fff; flex-direction: column; align-items: flex-start; padding: 40px; transform: translateX(-100%); transition: transform 0.4s ease; overflow-y: auto; gap: 0; z-index: 1999; margin-left: 0; }
    .navbar.active { transform: translateX(0); }
    .nav-wrapper-mega, .nav-wrapper-simple { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid #f0f0f0; }
    .nav-link { width: 100%; padding: 20px 0; justify-content: space-between; font-size: 16px; }
    .btn-book { position: relative; right: auto; top: auto; transform: none; margin-top: 20px; width: 100%; text-align: center; padding: 15px; }
    .dropdown-menu, .dropdown-menu.mega-style, .dropdown-menu.simple-style { position: static; width: 100%; box-shadow: none; padding: 0; visibility: visible; opacity: 1; transform: none; display: none; background-color: #ffffff; padding-left: 15px; }
    .column-title { color: var(--color-dark); margin-top: 10px; margin-bottom: 10px; }
    li a { color: #444; }
    .dropdown-menu.mega-style { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .dropdown-menu.simple-style { padding: 20px; }
    .nav-wrapper-mega.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .dropdown-menu.mega-style { display: grid; }
    .nav-wrapper-simple.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .nav-link i, .nav-wrapper-simple.open .nav-link i { transform: rotate(180deg); }

    /* Hero */
    .booking-hero h1 { font-size: 36px; }

    /* Steps */
    .step-card { grid-template-columns: 50px 1fr; gap: 20px; }

    /* Options grid */
    .options-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-cta-bar { flex-direction: column; text-align: center; justify-content: center; padding: 50px 20px; }
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; text-align: left !important; padding-bottom: 40px; }
    .f-col-identity { grid-column: span 3; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 10px; width: 100%; }
    .f-col-links { align-items: flex-start !important; text-align: left !important; }
    .f-col-links h4, .f-group-title { text-align: left !important; font-size: 11px; }
    .f-link-list li a { justify-content: flex-start !important; text-align: left; padding-left: 0 !important; font-size: 11px; }
    .f-link-list li a:hover { padding-left: 0 !important; color: var(--color-gold); }
}

/* ============================================================
   13. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    /* Hero */
    .booking-hero {
        min-height: auto;
        padding: 80px 24px 50px;
    }
    .booking-hero h1 { font-size: 34px; letter-spacing: -0.8px; }
    .booking-hero .kicker { font-size: 11px; letter-spacing: 3px; margin-bottom: 14px; }
    .booking-hero p { font-size: 15px; }
    .booking-breadcrumb { padding: 14px 16px 0; }
    .booking-breadcrumb-inner { padding: 0; }
    .booking-breadcrumb ol { font-size: 13px; }

    /* Intro */
    .booking-intro { padding: 40px 20px; }

    /* Steps */
    .steps-section { padding: 0 20px 40px; }
    .step-circle { width: 42px; height: 42px; font-size: 17px; }
    .step-number-col::after { top: 47px; height: calc(100% - 47px); }
    .step-content h2 { font-size: 20px; }

    /* CTA buttons */
    .cta-buttons { flex-direction: column; width: 100%; align-items: center; }
    .cta-gold-filled, .cta-gold-outline { width: 100%; max-width: 320px; text-align: center; }

    /* Final CTA */
    .booking-final-cta { padding: 60px 20px; }
    .booking-final-cta h2 { font-size: 28px; }

    /* Footer - 3 colonnes comme index */
    .footer-cta-bar { padding: 40px 20px; }
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; padding-left: 10px; padding-right: 10px; }
    .f-col-identity { grid-column: span 3 !important; text-align: center !important; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 10px; width: 100%; }
    .f-col-identity .f-address-box { width: 100%; text-align: center; }
    .f-col-identity .f-address-box p { font-size: 15px; line-height: 1.7; }
    .f-col-identity .f-socials-row { justify-content: center; width: 100%; }
    .f-col-links h4, .f-group-title { font-size: 11px; }
    .f-link-list li a { font-size: 11px; }
}