/* ============================================================
   Auguste – Transport Sénior & PMR  ·  v5
   Split diagonal hero · Animated buttons · Micro-interactions
   ============================================================ */

:root {
  --teal:         #6bcf9f;
  --teal-dark:    #15614F;
  --teal-mid:     #259E84;
  --teal-light:   #E8F4F0;
  --teal-bg:      #F0F7F4;
  --sage:         #7AB59E;
  --sage-light:   #B5D8C8;
  --mint:         #D6E8DC;
  --navy:         #1A3C5E;
  --petrol:       #162D3E;
  --grey:         #5A6B78;
  --grey-light:   #8A9AA8;
  --orange:       #6bcf9f;
  --orange-hover: #5ab88c;
  --orange-glow:  rgba(242,140,40,.35);
  --white:        #FFFFFF;
  --border:       #D0D9E0;
  --shadow-sm:    0 2px 8px rgba(26,60,94,.06);
  --shadow-md:    0 4px 24px rgba(26,60,94,.09);
  --shadow-lg:    0 8px 40px rgba(26,60,94,.12);
  --shadow-xl:    0 16px 64px rgba(26,60,94,.14);
  --radius:       14px;
  --radius-lg:    22px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --ease-bounce:  cubic-bezier(.34,1.56,.64,1);
  --font-body:    'Raleway', sans-serif;
  --font-display: 'Raleway', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--petrol); background: var(--white); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5rem; color: var(--navy); }
.section-subtitle { font-size: 1.05rem; color: var(--grey); max-width: 560px; margin: 0 auto 2.5rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
section { padding: 5rem 0; }
section:nth-child(even) { background: #f8fafb; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ═══════════ ANIMATIONS ═══════════ */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Stagger delays via JS data-delay or nth-child */
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }
.fade-up.d5 { transition-delay: .5s; }

/* Slide from left */
.slide-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.scale-in {
  opacity: 0; transform: scale(.85);
  transition: opacity .6s var(--ease), transform .6s var(--ease-bounce);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .slide-left, .scale-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn::after, .btn::before { display: none !important; }
}

/* ═══════════ BUTTONS (modern + animated) ═══════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 12px;
  font-size: .95rem; font-weight: 600; font-family: var(--font-body);
  border: none; cursor: pointer; overflow: hidden;
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease);
  isolation: isolate;
}
.btn:active { transform: scale(.97) !important; }

/* Primary: teal with shine sweep */
.btn--primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 16px rgba(11,110,94,.25);
}
.btn--primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s var(--ease);
  z-index: 1;
}
.btn--primary:hover::before { left: 120%; }
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(11,110,94,.3);
}

/* Orange CTA with glow pulse */
.btn--cta {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 16px rgba(107, 207, 159, 0.3);
  font-weight: 700;
}
.btn--cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s var(--ease);
  z-index: 1;
}
.btn--cta:hover::before { left: 120%; }
.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,133,58,.4);
  background: var(--orange-hover);
}

/* Outline ghost */
.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: none;
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline dark (for light bg sections) */
.btn--outline-dark {
  background: transparent; color: #fff;
  border: 2px solid var(--border);
}
.btn--outline-dark:hover {
  border-color: var(--teal); color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,110,94,.1);
}

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

/* Ripple effect on click */
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0); animation: ripple .6s linear;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,217,207,.4);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: .5rem; }
.navbar__logo span { color: var(--teal); }
.navbar__links { display: flex; gap: 1.6rem; list-style: none; }
.navbar__links a {
  font-size: .85rem; font-weight: 500; color: var(--grey);
  transition: color .3s var(--ease); position: relative;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
  background: var(--teal); transition: width .3s var(--ease), left .3s var(--ease);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--navy); }
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; left: 0; }
.navbar__cta {
  padding: .5rem 1.1rem; background: var(--teal); color: var(--white);
  border-radius: 8px; font-size: .83rem; font-weight: 600;
  transition: background .3s var(--ease), transform .3s var(--ease-bounce);
}
.navbar__cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .3s var(--ease); }

/* ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════ */
/* HERO — FULL IMAGE BACKGROUND                               */
/* ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Full-screen background image */
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
/* Dark gradient overlay for text readability */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,52,79,.82) 0%,
    rgba(26,47,42,.55) 50%,
    rgba(0,0,0,.25) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative; z-index: 2;
  padding-top: 120px; padding-bottom: 4rem;
  max-width: 1180px;
}

.hero__content {
  max-width: 580px;
}

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero h1 span { color: var(--sage-light); }

.hero__sub {
  font-size: 1.15rem; color: rgba(255,255,255,.82);
  margin-bottom: 2.2rem; max-width: 440px; line-height: 1.75;
}

