
/* ================= GLOBAL ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  height: 220px;
  background-color: #006986;
}

/* ===== GRID STRUCTURE ===== */
.navbar-inner {
  max-width: 1351px;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1fr 205px 1fr;
  align-items: center;
}

/* ===== LEFT NAV ===== */
.to-left {
  margin-left: -140px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-left a {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
  margin-right: 15px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0.2px 0 #fff, -0.2px 0 #fff;
  display: inline-block;
  transform: scaleY(1.15);
}

.nav-left a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #000;
}

/* ===== CENTER LOGO ===== */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-center img {
  width: 205px;
  height: 205px;
  object-fit: contain;
}

/* ===== RIGHT SOCIAL ICONS ===== */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.social-icon {
  width: 35px;
  height: 35px;
  fill: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}




.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 80px;
}

.faq-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.faq-row.reverse {
  flex-direction: row-reverse;
}

.faq-image {
  flex: 1;
}

.faq-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.faq-content {
  flex: 1;
}

.faq-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.faq-content p,
.faq-content ul {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.faq-content ul {
  padding-left: 20px;
  list-style: disc;
}






/* ================= HERO SLIDER ================= */
/* Full width without white margins */
.lc-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: visible; /* ✅ allow wave outside */
  display: block;
}

/* Slider frame: MUST crop zoom */
.lc-hero__slider {
  position: relative;
  width: 100%;
  height: 1013px; /* your chosen exact height */
  overflow: hidden; /* ✅ crop image while zooming */
}

/* ===== SLIDE ===== */
.lc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
  display: grid;
  align-items: center;
  overflow: hidden; /* ✅ extra safety crop */
}

.lc-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== BACKGROUND IMAGE ===== */
.lc-slide__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

/* Ken Burns animation */
.lc-slide.is-active .lc-slide__bg {
  animation: lc-kenburns 6500ms ease-in-out forwards;
}

@keyframes lc-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* ===== OVERLAY ===== */
.lc-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.30) 55%,
    rgba(0,0,0,.10) 100%
  );
}

/* ===== HERO SLIDE CONTENT CENTER ===== */
.lc-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  color: #fff;
}

/* ===== TYPO ===== */
.lc-kicker {
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #f6cc2c;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0.2px 0 #f6cc2c, -0.2px 0 #f6cc2c;
}

.lc-title {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0.2px 0 #fff, -0.2px 0 #fff;
}

.lc-sub {
  margin: 0 0 22px 0;
  font-size: clamp(14px, 1.4vw, 18px);
  text-transform: uppercase;
  opacity: .95;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0.2px 0 #fff, -0.2px 0 #fff;
}

/* ===== BUTTON ===== */
.lc-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: #006986;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 150ms ease, opacity 150ms ease;
}

.lc-btn:hover {
  transform: translateY(-1px);
  opacity: .95;
}

/* ===== TEXT ANIMATIONS ===== */
.lc-slide [data-anim] {
  opacity: 0;
  transform: translateY(18px);
}

.lc-slide.is-active [data-anim] {
  animation: lc-reveal 900ms cubic-bezier(.2,.8,.2,1) forwards;
}

.lc-slide.is-active .lc-kicker { animation-delay: 120ms; }
.lc-slide.is-active .lc-title  { animation-delay: 240ms; }
.lc-slide.is-active .lc-sub    { animation-delay: 380ms; }
.lc-slide.is-active .lc-btn    { animation-delay: 520ms; }

@keyframes lc-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SLIDER CONTROLS (arrows left/right) ===== */
.lc-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.lc-arrow {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 55px;
  height: 55px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lc-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.lc-prev { margin-left: 25px; }
.lc-next { margin-right: 25px; }

/* ===== DOTS (kept but hidden) ===== */
.lc-dots { display: none; }

.lc-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.55);
  transition: transform 200ms ease, background 200ms ease;
}

.lc-dot.is-active {
  background: rgba(255,255,255,1);
  transform: scale(1.15);
}

/* ================= WAVE DIVIDER ================= */
/* NOTE: your HTML uses class="wave-divider" (not wave--hero) */
.wave-divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  line-height: 0;
  pointer-events: none;

  /* ✅ adjust: 0% = wave higher (covers more image) */
  transform: translateY(25%);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 260px;
}



/* ===== WHY ALLOCLEAN ===== */
.why-alloclean {
  background: #ffffff;
  padding: 80px 20px;
}

.why-container {
  max-width: 1600px; /* ⬅️ plus large pour tenir 5 cartes */
  margin: 0 auto;
}

.why-title {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #000;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== Cards layout ===== */
.why-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: nowrap; /* ✅ UNE SEULE LIGNE */
}

/* ===== Card ===== */
.why-card {
  background: #ffffff;
  width: 240px;        /* ✅ taille idéale pour 5 cartes */
  min-width: 240px;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Icon ===== */
.why-card img {
  width: 200px;
  height: 185px;
  margin-bottom: 28px;
}

.why-card img.icon-small {
  width: 150px;
  padding-top: 35px;
  height: auto;
}

/* ===== Title ===== */
.why-card h3 {
  background: #006986;
  color: #ffffff;
  width: 100%;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 22px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== Text ===== */
.why-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

/* ===== Responsive (tablette & mobile) ===== */
@media (max-width: 1200px) {
  .why-cards {
    flex-wrap: wrap; /* ✅ autorise retour à la ligne */
  }

  .why-card {
    width: 100%;
    max-width: 320px;
  }
}


.why-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 105, 134, 0.15);
}


/* -- ================== STYLES ================== */
/* ---- Carte ---- */
.card{
  background:#fff;
  border-radius:12px;
  padding:24px;
  width:100%;
  margin:0 auto;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-align:center;

  box-shadow:0 12px 28px rgba(16,24,40,.12);
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 20px rgba(16,24,40,.16);
}

/* ---- Titres / textes ---- */
.card h3{
  margin:0;
  font-size:20px;
  font-weight:700;
  color:#6C2783; /* violet */
}

.card p{
  margin:6px 0 0;
  font-size:13px;
  color:#6b7280; /* gris */
}

/* ---- Prix ---- */
.price{
  margin-top:16px;
  margin-bottom:20px;
  line-height:1;
}

.price .num{
  font-size:52px;
  font-weight:800;
  color:#6C2783;
}

.price .cur{
  font-size:20px;
  font-weight:700;
  color:#6C2783;
  margin-left:4px;
}

/* ---- Liste ---- */
.card ul{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
  font-weight:600;
  color:#374151;
}

.card ul li{
  padding:10px 0;
  border-bottom:1px solid #d1d5db;
}

.card ul li:last-child{
  border-bottom:none;
}

/* ---- Bouton ---- */
.card a{
  display:block;
  width:100%;
  margin-top:22px;
  padding:12px 16px;

  background:#6C2783;
  color:#fff;
  text-decoration:none;
  border-radius:10px;

  transition:background .2s ease;
}

.card a:hover{
  background:#5a1f6d;
}



/* -----Prices------*/

:root{
  --violet:#006986;
  --text:#111827;
  --muted:#6b7280;
  --border:#d1d5db;
}

.pricing-tabs{ padding:40px 0 70px; background:#fff; }
.pricing-container{ max-width:1350px; margin:0 auto; padding:0 24px; }

/* tabs */
.pt-tabs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}



@media (min-width:1024px){
  .pt-tabs{ grid-template-columns:repeat(6,minmax(0,1fr)); }
}

.pt-tab{
  background:transparent;
  border:4px solid transparent;
  border-radius:12px;
  padding:14px 10px 10px;
  cursor:pointer;
  text-align:center;
  transition:border-color .2s ease,color .2s ease,transform .2s ease;
  color:var(--text);
  font-weight:600;

  min-height:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.pt-tab img{
  width:160px;
  max-width:100%;
  max-height:90px;
  height:auto;
  object-fit:contain;
  display:block;
  margin:0 auto 8px;
  user-select:none;
  pointer-events:none;
}
.pt-tab span{ display:block; font-size:14px; pointer-events:none; }

.pt-tab.is-active{
  border-color:var(--violet);
  color:var(--violet);
  font-weight:800;
}


.pt-track{
  display:flex;
  width:100%;
  transform:translateX(0%);
  transition:transform 700ms ease-in-out;
}
.pt-panel{ min-width:100%; }

/* cards grid */
.pt-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}
@media (min-width:768px){
  .pt-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1280px){
  .pt-grid{ grid-template-columns:repeat(4,1fr); }
}