.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__badges { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__badge {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: .9rem 1.1rem;
  display: flex; align-items: center; gap: .6rem;
  transition: background .3s var(--ease), transform .3s var(--ease-bounce);
  cursor: default;
}
.hero__badge:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.hero__badge-icon { font-size: 1.2rem; }
.hero__badge-title {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.95);
  font-family: var(--font-body);
}


/* ═══════════ TICKER BANNER ═══════════ */
.ticker {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  overflow: hidden !important;
  position: relative;
  padding: .65rem 0;
  z-index: 10;
  width: 100%;
  max-height: 40px;
}
.ticker__inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content;
  animation: ticker 25s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  padding: 0 2rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.ticker__item span {
  color: var(--sage);
  font-size: .7rem;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker:hover .ticker__inner {
  animation-play-state: paused;
}

/* ═══════════ SERVICES ═══════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card__img { height: 200px; background: var(--teal-light); overflow: hidden; position: relative; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, var(--white), transparent); z-index: 1; }
.service-card__body { padding: 1.4rem 1.5rem 1.8rem; }
.service-card__body h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--navy); transition: color .3s var(--ease); }
.service-card:hover .service-card__body h3 { color: var(--teal); }
.service-card__body p { font-size: .9rem; color: var(--grey); line-height: 1.6; }

/* ═══════════ TARIFS ═══════════ */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.tarif-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 2px solid transparent;
  transition: all .4s var(--ease-bounce); display: flex; flex-direction: column;
}
.tarif-card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tarif-card:nth-child(2) { border-color: var(--teal); position: relative; }
.tarif-card:nth-child(2)::before {
  content: 'Populaire'; position: absolute; top: -1px; right: 24px;
  background: var(--teal); color: var(--white); padding: .25rem .8rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  border-radius: 0 0 8px 8px;
}
.tarif-card h3 { font-size: 1.15rem; margin-bottom: .3rem; color: var(--navy); }
.tarif-card__price { font-family: var(--font-display); font-size: 1.6rem; color: var(--teal); font-weight: 700; margin-bottom: .8rem; }
.tarif-card p { font-size: .9rem; color: var(--grey); margin-bottom: 1rem; }
.tarif-card ul { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.tarif-card li { padding: .4rem 0; font-size: .88rem; color: var(--petrol); display: flex; align-items: center; gap: .5rem; }
.tarif-card li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 1rem; }

/* ═══════════ ZONE ═══════════ */
.zone-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.zone-cities { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.zone-cities span {
  background: var(--white); border: 1px solid var(--border);
  padding: .35rem .9rem; border-radius: 50px; font-size: .82rem; color: var(--petrol);
  transition: all .3s var(--ease-bounce); cursor: default;
}
.zone-cities span:hover { background: var(--teal); color: var(--white); border-color: var(--teal); transform: translateY(-2px); }
.zone-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.zone-map iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════ STEPS ═══════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: var(--border); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(11,110,94,.2);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease);
}
.step:hover .step__num { transform: scale(1.1); box-shadow: 0 6px 24px rgba(11,110,94,.3); }
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; color: var(--navy); }
.step p { font-size: .88rem; color: var(--grey); max-width: 280px; margin: 0 auto; }