/* motos */
.pt-grid--moto{
  grid-template-columns:repeat(2,1fr);
  max-width:760px;
  margin:0 auto;
}
@media (max-width:768px){
  .pt-grid--moto{ grid-template-columns:1fr; max-width:420px; }
}

/* card */
.pt-card{
  background:#fff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 14px 34px rgba(16,24,40,.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
  min-height:520px;
}
.pt-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 26px rgba(16,24,40,.16);
}

.pt-head h3{
  margin:0;
  color:var(--violet);
  font-size:22px;
  font-weight:800;
}
.pt-head p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* price */
.pt-price{
  margin-top:18px;
  margin-bottom:18px;
  line-height:1;
}
.pt-price .num{
  font-size:56px;
  font-weight:900;
  color:var(--violet);
}
.pt-price .cur{
  font-size:20px;
  font-weight:800;
  color:var(--violet);
  margin-left:6px;
}

/* list */
.pt-list{
  list-style:none;
  padding:0;
  margin:0;
  font-weight:700;
  color:#374151;
  font-size:14px;
}
.pt-list li{
  padding:11px 0;
  border-bottom:1px solid var(--border);
}
.pt-list li:last-child{ border-bottom:none; }

/* button */
.pt-btn{
  display:block;
  margin-top:20px;
  width:100%;
  padding:13px 16px;
  background:var(--violet);
  color:#fff;
  text-decoration:none;
  border-radius:12px;
  font-weight:800;
  transition:background .2s ease;
}
.pt-btn:hover {
  background-color: #055670;
}



/* ================= HOW IT WORKS ================= */
.how{
  background:#fff;
  padding: 70px 0 90px;
}

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

.how__title{
  text-align:center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color:#000;
  margin: 0 0 50px;
}

.how__steps{
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* row layout */
.how__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 70px;
}

.how__row--reverse{
  flex-direction: row-reverse;
}

/* image */
.how__imgWrap{
  flex: 0 0 200px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.how__imgWrap img{
  width: 100%;
  max-width: 340px;
  height:auto;
  display:block;
  user-select:none;
  pointer-events:none;
}

/* text */
.how__text{
  flex: 1 1 auto;
  max-width: 720px;
}

.how__text h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color:#000;
  font-size: 35px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.how__text p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color:#1f2937;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  margin: 0;
  max-width: 820px;
}

/* responsive */
@media (max-width: 900px){
  .how__steps{ gap: 55px; }
  .how__row,
  .how__row--reverse{
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .how__imgWrap{
    flex: 0 0 auto;
    width: 220px;
  }

  .how__text{
    max-width: 680px;
  }
}

/* Commande and whatssap */
/* ===== FLOATING BUTTONS ===== */
.floating-btn {
  position: fixed;
  right: 28px;
  width: 230px;
  height: 70px;
  background-color: #fed141; /* jaune */
  border: 6px solid #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #006986; /* violet */
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

/* ===== WhatsApp button ===== */
.whatsapp-btn {
  bottom: 120px;
}

.whatsapp-btn i {
  font-size: 45px;
  color: #006986;
}

/* ===== Commander button ===== */
.order-btn {
  bottom: 25px;
  font-size: 25px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .floating-btn {
    width: 110px;
    height: 60px;
    right: 15px;
  }

  .order-btn {
    font-size: 14px;
  }

  .whatsapp-btn i {
    font-size: 26px;
  }
}


/* ================= OVERRIDES / FIXES ================= */
/* ================= FIX FLOATING BUTTONS POSITION ================= */

.floating-wrapper {
  position: fixed;
  right: 28px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 50;
}

/* empêcher chevauchement avec le hero */
.lc-hero {
  position: relative;
  z-index: 1;
}




/*Footer*/

/* ====== GLOBAL ====== */
.footer-wrapper {
  background-color: #006986;
  color: #ffffff;
  font-family: "Arial", sans-serif;
  position: relative;
  overflow: hidden;
}

/* ====== SECTION APP DOWNLOAD ====== */
.footer-app {
  padding: 80px 20px;
  position: relative;
}

.footer-app .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-app-text h3 {
  color: #fed141;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-app-text h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-app-text p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}



/* ====== YELLOW LINE ====== */
.footer-separator {
  height: 2px;
  background-color: #fed141;
  width: 100%;
}

/* ====== MAIN FOOTER ====== */
.footer-main {
  padding: 70px 20px;
  background-image: url("./assets/images/Img-Footer.png");
  background-size: cover;
  background-position: center;
}

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

/* ====== BRAND ====== */
.footer-brand img {
  height: 250px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fed141;
}

/* ====== CONTACT ====== */
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #fed141;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fed141;
  font-size: 18px;
}

.footer-contact strong {
  display: block;
  font-size: 15px;
}

/* ====== LINKS ====== */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fed141;
}

/* ====== BOTTOM ====== */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
}

/* ====== YELLOW BAR ====== */
.footer-bar {
  height: 25px;
  background-color: #fed141;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .footer-app .container {
    flex-direction: column;
    text-align: center;
  }


  .footer-main .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-icon {
    margin-right: 10px;
  }
}


/*Overwrite*/
/* ================= SHADOW PRICING SLIDER (SOFT) ================= */

.pt-viewport {
  position: relative;
  overflow: hidden;
}

/* shadow droite */
.pt-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px; /* PLUS LARGE = PLUS DOUX */
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.06) 35%,
    rgba(0, 0, 0, 0.02) 65%,
    rgba(0, 0, 0, 0.0) 100%
  );
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 10;
}

/* shadow gauche */
.pt-viewport::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.06) 35%,
    rgba(0, 0, 0, 0.02) 65%,
    rgba(0, 0, 0, 0.0) 100%
  );
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 10;
  
}

/* états */
.pt-viewport.has-right-shadow::after {
  opacity: 1;
  border-radius: 3%;
}

.pt-viewport.has-left-shadow::before {
  opacity: 1;
  border-radius: 3%;
}

/* PANEL MOTORCYCLES */
.pt-panel:nth-last-of-type(2) .pt-grid {
  grid-template-columns: repeat(2, 1fr);
  justify-content: end;
}

/* PANEL TEXTILE */
.pt-panel:last-of-type .pt-grid {
  grid-template-columns: 1fr;
  justify-content: end;
}

.pt-panel:last-of-type .pt-card {
  grid-column: 4 / 5;
}


/*Loading */
/* ================= CLEAN SPINNER LOADER ================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: #006986; /* ta couleur */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
}

body.is-loading {
  overflow: hidden;
}

/* spinner */
.spinner {
  width: 64px;              /* taille moyenne */
  height: 64px;
  border: 6px solid rgba(255,255,255,0.25);
  border-top-color: #ffffff; /* bleu clair / blanc */
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.faq-image.slideshow {
  width: 520px;
  height: 380px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease-in-out;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  transition: background-image 0.8s ease-in-out, transform 0.35s ease;

}


@media (max-width: 900px) {
  .faq-image.slideshow {
    width: 100%;
    height: 260px;   /* ⬅️ plus grand sur mobile */
    margin-bottom: 24px;
  }
}

.faq-image.slideshow:hover {
  transform: scale(1.03);
}




/* ================= GOOGLE REVIEWS XXL ================= */

.google-reviews {
  background: #ffffff;
  padding: 160px 0; /* ⬅️ encore plus haut */
}

.google-reviews-inner {
  max-width: 1600px; /* ⬅️ TRÈS LARGE */
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 440px 1fr; /* ⬅️ résumé énorme */
  gap: 90px;
  align-items: center;
}



/* ===== LEFT SUMMARY ===== */
.google-summary h2 {
  font-size: 38px; /* ⬅️ TITRE XXL */
  margin-bottom: 18px;
}

.google-summary .stars {
  color: #fbbc04;
  font-size: 30px; /* ⬅️ étoiles XXL */
  margin-bottom: 18px;
}

.google-summary p {
  font-size: 19px;
  color: #444;
}

.google-logo {
  width: 150px; /* ⬅️ logo Google BIEN visible */
  margin-top: 20px;
}

/* ===== SLIDER ===== */
.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 44px; /* ⬅️ gros espacements */
}

/* ===== REVIEW CARD ===== */
.review-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px; /* ⬅️ très spacieux */
  min-width: 520px; /* ⬅️ CARTES XXL */
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* ===== HEADER ===== */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-user {
  display: flex;
  gap: 18px;
  align-items: center;
}