/* ═══════════ AVIS ═══════════ */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.avis-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1px solid rgba(1,74,133,.08);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease);
  position: relative;
}
.avis-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.avis-card::before { content: '"'; font-family: var(--font-display); font-size: 4rem; color: var(--teal); opacity: .12; position: absolute; top: .5rem; left: 1.2rem; line-height: 1; }
.avis-card__stars { color: #f5a623; font-size: 1rem; margin-bottom: .8rem; letter-spacing: 3px; }
.avis-card p { font-size: .9rem; color: var(--grey); margin-bottom: 1rem; line-height: 1.6; }
.avis-card__author { font-weight: 600; font-size: .85rem; color: var(--navy); margin-top: 1rem; }

/* ═══════════ BOOKING ═══════════ */
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.booking-calendar { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-header h3 { font-size: 1.05rem; color: var(--navy); }
.cal-nav { display: flex; gap: .5rem; }
.cal-nav button {
  width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--white); cursor: pointer; font-size: 1.2rem; color: var(--navy); font-weight: 700;
  transition: all .3s var(--ease-bounce); display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover { border-color: var(--teal); color: var(--teal); transform: scale(1.08); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-name { text-align: center; font-size: .72rem; font-weight: 700; text-transform: uppercase; color: var(--grey-light); padding: .5rem 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: .85rem; font-weight: 500; cursor: pointer;
  transition: all .25s var(--ease-bounce); position: relative;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) { background: var(--teal-light); color: var(--teal); transform: scale(1.1); }
.cal-day--today { font-weight: 700; box-shadow: inset 0 0 0 2px var(--teal); }
.cal-day--selected { background: var(--teal) !important; color: var(--white) !important; font-weight: 700; transform: scale(1.05); }
.cal-day--disabled { color: var(--grey-light); cursor: not-allowed; opacity: .4; }
.cal-day--empty { cursor: default; }
.cal-day--has-bookings::after { content: ''; position: absolute; bottom: 4px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.cal-day--full { background: #f0f0f0; color: var(--grey-light); cursor: not-allowed; text-decoration: line-through; }
.time-slots { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.time-slots h4 { font-size: .88rem; margin-bottom: .8rem; color: var(--navy); }
.time-slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: .4rem; }
.time-slot {
  padding: .45rem .3rem; text-align: center; font-size: .8rem; font-weight: 500;
  border: 1.5px solid var(--border); border-radius: 6px; cursor: pointer;
  transition: all .25s var(--ease-bounce); background: var(--white);
}
.time-slot:hover:not(.time-slot--booked) { border-color: var(--teal); background: var(--teal-light); color: var(--teal); transform: scale(1.06); }
.time-slot--selected { background: var(--teal) !important; border-color: var(--teal) !important; color: var(--white) !important; font-weight: 700; }
.time-slot--booked { background: #f0f0f0; color: var(--grey-light); cursor: not-allowed; text-decoration: line-through; border-color: #e0e0e0; }

/* Booking form */
.booking-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.booking-form h3 { font-size: 1.15rem; margin-bottom: .3rem; color: var(--navy); }
.booking-form .form-sub { font-size: .88rem; color: var(--grey); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: .9rem; color: var(--petrol);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal); outline: none;
  box-shadow: 0 0 0 3px rgba(11,110,94,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-selected-info { background: var(--teal-light); border-radius: 8px; padding: .8rem 1rem; margin-bottom: 1.2rem; font-size: .88rem; color: var(--teal-dark); font-weight: 600; display: none; }
.booking-selected-info.show { display: block; }
.ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-message { padding: .8rem 1rem; border-radius: 8px; font-size: .88rem; font-weight: 500; margin-top: 1rem; display: none; }
.form-message--success { background: #d4edda; color: #155724; display: block; }
.form-message--error { background: #f8d7da; color: #721c24; display: block; }

/* ═══════════ CONTACT ═══════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--navy); }
.contact-info p { font-size: .92rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; transition: transform .3s var(--ease-bounce); }
.contact-detail:hover { transform: translateX(4px); }
.contact-detail__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: background .3s var(--ease); }
.contact-detail:hover .contact-detail__icon { background: var(--teal); }
.contact-detail__text { font-size: .9rem; }
.contact-detail__text strong { display: block; font-size: .82rem; color: var(--grey-light); font-weight: 600; margin-bottom: .1rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--navy); }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.footer__brand span { color: var(--sage); }
.footer p { font-size: .82rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: .82rem; transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero__content { max-width: 100%; }
  .zone-layout, .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__cta.desktop-only { display: none; }
  .burger { display: flex; }
  .navbar__links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 1.5rem; box-shadow: var(--shadow-md); gap: .8rem; }
  .navbar__links.open a { padding: .6rem 0; font-size: .95rem; }
  section { padding: 3.5rem 0; }
  .hero__badges { flex-direction: column; align-items: stretch; }
  .form-row, .tarifs-grid, .avis-grid { grid-template-columns: 1fr; }
}
img[loading="lazy"] { background: var(--teal-light); min-height: 120px; }

/* ============================================================
   Overrides — Hero bigger + Navbar glass + Neon ring + Services centering + Section backgrounds
   ============================================================ */

/* 3) NAVBAR: glass premium cohérent avec le hero */
.navbar{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29,122,106, 0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.navbar__links a{
  color: rgba(22,45,62, 0.82);
  font-weight: 600;
}
.navbar__links a:hover{ color: rgba(29,122,106, 1); }
.navbar__cta{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* 5) SERVICES: centrer les 2 dernières cartes (desktop 3 colonnes) */
@media (min-width: 981px){
  .services-grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
  .services-grid > *{ height: 100%; }
  /* si 5 cartes : la 4e et 5e passent sur la 2e ligne -> on centre en démarrant à la col 2 */
  .services-grid > :nth-last-child(2){ grid-column: 2; }
  .services-grid > :last-child{ grid-column: 3; }
}

/* 6) BACKGROUNDS: moins "vide" sur sections blanches */
section:not(.hero){
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(29,122,106,0.08), transparent 55%),
    radial-gradient(900px 460px at 92% 12%, rgba(242,140,40,0.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98));
}



/* =========================================================
   MOBILE FIXES — hero full-image + ticker + compact layout
   ========================================================= */
@media (max-width: 768px){
  .hero{ min-height: 100svh; }
  
  /* Hero overlay: more uniform on mobile for readability */
  .hero__bg::after{
    background: linear-gradient(
      180deg,
      rgba(22,45,62,.55) 0%,
      rgba(22,45,62,.6) 50%,
      rgba(22,45,62,.7) 100%
    ) !important;
  }

  .hero .container{
    padding-top: 90px;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    min-height: 100svh;
  }

  .hero__content{
    max-width: 100%;
    text-align: center;
  }

  .hero__tag{
    font-size: .68rem;
    padding: .35rem .9rem;
    margin-bottom: 1rem;
  }

  .hero h1, .hero__content h1{
    font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
    line-height: 1.08;
    margin-bottom: .8rem;
    text-align: center;
  }

  .hero__sub{
    font-size: .95rem !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: center;
  }

  /* Buttons: side by side, compact */
  .hero__buttons{
    gap: .6rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }
  .hero__buttons .btn{
    width: auto !important;
    padding: 12px 18px !important;
    font-size: .88rem !important;
  }


  /* Badges: cachés sur mobile */
  .hero__badges {
    display: none !important;
  }

  /* Ticker: smaller on mobile */
  .ticker { padding: .5rem 0; }
  .ticker__item { padding: 0 1.5rem; font-size: .75rem; }

  /* Mobile menu */
  .navbar__links.open{
    max-height: calc(100vh - 72px);
    overflow: auto;
  }

  /* Service cards: images shorter */
  .service-card__img { height: 180px; }
}

/* ═══════════ WHATSAPP FLOATING BUTTON ═══════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  min-width: 60px; min-height: 60px;
  max-width: 60px; max-height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease);
  cursor: pointer;
  overflow: hidden;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-float svg {
  width: 32px !important; height: 32px !important;
  min-width: 32px; min-height: 32px;
  max-width: 32px; max-height: 32px;
  fill: white;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-float { width: 52px; height: 52px; min-width: 52px; min-height: 52px; max-width: 52px; max-height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px !important; height: 28px !important; min-width: 28px; max-width: 28px; }
}

/* ═══════════ 2-STEP TIME PICKER ═══════════ */
.time-slot--hour {
  font-size: 1rem;
  font-weight: 600;
  min-width: 70px;
  padding: .7rem 1rem;
}
.time-slot--minute {
  font-size: .95rem;
  font-weight: 600;
}
.time-back {
  color: var(--teal);
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
  transition: color .2s ease;
}
.time-back:hover { color: var(--orange); }
.time-slots h4 {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

/* ═══════════ AUTH NAVBAR ═══════════ */
.navbar__auth { display: flex; align-items: center; gap: .5rem; margin-left: auto; margin-right: 1rem; }
.navbar__login-btn {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  padding: .45rem 1rem; border-radius: 50px;
  border: 2px solid var(--navy);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.navbar__login-btn:hover { background: var(--navy); color: #fff; }
.navbar__user-btn {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
  padding: .4rem .9rem; border-radius: 50px;
  background: var(--teal-light); cursor: pointer;
  border: 2px solid var(--teal);
  transition: all .3s var(--ease);
}
.navbar__user-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.navbar__user-pts { font-size: .7rem; background: var(--orange); color: #fff; padding: .15rem .5rem; border-radius: 50px; font-weight: 700; }

/* ═══════════ MODAL ═══════════ */
.modal-overlay {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: 100vw !important; height: 100vh !important;
  z-index: 99999 !important;
  background: rgba(0,0,0,.55) !important;
  display: none;
  align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: none !important;
}
/* modal open/close handled via JS style.display */
.modal {
  background: #fff; border-radius: 18px; padding: 2rem;
  width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal--account { max-width: 520px; }
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem; color: var(--grey);
  cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.modal__close:hover { background: rgba(0,0,0,.06); }
.modal__tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 2px solid #eee; }
.modal__tab {
  flex: 1; padding: .8rem; text-align: center;
  background: none; border: none; font-size: .9rem; font-weight: 600;
  color: var(--grey); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all .2s ease;
  font-family: var(--font-body);
}
.modal__tab.active { color: var(--navy); border-bottom-color: var(--teal); }
.modal__bonus {
  text-align: center; margin-top: .8rem;
  font-size: .85rem; color: var(--orange); font-weight: 600;
}

/* ═══════════ ACCOUNT PANEL ═══════════ */
.account-header {
  text-align: center; padding-bottom: 1.2rem;
  border-bottom: 1px solid #eee; margin-bottom: 1.2rem;
}
.account-header h3 { margin-bottom: .3rem; color: var(--navy); }
.account-header p { font-size: .85rem; color: var(--grey); }
.account-loyalty {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 14px; padding: 1.3rem;
  color: #fff; text-align: center; margin-bottom: 1.5rem;
}
.account-loyalty__level { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.account-loyalty__points { font-size: 2rem; font-weight: 800; font-family: var(--font-display); }
.account-loyalty__progress { background: rgba(255,255,255,.2); border-radius: 50px; height: 8px; margin-top: .8rem; overflow: hidden; }
.account-loyalty__bar { background: var(--orange); height: 100%; border-radius: 50px; transition: width .6s ease; }
.account-loyalty__next { font-size: .75rem; margin-top: .4rem; opacity: .8; }
.account-history h4 { font-size: .9rem; color: var(--navy); margin-bottom: .6rem; }
.account-history__list { max-height: 200px; overflow-y: auto; }
.account-history__item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid #f0f0f0;
  font-size: .82rem;
}
.account-history__item:last-child { border-bottom: none; }
.account-history__pts { font-weight: 700; color: var(--teal); }
.btn--ghost {
  background: none; color: var(--grey); border: 1px solid #ddd;
  margin-top: 1rem; font-size: .85rem;
}
.btn--ghost:hover { background: #f5f5f5; color: #fff; }

@media (max-width: 768px) {
  .navbar__auth { margin-right: .5rem; }
  .navbar__login-btn { font-size: .75rem; padding: .35rem .75rem; }
  .modal { padding: 1.5rem; margin: .5rem; }
}

/* ═══════════ LOYALTY BANNER IN BOOKING ═══════════ */
.loyalty-banner {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  border-radius: 12px;
  padding: .9rem 1.2rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.loyalty-banner__icon { font-size: 1.4rem; }
.loyalty-banner__text strong { color: var(--orange); }
.loyalty-banner--guest {
  background: linear-gradient(135deg, #f0f4f8, #e8edf2);
  color: #3a4a5a;
}
.loyalty-banner--guest a { color: var(--teal); font-weight: 700; text-decoration: underline; }

/* ═══════════ POINTS POPUP ANIMATION ═══════════ */
.points-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  z-index: 99999;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: popIn .4s var(--ease-bounce), popOut .4s ease 2.2s forwards;
}
.points-popup span { color: var(--orange); font-size: 2rem; display: block; margin-top: .3rem; }
@keyframes popIn { from { opacity: 0; transform: translate(-50%,-50%) scale(.6); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes popOut { to { opacity: 0; transform: translate(-50%,-60%) scale(.8); } }

/* ═══════════ NAVBAR SPACING FIX ═══════════ */
.navbar .container { gap: .4rem; }
.navbar__logo { flex-shrink: 0; margin-right: .5rem; }
.navbar__links { margin: 0 auto; gap: 1rem; }
.navbar__links a { font-size: .82rem; white-space: nowrap; }
.navbar__cta { white-space: nowrap; flex-shrink: 0; font-size: .78rem; padding: .45rem .9rem; }
.navbar__auth { flex-shrink: 0; margin-left: .3rem; }
@media (max-width: 1200px) {
  .navbar__links { gap: .6rem; }
  .navbar__links a { font-size: .74rem; }
  .navbar__cta { font-size: .72rem; padding: .35rem .7rem; }
}
@media (max-width: 1000px) {
  .navbar__cta.desktop-only { display: none; }
}

/* ═══════════ PRICE ESTIMATE ═══════════ */
.price-estimate {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.3rem;
  margin: .5rem 0 1rem;
  font-size: .9rem;
}
.price-estimate__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .3rem;
  color: rgba(255,255,255,.95);
}
.price-estimate__row:last-child { margin-bottom: 0; }
.price-estimate__total {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff !important;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .4rem .6rem;
  margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.3);
}
.price-estimate__total span {
  color: #fff !important;
}
.price-estimate__note {
  font-size: .75rem;
  opacity: .85;
  margin-top: .4rem;
  color: rgba(255,255,255,.9);
}

/* ═══════════ ADDRESS AUTOCOMPLETE ═══════════ */
.autocomplete-wrapper { position: relative; }
.autocomplete-list {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 1000;
  background: #fff; border: 2px solid var(--teal); border-top: none;
  border-radius: 0 0 10px 10px; max-height: 200px; overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  display: none;
}
.autocomplete-list.show { display: block; }
.autocomplete-item {
  padding: .6rem .8rem; font-size: .82rem; cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.autocomplete-item:hover, .autocomplete-item.active {
  background: var(--teal-light);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item small { color: var(--grey); display: block; font-size: .72rem; }


/* ═══════════ MOBILE FIXES V8 ═══════════ */

/* Prevent horizontal scroll */
html, body { overflow-x: hidden; }

/* Booking layout: stack on mobile */
@media (max-width: 768px) {
  .booking-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-form { order: 2; }
  .booking-calendar { order: 1; }
}

/* Hero mobile */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero__content h1 { font-size: clamp(28px, 7vw, 42px); }
  .hero__sub { font-size: clamp(14px, 3.5vw, 17px); }
  .hero__buttons { flex-direction: column; gap: 10px; }
  .hero__buttons .btn { width: 100%; text-align: center; }
  .hero__badges { gap: .5rem; }
}

/* Price estimate mobile */
@media (max-width: 768px) {
  .price-estimate { padding: .8rem 1rem; font-size: .82rem; }
  .price-estimate__total { font-size: 1.1rem; }
}

/* Autocomplete mobile */
@media (max-width: 768px) {
  .autocomplete-list { max-height: 180px; }
  .autocomplete-item { padding: .5rem .7rem; }
}

/* Modal mobile */
@media (max-width: 768px) {
  .modal { padding: 1.5rem; margin: .5rem; max-width: calc(100vw - 1rem); }
  .modal__tabs { gap: 0; }
  .modal__tab { font-size: .85rem; padding: .6rem .8rem; }
}

/* Navbar mobile - user button */
@media (max-width: 768px) {
  .navbar__auth { margin-left: auto; margin-right: .5rem; }
  .navbar__user-btn { font-size: .8rem; padding: .3rem .6rem; }
  .navbar__user-pts { font-size: .7rem; }
  .navbar__login-btn { font-size: .8rem; padding: .4rem .8rem; }
}

/* Services grid mobile */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Zone map mobile */
@media (max-width: 768px) {
  .zone-map iframe { height: 250px; }
}

/* Contact form mobile */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; gap: .8rem; }
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
}

/* Time slots mobile - bigger touch targets */
@media (max-width: 768px) {
  .time-slot { min-height: 44px; font-size: .9rem; }
  .time-slot--hour { min-width: 60px; }
}

/* Payment modal mobile (inline styles override) */
@media (max-width: 480px) {
  #paymentModal > div { padding: 1.5rem !important; margin: .5rem !important; }
}

/* Ticker banner mobile */
@media (max-width: 768px) {
  .ticker { font-size: .75rem; }
}



/* ═══════════ HERO ORIGINAL (new colors) ═══════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg-mobile { display: none; }
.hero__bg-desktop { display: block; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 6rem 0 4rem;
}
.hero__content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 10px 35px rgba(0,0,0,0.35);
}
.hero__content h1 span { color: #6bcf9f; }
.hero__tag {
  display: inline-block;
  background: rgba(107, 207, 159, 0.15);
  border: 1px solid rgba(107, 207, 159, 0.35);
  color: #6bcf9f;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}
.hero__sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  max-width: 520px;
  margin: 1rem 0 1.5rem;
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.hero__buttons { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.hero__buttons .btn {
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}
.hero__buttons .btn--cta {
  background: #6bcf9f;
  color: #fff;
  font-weight: 700;
  padding: 15px 24px;
  box-shadow: 0 4px 16px rgba(107,207,159,0.3);
}
.hero__buttons .btn--cta:hover {
  background: #5ab88c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,207,159,0.4);
}
.hero__buttons .btn--outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.hero__buttons .btn--outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,.6);
}
.hero__badges {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .5rem 1rem;
}
.hero__badge-icon { font-size: 1.1rem; }
.hero__badge-title { color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 600; }

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero__content h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; text-align: center; }
  .hero__badges { flex-direction: column; align-items: flex-start; }
  .hero__bg::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }
}

/* Avis cards enhanced */
.avis-card::before { color: var(--teal); opacity: .3; font-size: 2.5rem; }
.avis-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(1,74,133,.12); }


/* ═══════════ LANDING PAGES SEO ═══════════ */
.breadcrumb { font-size: .8rem; margin-bottom: 1.5rem; color: var(--grey); }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

.landing-hero {
  background: linear-gradient(135deg, #012d5a, #014a85);
  color: #fff !important; padding: 8rem 0 4rem; text-align: center;
}
.landing-hero * { color: #fff; }
.landing-hero .btn--cta { color: #fff; background: var(--teal); }
.landing-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.landing-hero h1 { font-family: 'Raleway', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 1rem; color: #fff; }
.landing-hero__sub { font-size: clamp(14px, 1.2vw, 18px); max-width: 700px; margin: 0 auto 2rem; opacity: .85; line-height: 1.6; }
.landing-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.landing-hero__cta .btn { padding: 14px 28px; border-radius: 12px; font-size: 1rem; font-weight: 700; text-decoration: none; }
.landing-hero__cta .btn--outline { border: 2px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(6px); }
.landing-hero__cta .btn--outline:hover { background: rgba(255,255,255,.1); }
.landing-hero__badge { display: inline-block; background: rgba(107,207,159,.2); border: 1px solid rgba(107,207,159,.4); color: #6bcf9f; padding: .4rem 1.2rem; border-radius: 50px; font-size: .85rem; font-weight: 600; }
.landing-hero .breadcrumb { color: rgba(255,255,255,.7); text-align: left; }
.landing-hero .breadcrumb strong { color: #fff; }
.landing-hero .breadcrumb a { color: rgba(255,255,255,.8); }

.landing-section { padding: 4rem 0; }
.landing-section--alt { background: #f8fafb; }
.landing-section h2 { font-family: 'Raleway', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; text-align: center; }
.landing-section > .container > p { max-width: 700px; margin: 0 auto 2rem; text-align: center; color: var(--grey); line-height: 1.65; }

.landing-etabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; max-width: 800px; margin: 0 auto; }
.landing-etab { display: flex; align-items: center; gap: .8rem; background: #fff; padding: 1rem 1.2rem; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.05); border-left: 4px solid var(--teal); }
.landing-etab__icon { font-size: 1.3rem; }

.landing-promesses { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.landing-promesse { text-align: center; padding: 1.5rem; background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.landing-promesse span { font-size: 2rem; display: block; margin-bottom: .8rem; }
.landing-promesse h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.landing-promesse p { font-size: .85rem; color: var(--grey); line-height: 1.5; }

.landing-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.landing-service { background: #fff; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,.05); border: 1px solid rgba(1,74,133,.06); }
.landing-service h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.landing-service p { font-size: .85rem; color: var(--grey); line-height: 1.5; }

.landing-cta { background: linear-gradient(135deg, #012d5a, #014a85); color: #fff !important; padding: 4rem 0; text-align: center; }
.landing-cta * { color: #fff; }
.landing-cta .btn--cta { background: var(--teal); color: #fff; }
.landing-cta h2 { color: #fff; }
.landing-cta p { color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 1.5rem; }
.landing-cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.landing-cta__buttons .btn--lg { padding: 16px 32px; font-size: 1.05rem; border-radius: 14px; text-decoration: none; }
.landing-cta__buttons .btn--outline { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.landing-cta__hours { font-size: .85rem; margin-top: 1.5rem; opacity: .7; }

.footer__zones { text-align: center; padding: 1rem 0; font-size: .8rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 1rem; }
.footer__zones a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer__zones a:hover { color: var(--teal); }
.footer__zones p { color: rgba(255,255,255,.5); }

@media (max-width: 768px) {
  .landing-hero { padding: 6rem 0 3rem; }
  .landing-hero__cta { flex-direction: column; align-items: center; }
  .landing-cta__buttons { flex-direction: column; align-items: center; }
}
/* ============================================================
   CORRECTIF : IMAGE HERO MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    /* On réduit la hauteur de l'écran à 75% au lieu de 100% 
       pour forcer l'image à moins se rogner sur les côtés */
    min-height: 75svh !important; 
  }
  
  .hero .container {
    min-height: 75svh !important;
  }

/* ============================================================
   LOGO NAVBAR & FOOTER
   ============================================================ */
.navbar__logo-img {
  height: 38px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
}
.footer__logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 0 white);
}
.footer__brand {
  display: flex;
  align-items: center;
}


@media (max-width: 768px) {
  .hero__bg-desktop { display: none; }
  .hero__bg-mobile {
    display: block;
    object-position: center top;
  }
}

/* ============================================================
   VILLES DÉPLIABLES
   ============================================================ */
.ville-extra {
  display: none !important;
}
.ville-extra.visible {
  display: inline-flex !important;
}

.zone-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  background: var(--teal);
  color: white;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 4px 12px rgba(29,122,106,.25);
}
.zone-toggle:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.zone-toggle svg {
  transition: transform .3s ease;
  flex-shrink: 0;
}
.zone-toggle.open svg {
  transform: rotate(180deg);
}

/* ============================================================
   SERVICE CARD : image plus haute pour voir toute la photo
   ============================================================ */
.service-card__img {
  height: 240px !important;
}
@media (max-width: 768px) {
  .service-card__img {
    height: 220px !important;
  }
}

/* ============================================================
   CONTACT CTA CARD
   ============================================================ */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-cta__card {
  background: linear-gradient(135deg, #f0faf5, #e0f4ec);
  border: 2px solid var(--teal);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
}
.contact-cta__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-cta__card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.contact-cta__card p {
  color: var(--grey);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============================================================
   SECTION AUDIENCE (Particulier / Institution)
   ============================================================ */
/* ============================================================
   ALTERNANCE FOND DES SECTIONS
   ============================================================ */
section:nth-of-type(even):not(.hero):not(#reservation) {
  background: #f4f7fb !important;
}
section:nth-of-type(odd):not(.hero):not(#reservation) {
  background: #fff !important;
}
#reservation {
  background: linear-gradient(160deg, #f4f7fb 0%, #e8f4f0 100%) !important;
}

/* ============================================================
   CARTES AUDIENCE — PARTICULIER / INSTITUTION
   ============================================================ */
.audience-section {
  padding: 4rem 0;
  background: #f4f7fb !important;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.audience-card__bg {
  position: absolute;
  inset: 0;
}
.audience-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.audience-card:hover .audience-card__bg img {
  transform: scale(1.06);
}
.audience-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.audience-card--particulier .audience-card__bg::after {
  background: linear-gradient(to top, rgba(29,122,106,.92) 30%, rgba(29,122,106,.3) 100%);
}
.audience-card--institution .audience-card__bg::after {
  background: linear-gradient(to top, rgba(26,60,94,.95) 30%, rgba(26,60,94,.4) 100%);
}
.audience-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.audience-card__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.audience-card--particulier .audience-card__label {
  background: rgba(107,207,159,.25);
  color: #6bcf9f;
  border: 1px solid #6bcf9f;
}
.audience-card--institution .audience-card__label {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.audience-card__content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .6rem;
  line-height: 1.2;
}
.audience-card__content p {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.audience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  transition: all .2s;
}
.audience-card--particulier .audience-card__cta {
  background: #6bcf9f;
  color: #1A3C5E;
}
.audience-card--institution .audience-card__cta {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.audience-card:hover .audience-card__cta {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 240px; }
}

/* ============================================================
   BANDEAU INSTITUTIONS — discret
   ============================================================ */
.instit-banner {
  background: #1A3C5E;
  padding: .85rem 0;
  text-align: center;
}
.instit-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.instit-banner__text {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
}
.instit-banner__link {
  color: #6bcf9f;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.instit-banner__link:hover {
  color: #fff;
}
@media (max-width: 600px) {
  .instit-banner .container { flex-direction: column; gap: .4rem; }
}

/* ============================================================
   TOP BAR INSTITUTIONS — orange, tout en haut
   ============================================================ */
.topbar-instit {
  background: #E8720C;
  padding: .65rem 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(232,114,12,.3);
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar-instit .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-instit__text {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.topbar-instit__link {
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  background: rgba(255,255,255,.2);
  padding: .25rem .9rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.5);
  transition: all .2s;
  white-space: nowrap;
}
.topbar-instit__link:hover { background: rgba(255,255,255,.35); }
.topbar-instit__arrow {
  display: inline-block;
  transition: transform .2s;
}
.topbar-instit__link:hover .topbar-instit__arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .topbar-instit .container { flex-direction: column; gap: .2rem; }
  .topbar-instit__text { font-size: .78rem; }
  .topbar-instit { display: none; }
  .navbar { top: 0; }
}

/* ============================================================
   LIEN INSTITUTIONS EN ORANGE DANS LE MENU
   ============================================================ */
.navbar__links a[href="institutions.php"] {
  color: #E8720C !important;
  font-weight: 700;
}
.navbar__links a[href="institutions.php"]:hover {
  color: #c45e00 !important;
}
.navbar__links a[href="institutions.php"]::after {
  background: #E8720C !important;
}

/* CTA institutions hero */
.btn--instit {
  display: inline-block;
  margin-top: 1.2rem;
  background: #E8720C;
  color: #fff !important;
  font-size: .88rem;
  font-weight: 700;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  border: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 18px rgba(232,114,12,.4);
}
.btn--instit:hover {
  background: #c45e00;
  transform: translateX(3px);
}

/* Institutions orange dans navbar */
.navbar__links a[href="institutions.php"] {
  color: #E8720C !important;
  font-weight: 700;
}
.navbar__links a[href="institutions.php"]:hover { color: #c45e00 !important; }
.navbar__links a[href="institutions.php"]::after { background: #E8720C !important; }