.review-avatar {
  width: 56px; /* ⬅️ avatar XXL */
  height: 56px;
  border-radius: 50%;
  background: #4285f4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

/* Logo G */
.review-google {
  width: 100px; /* ⬅️ logo G bien visible */
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

/* ===== STARS ===== */
.review-stars {
  color: #fbbc04;
  font-size: 20px;
  margin: 18px 0;
}

/* ===== TEXT ===== */
.review-text {
  font-size: 17px;
  line-height: 1.8;
  color: #1f2937;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .google-reviews {
    padding: 110px 0;
  }

  .google-reviews-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .reviews-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .review-card {
    min-width: 90%;
    scroll-snap-align: center;
  }
}


/*Booking*/

/* ================= BOOKING UI (STYLE IDENTIQUE À L’IMAGE) ================= */

:root {
  --primary: #006986;
  --success: #22c55e;
  --dark: #0f172a;
  --bg: #f8fafc;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
}

/* ===== Wrapper ===== */
.booking-wrapper {
  max-width: 1250px;
  margin: 80px auto;
  font-family: Inter, sans-serif;
}

/* ===== Container ===== */
.booking-container {
  display: flex;
  border-radius: 18px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* ================= SIDEBAR ================= */
.booking-sidebar {
  width: 280px;
  background: var(--dark);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  opacity: .5;
}

.steps li.active {
  opacity: 1;
  font-weight: 700;
}

.steps li::before {
  content: attr(data-step);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Summary */
.summary {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.6;
  opacity: .9;
}

.summary .total {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 800;
  color: #03c74b;
}

/* ================= CONTENT ================= */
.booking-content {
  flex: 1;
  padding: 36px 42px;
  background: var(--bg);
}

.booking-content h2 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--text);
}

.booking-content p {
  color: white;
  margin-bottom: 26px;
}



.card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}

.card.selected {
  border-color: var(--primary);
  background: #eef2ff;
}

/* Icon */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Text */
.card-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.card-info span {
  font-size: 13px;
  color: var(--muted);
}

/* Price */
.card-price {
  margin-left: auto;
  font-weight: 800;
  color: var(--success);
  font-size: 16px;
}

/* ================= NAV BUTTONS ================= */
.nav {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}

.nav button {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
  background-color: #006986;
  color: #fff;
}

.nav button:hover {
  transform: translateY(-1px);
  opacity: .95;
  background-color: #055670;
}

.nav .prev {
  background: #e5e7eb;
  color: #111;
}

.nav .next {
  background: var(--primary);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .booking-container {
    flex-direction: column;
  }

  .booking-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 24px;
  }

  .summary {
    display: none;
  }
}

/* ================= STEPS VISIBILITY FIX ================= */

/* cacher toutes les étapes */
.step {
  display: none;
}

/* afficher UNIQUEMENT l’étape active */
.step.active {
  display: block;
}




/* ================= BOOKING STEPS COLORS ================= */

/* style de base du numéro */
.steps li::before {
  content: attr(data-step);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e293b; /* gris foncé */
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}

/* étape active */
.steps li.active::before {
  background: var(--primary); /* violet */
  color: #ffffff;
}

/* étape terminée */
.steps li.done::before {
  background: var(--success); /* vert */
  color: #ffffff;
}

/* texte */
.steps li {
  opacity: .45;
  transition: opacity .25s ease;
}

.steps li.active,
.steps li.done {
  opacity: 1;
  font-weight: 700;
}

.booking-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e9f9f1;
  color: #0f5132;
  border: 1px solid #b7ebcd;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  margin-bottom: 25px;
}

.booking-info i {
  color: #198754;
  font-size: 18px;
}


.summary {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  margin-top: 25px;
}

.summary h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.summary-line.muted {
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #22c55e;
}


/* =======================
   BOOKING – STEP 1 CARDS
   Style identique à la 1ère image
======================= */

.step[data-step="1"] .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.step[data-step="1"] .card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: left;
  font-weight: 600;
}

/* Hover */
.step[data-step="1"] .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* Icône voiture */
.step[data-step="1"] .card::before {
  font-size: 28px;
  background: #f3f4f6;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Texte service */
.step[data-step="1"] .card span {
  font-size: 18px;
  font-weight: 700;
  color: #22c55e;
}





/* ================= CARD WITH IMAGE ================= */

.cards .card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: all .25s ease;
  text-align: left;
}

/* image */
.cards .card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
}

/* texte */
.card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
}

.card-text span {
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
}

/* hover */
.cards .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/* sélection */
.cards .card.selected {
  border-color: #6366f1;
  background: #eef2ff;
}


/* ===== FORCE CENTRAGE TEXTE CARDS BOOKING ===== */

.cards button.card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
  text-align: center !important;
  gap: 12px;
}

/* image */
.cards button.card img {
  margin: 0 0 10px 0;
}

/* texte + prix */
.cards button.card {
  font-weight: 700;
}

.cards button.card span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
  color: #22c55e;
}

/* ===== SERVICES SCROLLABLE ===== */
.cards {
  max-height: 70vh;              /* hauteur visible */
  overflow-y: auto;              /* scroll vertical */
  padding-right: 10px;           /* éviter que le scroll colle */
}

/* scrollbar propre (Chrome / Edge / Safari) */
.cards::-webkit-scrollbar {
  width: 8px;
}

.cards::-webkit-scrollbar-track {
  background: transparent;
}

.cards::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}



.cards::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.35);
}

.booking-header {
  text-align: center;
}
.booking-header h2{
  font-size:40px;
}



/* ===============================
   SCROLLBAR VISIBLE – STEP 1
   =============================== */

.step[data-step="1"] .cards {
  max-height: 520px;          /* hauteur fixe */
  overflow-y: scroll;         /* force la scrollbar */
  padding-right: 10px;        /* évite que la barre cache le contenu */
}

/* Scrollbar Chrome / Edge / Safari */
.step[data-step="1"] .cards::-webkit-scrollbar {
  width: 10px;
}

.step[data-step="1"] .cards::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.step[data-step="1"] .cards::-webkit-scrollbar-thumb {
  background: #b5b5b5;
  border-radius: 10px;
}

.step[data-step="1"] .cards::-webkit-scrollbar-thumb:hover {
  background: #8f8f8f;
}

/* Firefox */
.step[data-step="1"] .cards {
  scrollbar-width: thin;
  scrollbar-color: #b5b5b5 #f1f1f1;
}


.summary-service-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#summary-service-price {
  font-weight: 600;
  white-space: nowrap;
}



/* ===== STEPS ===== */

.steps li {
  opacity: 0.4;
}

/* étape active ET étapes précédentes */
.steps li.active,
.steps li.passed {
  opacity: 1;
  font-weight: 700;
}

/* cercle */
.steps li::before {
  background: #1e293b;
  color: #fff;
}

/* cercle actif + passées = même couleur */
.steps li.active::before,
.steps li.passed::before {
  background: #006986; /* TA couleur actuelle */
}


.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.extra-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.extra-card:hover {
  border-color: #6366f1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.extra-card input {
  display: none;
}

.extra-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #006986;
}

.extra-content strong {
  display: block;
  font-size: 14px;
}

.extra-content .price {
  font-size: 13px;
  color: #16a34a;
}

/* état sélectionné */
.extra-card input:checked + .extra-icon {
  background: #006986;
  color: #fff;
}


.step[data-step="2"] {
  position: relative;
}

.step[data-step="2"] .extras-grid {
  margin-top: 20px;
}


/* STEP 3 */
.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-sub {
  font-size: 14px;
  color: #7a869a;
  margin-bottom: 20px;
}

/* CARD */
.date-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* LEFT */
.date-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
}

.date-input:focus {
  outline: none;
  border-color: #0ea5e9;
}

.date-hint {
  margin-top: 10px;
  font-size: 14px;
  color: #64748b;
}

/* RIGHT */
.date-right h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.slots {
  display: flex;
  gap: 12px;
}

/* ===== SLOTS (HEURES) ===== */

.slots {
  display: flex;
  gap: 12px;
}

.slot {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

/* hover UNIQUEMENT si cliquable */
.slot:not(.disabled):hover {
  background: #006986;
  color: #fff;
}

/* sélection */
.slot.selected {
  background: #006986;
  color: #fff;
}

/* désactivé */
.slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.step {
  display: none;
  pointer-events: none;
}

.step.active {
  display: block;
  pointer-events: auto;
}


/* ================= STEP 4 – COORDONNÉES ================= */

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}

/* champs */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.form-group input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
  transition: border-color .2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #006986;
}

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

  .form-group.full {
    grid-column: span 1;
  }
}


/* ===== STEP 5 – RÉCAP ===== */

.recap-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f8f1;
  color: #0f5132;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.recap-title {
  font-size: 24px;
  margin-bottom: 4px;
}

.recap-sub {
  color: #6b7280;
  margin-bottom: 20px;
}

.recap-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.recap-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.recap-card-header .edit {
  font-size: 13px;
  color: #3b82f6;
  cursor: pointer;
}

.recap-line {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.recap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recap-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

/* TOTAL */
.recap-total-card {
  background: linear-gradient(180deg, #1f2937, #111827);
  color: white;
}

.total-line {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 18px;
}

.confirm {
  width: 100%;
  background: #22c55e;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
}




.confirm-wrapper {
  max-width: 640px;
}

.confirm-alert {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #ecfdf5;
  color: #065f46;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}

.confirm-alert .icon {
  background: #10b981;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.confirm-subtitle {
  color: #6b7280;
  margin-bottom: 28px;
}

.confirm-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

.card-head {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.card-head a {
  color: #6366f1;
  cursor: pointer;
  font-weight: 500;
}

.card-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.card-line strong {
  color: #6366f1;
}

.card-list {
  font-size: 14px;
}

.card-list div {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-grid small {
  color: #6b7280;
  font-size: 12px;
}

.confirm-total {
  background: linear-gradient(180deg, #1f2937, #111827);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.total-row.muted {
  opacity: .7;
}

.total-final {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 18px 0;
}

.total-final strong {
  font-size: 26px;
}

.confirm-btn {
  width: 100%;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

.confirm-note {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 10px;
}


.trust-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: #d1d5db;
}

.trust-line .stars {
  color: #facc15;
  font-weight: 500;
}

.trust-line .divider {
  color: #9ca3af;
}

.trust-line .guarantee {
  color: black;
}



.step[data-step="5"] .step-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}


.step[data-step="5"] > .step-inner {
  width: 100%;
  max-width: 520px;
  min-height: auto;
}



.step[data-step="5"] .nav {
  margin-top: 30px;
}





/* ===== FIX CLICK BOUTONS NAV BOOKING ===== */


.nav button {
  pointer-events: auto;
  position: relative;
  z-index: 10000;
}


.booking-sidebar {
  position: relative;
  z-index: 1;
}

.booking-content {
  position: relative;
  z-index: 10;
}



/* ================= STEPS – RÈGLE UNIQUE ================= */

.step {
  display: none;
}

.step.active {
  display: block;
}



/* =============================
   STEP 5 – STYLE DES RÉPONSES
============================= */

.confirm-card .info-grid strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a; /* même couleur que les autres réponses */
  line-height: 1.4;
}

.confirm-card .info-grid small {
  font-size: 14px;
  color: #64748b;
}





/* ===== STEP 5 – VOS INFORMATIONS (STYLE PRO) ===== */

.info-list {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 15px;
  border-bottom: 1px solid #e9e9e9;
}

.info-row:last-child {
  border-bottom: none;
}

/* Libellé à gauche */
.info-row span {
  color: #9aa0a6;
  font-weight: 500;
}

/* Valeur à droite */
.info-row strong {
  color: #111;
  font-weight: 600;
  text-align: right;
}


/* ===== CONFIRM TOTAL STYLE (STEP 5) ===== */
.confirm-total.pro-style {
  background: linear-gradient(180deg, #1e2a38, #17202b);
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  margin-top: 24px;
}

.confirm-total .total-box {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.confirm-total .total-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.confirm-total .total-line.economy {
  color: #22c55e;
  font-weight: 500;
}

.confirm-total .total-final-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.confirm-total .total-final-row .label {
  font-size: 15px;
  font-weight: 500;
}

.confirm-total .total-final-row small {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

.confirm-total .total-final-row strong {
  font-size: 26px;
  font-weight: 700;
}

.confirm-total .confirm-btn {
  width: 100%;
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.confirm-total .confirm-btn:hover {
  opacity: 0.95;
}

.confirm-total .confirm-footer {
  text-align: center;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 14px;
}


/* ================= FIX NAV BOOKING ================= */
/* Le bouton reste À SA PLACE, ne suit PAS le scroll */

.nav {
  position: static;        /* ⬅️ clé du fix */
  margin-top: 36px;
  background: transparent;
  padding: 0;
  border-top: none;
  z-index: auto;
}

.nav button {
  position: static;
}


.error-msg {
  color: #e53935;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

input.error {
  border-color: #e53935;
}



