/* ---------------------------- */
/* 🌐 TPLM Style CSS - v0.dev   */
/* ---------------------------- */

/* ✅ RESET CSS de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*test*/
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--blanc-pur);
  color: var(--gris-foncé);
  line-height: 1.6;
}

/* 🎨 Variables globales */
:root {
  --bleu-marine: #0a1e3f;
  --gris-acier: #5f6975;
  --blanc-pur: #ffffff;
  --bleu-clair: #1c57a5;
  --orange-cta: #f7981d;
  --gris-foncé: #2d2d2d;
  --font-principale: 'Roboto', sans-serif;
}

/* 📌 TYPOGRAPHIE */
h1, h2, h3, h4 {
  color: var(--bleu-marine);
  font-weight: bold;
}

a {
  color: var(--bleu-clair);
  text-decoration: none;
}
a:hover { color: var(--orange-cta); }

/* 📎 BOUTONS */
.button {
  background-color: var(--orange-cta);
  color: var(--blanc-pur);
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease;
}
.button:hover {
  background-color: var(--bleu-clair);
  transform: scale(1.03);
}

/* ✅ HEADER COMPLET MODERNE */
.main-header {
  background: rgba(10, 30, 63, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000; /* ↑ au-dessus du contenu */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: fadeDown 0.6s ease-in-out;
  overflow: visible !important; /* Prevent clipping of dropdowns */
}

@keyframes fadeDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible !important; /* Ensure no clipping */
  flex-wrap: nowrap;
}

.logo { display: flex; align-items: center; }
.logo img { height: 50px; margin-right: 0.5em; }

.brand {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  color: var(--blanc-pur);
}

nav {
  overflow: visible !important; /* Prevent clipping of dropdowns */
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  position: relative;   /* contexte pour dropdowns */
  z-index: 10010;
}

/* ===== DROPDOWN DESKTOP ===== */
.has-submenu { position: relative; }
.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  display: none;
  background: #0f243f;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  border-radius: 8px;
  z-index: 11000; /* ↑ au-dessus de la hero */
}
.has-submenu .submenu li { white-space: nowrap; }
.has-submenu .submenu a {
  display: block;
  padding: .75em 1em;
  color: #e6eefc;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.has-submenu .submenu a:hover { background: rgba(255,255,255,.06); }
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { display: block; }
/* ===== FIN DROPDOWN ===== */

.nav-links a {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--blanc-pur);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 0.5em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 100%;
  background: var(--orange-cta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--orange-cta); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active, .nav-links a:focus { color: var(--orange-cta); font-weight: 700; }
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links i { margin-right: .5em; color: var(--orange-cta); }

/* 🎯 Burger menu mobile */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 12000; /* clic garanti */
}
.burger span {
  width: 25px; height: 3px;
  background-color: var(--blanc-pur);
  border-radius: 2px;
  transition: all .3s ease;
}

/* ===== MENU MOBILE (slide depuis la gauche) ===== */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;              /* Ancré à droite */
  left: auto !important; /* Désactiver l'ancrage à gauche */
  height: 100vh;
  width: 250px;
  background-color: rgba(10, 30, 63, 0.98);
  padding: 3em 1.5em;
  z-index: 9500;        /* sous les dropdowns desktop */
  overflow-y: auto;
  transform: translateX(100%) !important; /* Caché hors-écran à droite */
  transition: transform .3s ease-in-out !important;
  will-change: transform;
  display: flex;
  flex-direction: column;
  white-space: normal;
  word-break: break-word;
}
.nav-mobile.open { transform: translateX(0) !important; }

.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile li { margin: 0; }
.nav-mobile a {
  color: var(--blanc-pur);
  padding: 1em 0;
  font-size: 1.05em;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* 🔲 Overlay fond sombre (pour menu mobile) */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(3px);
  z-index: 9400;      /* sous les dropdowns, au-dessus du contenu */
  display: none;
  transition: opacity .3s ease;
}
.overlay.active { display: block; }

/* 🛑 Désactiver scroll arrière-plan quand le menu est ouvert */
body.menu-open { overflow: hidden !important; }

/* ✅ Responsive */
@media (max-width: 768px) {
  nav ul.nav-links { display: none !important; }
  .burger {
    display: flex;
    margin-left: auto !important; /* pousse le burger à droite */
    order: 999 !important; /* Push to end of flex */
  }
}
@media (min-width: 769px) {
  .nav-mobile, .overlay, .burger { display: none !important; }
}

/* 🟧 Burger menu animé */
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* 🚛 HERO SECTION (sous la nav) */
.hero {
  position: relative;
  z-index: 1 !important; /* Lower than header but still positive */
  height: 100vh;
  background: url("images/attachments/demenagement1.jpg") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2em;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(10,30,63,.65);
  z-index: 0;
}
.hero-content{
  position: relative;
  z-index: 1;
  color: var(--blanc-pur);
  animation: fadeIn 1s ease-in-out;
  max-width: 800px;
  padding: 2em;
}
.hero-title{
  font-size: 3.2em;
  font-weight: 700;
  color: var(--blanc-pur);
  text-shadow: 0 3px 10px rgba(0,0,0,.5);
  margin-bottom: .5em;
}
.hero-subtitle{
  font-size: 1.3em;
  margin-bottom: 1.5em;
  color: #f1f1f1;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero .button{
  background-color: var(--orange-cta);
  color: #fff;
  padding: 1em 2em;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color .3s, transform .2s;
}
.hero .button:hover{ background:#b9440d; transform: scale(1.05); }

/* 🔒 Réassurance bandeau */
.hero-reassurance{
  margin-top: 2em;
  display:flex;
  justify-content:center;
  gap:2em;
  flex-wrap:wrap;
  font-size:1em;
  color:#f1f1f1;
  text-shadow:0 1px 3px rgba(0,0,0,.2);
}
.hero-reassurance div{ display:flex; align-items:center; gap:.5em; }
.hero-reassurance i{ color:var(--orange-cta); font-size:1.2em; }
.hero-reassurance strong{ color:var(--orange-cta); }

/* 🌐 Responsive hero */
@media (max-width: 768px){
  .hero-title{ font-size: 2.2em; }
  .hero-subtitle{ font-size: 1.1em; }
  .hero-reassurance{ flex-direction: column; gap: 1em; font-size:.95em; }
}

/* ✨ Apparition animée */
@keyframes fadeIn{
  from{ opacity:0; transform: translateY(40px); }
  to  { opacity:1; transform: translateY(0);   }
}


/* 📦 SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  padding: 4em 2em;
}

.service-card {
  border: 1px solid var(--gris-acier);
  padding: 2em;
  border-radius: 10px;
  text-align: center;
}

/* 🌍 MAP / ZONES COUVERTES */
.map-section {
  padding: 4em 2em;
  background-color: #f8f9fa;
  text-align: center;
}

/* 🚚 GALERIE FLOTTE */
.fleet-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  padding: 4em 2em;
}

.fleet-gallery img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 📞 CONTACT */
.contact-section {
  background-color: var(--gris-acier);
  color: var(--blanc-pur);
  padding: 4em 2em;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 500px;
  margin: auto;
}

/* 🦶 FOOTER */
footer {
  background-color: var(--bleu-marine);
  color: var(--blanc-pur);
  padding: 2em;
  text-align: center;
  font-size: 0.9em;
}

/* 💬 AVIS CLIENTS */
.testimonial-card {
  background-color: #f1f1f1;
  padding: 2em;
  border-radius: 8px;
  margin: 2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-style: italic;
}



/* 🌟 FONT AWESOME / ICON SUPPORT */
.icon {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.5em;
  color: var(--orange-cta);
} 

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  position: relative;
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  color: var(--bleu-marine);
  padding: 0.3em 1.2em;
  border: 2px solid var(--bleu-marine);
  border-radius: 8px;
  display: inline-block;
  background-color: #f9f9f9;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1em;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 140, 0, 0.03) 0,
    rgba(255, 140, 0, 0.03) 1px,
    transparent 1px,
    transparent 8px
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  z-index: 2;
}

.section-title:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.section-title:hover::before {
  opacity: 1;
}

.section-title:hover::after {
  left: 110%;
}




.section-subtitle {
  text-align: center;
  font-size: 1.3em;
  color: var(--bleu-marine); /* ✅ bleu foncé */
  margin-top: 1em;
  margin-bottom: 3em;
  font-weight: 500;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 80%;
  background-color: var(--orange-cta);
  opacity: 0.3;
  animation: underlineFade 1.2s ease-out forwards;
  animation-delay: 1s;
}

@keyframes underlineFade {
  from {
    width: 0%;
    opacity: 0;
  }
  to {
    width: 80%;
    opacity: 0.3;
  }
}







.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f9 100%);
  background-image: url('images/fond-logistique.svg');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 5em 2em;
  text-align: center;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  padding: 2em;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5em 2em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 400px; /* Set a minimum height for consistency */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.service-card h3 {
  color: var(--bleu-marine);
  font-size: 1.3em;
  margin: 1em 0 0.5em;
}

.service-card p {
  color: var(--gris-foncé);
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1; /* Allows the paragraph to expand and push the button down */
}

.icon-wrapper {
  background: var(--orange-cta);
  color: #fff;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.8em;
  transition: transform 0.3s;
}

.service-card:hover .icon-wrapper {
  transform: rotate(8deg) scale(1.1);
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#tplm-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

.section-title-wrapper .section-title {
  position: relative;
  display: inline-block;
  font-size: 2.5em;
  font-weight: bold;
  color: var(--bleu-marine);
}

.section-title-wrapper .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 5px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
}

.service-features li {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

.service-features i {
  margin-right: 0.5em;
  color: var(--orange-cta);
}

.service-button {
  display: inline-block;
  padding: 0.8em 1.5em;
  background: var(--orange-cta);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin-top: auto; /* Pushes the button to the bottom of the card */
}

.service-button:hover {
  background: var(--bleu-marine);
}



.form-section {
  background-color: #0a1e3f;
  color: white;
  padding: 3em 2em;
}

.form-section h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

#devis-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 1em;
}

#devis-form input, #devis-form select {
  padding: 0.7em;
  font-size: 1em;
  border: none;
  border-radius: 5px;
}

.result {
  background: #ffffff11;
  padding: 1em;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
}

.button {
  background-color: #f7981d;
  color: white;
  padding: 0.9em;
  font-weight: bold;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #d47d10;
}

/* 📄 FORMULAIRE DEVIS */
.form-section {
  background-color: var(--bleu-marine);
  color: white;
  padding: 3em 2em;
}

.form-section h2 {
  font-size: 2.2em;
  margin-bottom: 1.5em;
  text-align: center;
}

#devis-form {
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 1.2em;
}

#devis-form label {
  font-weight: 500;
  margin-bottom: 0.3em;
}

#devis-form input,
#devis-form select,
#devis-form textarea {
  padding: 0.8em;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  width: 100%;
}

.result {
  background: #ffffff11;
  padding: 1em;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
}

#devis-form .inline {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

#devis-form .inline > * {
  flex: 1;
  min-width: 200px;
}

#devis-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

#devis-form .textarea {
  min-height: 100px;
}

.clients-section {
  background-color: var(--blanc-pur);
  padding: 5em 2em;
  text-align: center;
  position: relative;
  z-index: 1;
}

.clients-section .section-title {
  color: var(--bleu-marine);
  font-size: 2.5em;
  margin-bottom: 2.5em;
  position: relative;
  display: inline-block;
}


/* Carousel wrapper */
.clients-section .owl-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo wrapper */
.clients-section .owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5em;
  transition: transform 0.3s ease;
}

.clients-section .owl-carousel .item:hover {
  transform: scale(1.05);
}

/* Logo style */
.clients-section img {
  max-height: 70px;
  width: auto;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.clients-section img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}



.service-features {
  list-style: none;
  padding: 1em 0 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.95em;
  color: var(--gris-foncé);
  margin-bottom: 0.5em;
}

.service-features i {
  color: var(--orange-cta);
  margin-right: 0.6em;
}

.cta-bottom {
  text-align: center;
  margin-top: 3em;
}

.cta-bottom p {
  font-size: 1em;
  margin-bottom: 0.8em;
  color: var(--gris-foncé);
}

.section-title-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  text-align: center;
  margin-bottom: 3em;
}


.section-title {
  flex: 1;
  font-size: 2.5em;
  font-weight: bold;
  color: var(--bleu-marine);
}

.side-info {
  font-size: 1.2em;
  font-weight: 500;
  color: var(--gris-acier);
  display: flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}

.side-info i {
  color: var(--orange-cta);
  font-size: 1.4em;
}

.side-info strong {
  color: var(--orange-cta);
  font-weight: bold;
}

.ribbon {
  position: absolute;
  top: 1em;
  right: -1em;
  background-color: var(--orange-cta);
  color: white;
  padding: 0.4em 1em;
  transform: rotate(45deg);
  font-size: 0.8em;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.highlight-numbers {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.highlight-numbers div {
  font-size: 1.1em;
  color: var(--gris-foncé);
}

.highlight-numbers i {
  color: var(--orange-cta);
  margin-right: 0.3em;
  font-size: 1.3em;
}

.mini-testimonial {
  text-align: center;
  margin-top: 2em;
  font-style: italic;
  color: var(--gris-foncé);
}
.mini-testimonial strong {
  display: block;
  margin-top: 0.5em;
  color: var(--bleu-marine);
  font-weight: 600;
}

/* 🔰 SECTION ENGAGEMENTS FUSIONNÉE */
.commitments-section {
  background-color: var(--blanc-pur);
  padding: 5em 2em;
  text-align: center;
  position: relative;
  z-index: 2;
}

.commitments-section .section-title {
  font-size: 2.5em;
  margin-bottom: 0.8em;
  color: var(--bleu-marine);
}

.commitments-section .section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  max-width: 750px;
  margin: 0 auto 3em;
}

/* ✅ Bloc engagements (déjà présent mais ajusté ici pour cohérence visuelle) */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
  padding: 0 1em 3em;
  max-width: 1200px;
  margin: 0 auto;
}

.commitment-item {
  background: #fff;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.commitment-item i {
  background: var(--orange-cta);
  color: white;
  padding: 0.8em;
  border-radius: 50%;
  font-size: 1.5em;
  margin-bottom: 1em;
}

/* ✅ Sous-titre intermédiaire (Pourquoi choisir TPLM ?) */
.section-subheading {
  font-size: 2em;
  margin-top: 1em;
  color: var(--bleu-marine);
}

/* ✅ Cartes pourquoi-nous-choisir */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
  margin-top: 2em;
  max-width: 1200px;
  margin-inline: auto;
}

.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card i {
  font-size: 2em;
  color: var(--orange-cta);
  margin-bottom: 0.5em;
}

.why-card h4 {
  font-size: 1.2em;
  margin-bottom: 0.4em;
  color: var(--bleu-marine);
}

.why-card p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  line-height: 1.5;
}

/* Séparateur décoratif optionnel */
.commitment-divider {
  font-size: 2em;
  color: var(--orange-cta);
  margin: 3em 0 1em;
}

/* 💡 Effets esthétiques supplémentaires sur les boîtes */
.commitment-item,
.why-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.commitment-item::before,
.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
  opacity: 0;
  transform: rotate(25deg);
  transition: all 0.6s ease-in-out;
  pointer-events: none;
}

.commitment-item:hover::before,
.why-card:hover::before {
  opacity: 1;
  left: 100%;
}

.commitment-item:hover,
.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}





.about-section {
  background-color: var(--blanc-pur);
  padding: 5em 2em;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
  font-size: 1.1em;
  color: var(--gris-foncé);
}

.section-title-alt {
  font-size: 2.4em;
  margin-bottom: 0.8em;
  color: var(--bleu-marine);
}

.section-title-alt i {
  color: var(--orange-cta);
  margin-right: 0.3em;
}

.about-text .highlight {
  color: var(--orange-cta);
  font-weight: 600;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 1em;
  }
}

.about-numbers {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  gap: 2em;
  flex-wrap: wrap;
  text-align: center;
}

.about-numbers div {
  flex: 1 1 200px;
  background: var(--bleu-marine);
  color: white;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-numbers div:hover {
  transform: translateY(-5px);
}

.about-numbers i {
  font-size: 1.6em;
  color: var(--orange-cta);
  margin-bottom: 0.5em;
  display: block;
}

.about-numbers strong {
  font-size: 1.8em;
  display: block;
  margin-bottom: 0.3em;
}

.about-numbers span {
  font-size: 1em;
  color: #ddd;
}


/* Sous-menu pour "Nos services" */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 6000;
  border-radius: 8px;
}

.has-submenu:hover .submenu {
  display: block;
}

.has-submenu .submenu li {
  padding: 8px 20px;
  white-space: nowrap;
}

.has-submenu .submenu li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.has-submenu .submenu li a:hover {
  color: var(--orange-cta); /* ta couleur orange personnalisée */
}
html {
  scroll-behavior: smooth;
}

.footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-columns {
  display: flex;
  flex: 2 1 600px;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: var(--orange-cta);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--orange-cta);
}

.footer-col i {
  margin-right: 8px;
  color: var(--orange-cta);
}

.social-links a {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--orange-cta);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  padding-top: 15px;
  color: #aaa;
}
.brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  line-height: 1.1;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange-cta);
  transition: all 0.4s ease;
}

.sub-brand {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  margin-top: 2px;
  transition: all 0.4s ease;
}

/* ✨ Effet visuel au survol */
.logo:hover .brand {
  color: #fff;
  text-shadow: 0 0 8px var(--orange-cta);
  transform: scale(1.05);
}

.logo:hover .sub-brand {
  color: var(--orange-cta);
  letter-spacing: 2px;
  transform: scale(1.05);
}


.title-context {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.side-info {
  font-size: 14px;
  color: #444;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.side-info i {
  margin-right: 6px;
  color: var(--orange-cta);
}

.section-title-animated {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange-cta);
  position: relative;
  display: inline-block;
  z-index: 1;
  background: linear-gradient(to right, #f7981d, #ffbd5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--orange-cta);
  margin: 12px auto 0;
  border-radius: 10px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.service-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--orange-cta);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
}

.service-button:hover {
  background-color: #e27a00;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Roboto', sans-serif;
}

.container-contact {
  max-width: 1200px;
  margin: auto;
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title h2 {
  font-size: 32px;
  color: var(--orange-cta);
  margin-bottom: 10px;
}

.contact-title p {
  color: #555;
  font-size: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form, .contact-infos {
  flex: 1 1 450px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: var(--orange-cta);
  outline: none;
}

.contact-form .button {
  background-color: var(--orange-cta);
  border: none;
  padding: 12px 30px;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.contact-form .button:hover {
  background-color: #e27a00;
}

.contact-infos .info-item {
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.contact-infos .info-item i {
  color: var(--orange-cta);
  margin-right: 8px;
}

.contact-infos .map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}


/* --New-- 22h53 08/04/2025 */

/* 🧭 Présentation du service Logistique */
.logistique-intro-section {
  background-color: #ffffff;
  padding: 5em 2em;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logistique-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 3em;
}

.highlight-box {
  background: #ffffff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  max-width: 280px;
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.highlight-box i {
  font-size: 2em;
  color: var(--orange-cta);
  margin-bottom: 0.5em;
}

.highlight-box h3 {
  font-size: 1.6em;
  color: var(--bleu-marine);
  margin-bottom: 0.3em;
}

.highlight-box p {
  color: var(--gris-foncé);
  font-size: 0.95em;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-box {
    width: 100%;
    max-width: 100%;
  }
}


/* 🧩 Logistique – Solutions sur mesure */
.logistics-solutions-section {
  background-color: #f8f9fb;
  padding: 5em 2em;
  text-align: center;
}

.logistics-solutions-section .section-title {
  font-size: 2.4em;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
}

.logistics-solutions-section .section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  max-width: 750px;
  margin: 0 auto 3em;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.logistics-card {
  background: #fff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.logistics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.logistics-card i {
  font-size: 2em;
  color: var(--orange-cta);
  margin-bottom: 0.6em;
}

.logistics-card h3 {
  font-size: 1.2em;
  color: var(--bleu-marine);
  margin-bottom: 0.4em;
}

.logistics-card p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  line-height: 1.5;
}

.section-title-logistique {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  color: var(--bleu-marine);
  margin-bottom: 1.5em;
  position: relative;
}

.section-title-logistique::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--orange-cta);
  margin: 0.6em auto 0;
  border-radius: 2px;
  opacity: 0.7;
}


/* 🌐 SECTION INTRO LOGISTIQUE */
.logistique-intro-section {
  background-color: #fdfdfd;
  padding: 6em 2em;
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  max-width: 1200px;
  margin: 0 auto 4em;
}

.intro-text {
  flex: 1 1 500px;
  color: var(--bleu-marine);
}

.intro-text h2 {
  font-size: 2.2em;
  margin-bottom: 1em;
  color: var(--orange-cta);
}

.intro-text p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--gris-foncé);
}

.intro-image {
  flex: 1 1 400px;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* 🔢 STATS LOGISTIQUE */
.logistique-stats {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  background: #fff;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1 1 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-item i {
  font-size: 1.8em;
  color: var(--orange-cta);
  margin-bottom: 0.5em;
  display: block;
}

.stat-item strong {
  font-size: 1.5em;
  color: var(--bleu-marine);
}

.stat-item span {
  display: block;
  font-size: 0.95em;
  color: var(--gris-acier);
}

.logistique-circles {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin-top: 3em;
  flex-wrap: wrap;
}

.circle-item {
  text-align: center;
  color: var(--bleu-marine);
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(247, 152, 29, 0.12); /* orange pastel */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: bold;
  color: var(--orange-cta);
  margin: 0 auto 0.6em;
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-item p {
  font-size: 0.95em;
  color: var(--gris-foncé);
}

.circle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* 🌐 Sectors / Clients Logistiques */
.sectors-section {
  background-color: #f8f9fc;
  padding: 5em 2em;
  text-align: center;
}

.sectors-section .section-title {
  font-size: 2.4em;
  color: var(--bleu-marine);
  margin-bottom: 1em;
}

.sectors-section .section-subtitle {
  color: var(--gris-acier);
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 3em;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: auto;
}

.sector-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
}

.sector-card i {
  font-size: 2.2em;
  margin-bottom: 0.6em;
  color: var(--orange-cta);
}

.sector-card h3 {
  font-size: 1.3em;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
}

.sector-card p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  margin-bottom: 1em;
}

.badge {
  display: inline-block;
  background-color: var(--orange-cta);
  color: white;
  font-size: 0.75em;
  padding: 0.4em 0.8em;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Optionnel : icônes spécifiques ou animations par secteur */
.sector-card.ecommerce i { color: #1c57a5; }
.sector-card.btp i { color: #d47d10; }
.sector-card.event i { color: #aa47bc; }
.sector-card.resto i { color: #e53935; }
.sector-card.pme i { color: #2e7d32; }


/* 📦 Timeline logistique */
.logistics-steps-section {
  background-color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.timeline-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 2em;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 3em auto 0;
  position: relative;
}

.timeline-step {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  position: relative;
  padding-top: 2em;
}

.timeline-icon {
  background: var(--orange-cta);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1em;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}


.timeline-step:first-child::before {
  display: none;
}

.timeline-content h3 {
  color: var(--bleu-marine);
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.timeline-content p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  line-height: 1.5;
}

/* ✅ Liste des points logistiques */
.logistique-points {
  list-style: none;
  padding-left: 0;
  margin-top: 2em;
}

.logistique-points li {
  font-size: 1em;
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
  color: var(--gris-foncé);
}

.logistique-points i {
  color: var(--orange-cta);
  margin-right: 0.6em;
  font-size: 1.1em;
}

/* ✅ Disposition image/texte */
.logistique-intro-section .intro-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 4em 2em;
}

.logistique-intro-section .intro-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.logistique-intro-section .intro-image {
  flex: 1 1 40%;
  text-align: center;
}

.logistique-intro-section .intro-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ✅ Chiffres ronds */
.logistique-circles {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 4em;
  flex-wrap: wrap;
}

.circle-item {
  text-align: center;
}

.circle {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--bleu-marine);
  background-color: #f2f2f2;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.6em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.circle-item p {
  color: var(--gris-acier);
  font-size: 0.95em;
}

/* 🔐 Section Sécurité & Traçabilité */
.security-section {
  background-color: #f8f9fa;
  padding: 5em 2em;
  text-align: center;
}

.security-section .section-title {
  font-size: 2.4em;
  margin-bottom: 0.5em;
  color: var(--bleu-marine);
}

.security-section .section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  max-width: 750px;
  margin: 0 auto 3em;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  max-width: 1100px;
  margin: 0 auto;
}

.security-item {
  background: #ffffff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.security-item i {
  font-size: 2em;
  color: var(--orange-cta);
  margin-bottom: 0.6em;
}

.security-item h3 {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: var(--bleu-marine);
}

.security-item p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  line-height: 1.5;
}




/* Dépannage 2 roues */

/* 🎯 HERO Dépannage 2 Roues */
.hero-depannage {
  position: relative;
  height: 85vh;
  background: url('images/attachments/depan1.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2em;
  color: white;
}

.hero-depannage-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 30, 63, 0.7), rgba(0, 0, 0, 0.6));
  z-index: 0;
}

.hero-depannage-content {
  z-index: 1;
  max-width: 800px;
}

.hero-depannage-title {
  font-size: 3em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-depannage-subtitle {
  font-size: 1.2em;
  color: #f8f8f8;
  margin-bottom: 1.5em;
}

.cta-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: center;
}

.cta-hero-buttons .button {
  background-color: var(--orange-cta);
  color: #fff;
  font-size: 1.1em;
  padding: 1em 2em;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-hero-buttons .button:hover {
  background-color: #c8501b;
}

.cta-hero-phone {
  font-size: 1em;
  color: #ffffffcc;
}

.hero-depannage i {
  color: var(--orange-cta);
  margin-right: 0.3em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-depannage-title {
    font-size: 2em;
  }
  .hero-depannage-subtitle {
    font-size: 1em;
  }
  .cta-hero-buttons .button {
    width: 100%;
  }
}

/* 🚨 Interventions Section */
.interventions-section {
  background-color: #f8f9fa;
  padding: 5em 2em;
  text-align: center;
}

.interventions-section .section-title {
  font-size: 2.5em;
  color: var(--bleu-marine);
  margin-bottom: 1em;
}

.interventions-section .section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  max-width: 800px;
  margin: 0 auto 3em;
}

.intervention-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.intervention-card {
  background-color: white;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.intervention-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.intervention-card i {
  font-size: 2em;
  color: var(--orange-cta);
  margin-bottom: 1em;
}

.intervention-card h3 {
  font-size: 1.3em;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
}

.intervention-card p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  line-height: 1.5;
}

/* ⏱️ Disponibilité & Délais */
.availability-section {
  background-color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.availability-section .section-title {
  font-size: 2.5em;
  color: var(--bleu-marine);
  margin-bottom: 1em;
}

.availability-section .section-subtitle {
  color: var(--gris-acier);
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 3em;
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.availability-info {
  display: flex;
  flex-direction: column;
  gap: 2em;
  text-align: left;
}

.info-block {
  background: #f9f9f9;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.info-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.info-block i {
  font-size: 1.6em;
  color: var(--orange-cta);
  margin-bottom: 0.4em;
}

.info-block h3 {
  color: var(--bleu-marine);
  font-size: 1.2em;
  margin-bottom: 0.3em;
}

.info-block p {
  color: var(--gris-foncé);
  font-size: 1em;
}

.availability-map img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .availability-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .availability-info {
    text-align: center;
  }
}



/* 📄 Mini section Devis Dépannage */
.devis-depannage-section {
  background-color: #fff6f1; /* léger fond orangé */
  padding: 3em 2em;
  text-align: center;
  border-top: 2px solid var(--orange-cta);
  border-bottom: 2px solid var(--orange-cta);
}

.devis-depannage-container h3 {
  font-size: 1.8em;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
}

.devis-depannage-container p {
  font-size: 1.05em;
  color: var(--gris-foncé);
  margin-bottom: 1.2em;
}

.devis-depannage-container .button {
  background-color: var(--orange-cta);
  color: white;
  padding: 0.9em 2em;
  font-weight: bold;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.devis-depannage-container .button:hover {
  background-color: #c95c1a; /* orange foncé */
}


/* 🔧 Section Devis Dépannage */
.devis-form-section {
  background-color: var(--bleu-marine);
  padding: 5em 2em;
  text-align: center;
}



.devis-form-section .section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  margin-bottom: 2em;
  max-width: 720px;
  margin-inline: auto;
}

.devis-form {
  max-width: 720px;
  margin: auto;
  display: grid;
  gap: 1.5em;
}

/* 🧾 Groupe de champs */
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.4em;
  color: var(--blanc-pur);
}

/* 🖊️ Champs du formulaire */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85em;
  font-size: 1em;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-cta);
  outline: none;
  box-shadow: 0 0 0 2px rgba(247, 152, 29, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Centrage des boutons */
.form-group.center {
  text-align: center;
}

/* ✅ Bouton CTA */
.devis-form .button {
  background-color: var(--orange-cta);
  color: white;
  padding: 1em 2.2em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.devis-form .button:hover {
  background-color: #cc4e17;
  transform: scale(1.03);
}


/* 🛵 HÉROS SERVICE COURSIER */
.hero-coursier {
  position: relative;
  background: url("images/hero-coursier.jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanc-pur);
  overflow: hidden;
}

.hero-coursier-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 30, 63, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 0;
}

.hero-coursier-content {
  position: relative;
  z-index: 1;
  padding: 2em;
  animation: fadeIn 1s ease-in-out;
}

.hero-coursier-title {
  font-size: 2.8em;
  margin-bottom: 0.8em;
  color: var(--blanc-pur);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-coursier-subtitle {
  font-size: 1.2em;
  color: #f1f1f1;
  margin-bottom: 1.5em;
}

.hero-reassurance {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  font-size: 1em;
}

.hero-reassurance i {
  color: var(--orange-cta);
  margin-right: 0.5em;
}

/* 📦 NOS MISSIONS COURSERIE */
.missions-section {
  background-color: #f9f9f9;
  padding: 5em 2em;
  text-align: center;
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 3em auto 0;
}

.mission-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.mission-card i {
  font-size: 2em;
  color: var(--orange-cta);
  margin-bottom: 1em;
}

.mission-card h3 {
  font-size: 1.2em;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
}

.mission-card p {
  font-size: 0.95em;
  color: var(--gris-foncé);
  line-height: 1.5;
}

/* 🗺️ ZONES COURSIER */
.zones-coursier-section {
  background-color: #fff;
  padding: 5em 2em;
  text-align: center;
}

.zones-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin-top: 3em;
}

.zone-map img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.zone-list {
  list-style: none;
  text-align: left;
  padding: 0;
  font-size: 1em;
  color: var(--gris-foncé);
}

.zone-list li {
  margin-bottom: 1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.zone-list i {
  color: var(--orange-cta);
  font-size: 1.1em;
}



/* New TEST 14h40 le 09/04 */

.hero-transport {
  position: relative;
  background: url('images/camion3.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-transport-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-transport-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-transport h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange-cta);
  margin-bottom: 15px;
}

.hero-transport p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  background-color: var(--orange-cta);
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
}

.hero-button:hover {
  background-color: #e27a00;
  transform: scale(1.05);
}

.advantages-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.container-advantages {
  max-width: 1200px;
  margin: 0 auto;
}

.advantages-section h2 {
  color: var(--orange-cta);
  font-size: 32px;
  margin-bottom: 10px;
}

.advantages-section .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.advantage-box {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.advantage-box i {
  font-size: 32px;
  color: var(--orange-cta);
  margin-bottom: 15px;
}

.advantage-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.advantage-box p {
  font-size: 14px;
  color: #666;
}

.fleet-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.container-fleet {
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-section h2 {
  color: var(--orange-cta);
  font-size: 32px;
  margin-bottom: 10px;
}

.fleet-section .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.fleet-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  max-width: 330px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.fleet-card h3 {
  font-size: 18px;
  color: #333;
  margin: 15px 0 5px;
}

.fleet-card p {
  font-size: 14px;
  color: #666;
  padding: 0 15px 20px;
}
.delivery-types-alt {
  background: linear-gradient(to bottom, #fff, #f6f6f6);
  padding: 80px 20px;
}

.delivery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.delivery-item.reverse {
  flex-direction: row-reverse;
}

.delivery-text {
  flex: 1 1 500px;
}

.delivery-text h3 {
  font-size: 24px;
  color: var(--orange-cta);
  margin-bottom: 15px;
}

.delivery-text i {
  margin-right: 10px;
  color: var(--orange-cta);
}

.delivery-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.delivery-img {
  flex: 1 1 400px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Images de fond spécifiques */
.img-1 { background-image: url('images/delivery-colis.jpg'); }
.img-2 { background-image: url('images/delivery-palettes.jpg'); }
.img-3 { background-image: url('images/delivery-tournees.jpg'); }
.img-4 { background-image: url('images/delivery-urgentes.jpg'); }

/* Responsive */
@media (max-width: 768px) {
  .delivery-item {
    flex-direction: column;
    text-align: center;
  }

  .delivery-item.reverse {
    flex-direction: column;
  }

  .delivery-img {
    width: 100%;
    height: 200px;
  }
}

.engagement-section {
  position: relative;
  background: var(--bleu-marine); /* couleur du header */
  color: white;
  padding: 100px 20px;
  overflow: hidden;
}

.engagement-overlay {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: url('images/security-bg-icon.png') center center no-repeat;
  background-size: 300px;
  opacity: 0.05;
  z-index: 1;
}

.engagement-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.engagement-text {
  flex: 1 1 450px;
}

.engagement-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--orange-cta);
}

.engagement-text h2 i {
  margin-right: 10px;
}

.engagement-text p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
}

.engagement-points {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.point {
  background: #292929;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, background 0.3s;
}

.point:hover {
  transform: scale(1.03);
  background: #333;
}

.point i {
  font-size: 24px;
  color: var(--orange-cta);
}

.point span {
  font-size: 15px;
  color: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .engagement-content {
    flex-direction: column;
  }

  .engagement-points {
    grid-template-columns: 1fr;
  }
}
.cta-section {
  background-color: var(--blanc-pur);
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.cta-title {
  font-size: 2.4em;
  color: var(--bleu-marine);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .button {
  background-color: var(--orange-cta);
  padding: 14px 32px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.cta-buttons .button:hover {
  background-color: #e27a00;
  transform: scale(1.05);
}

.cta-buttons .button.secondary {
  background-color: var(--bleu-clair);
}

.cta-buttons .button.secondary:hover {
  background-color: #16437e;
}

/*new*/

.improved-options {
  background: var(--blanc-pur);
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 2em;
  margin-top: 2em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.improved-options legend {
  font-weight: 600;
  font-size: 1.3em;
  color: var(--bleu-marine);
  padding: 0 0.5em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1em;
}

.option-grid label {
  background-color: #f8f9fa;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.option-grid label:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}

.option-grid input[type="checkbox"] {
  accent-color: var(--orange-cta);
  transform: scale(1.2);
}

.option-grid .price {
  color: var(--orange-cta);
  font-weight: bold;
}

.devis-section {
  background-color: var(--bleu-marine);
  padding: 5em 2em;
  color: white;
}

.devis-container {
  max-width: 900px;
  margin: auto;
  background-color: white;
  color: var(--gris-foncé);
  border-radius: 16px;
  padding: 3em 2em;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.devis-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.section-title {
  color: var(--orange-cta);
  font-size: 2em;
  margin-bottom: 0.5em;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05em;
  color: var(--gris-acier);
  text-align: center;
  margin-bottom: 2em;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.form-group {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5em;
  color: var(--bleu-marine);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85em 1em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-cta);
  box-shadow: 0 0 0 2px rgba(247, 152, 29, 0.2);
  outline: none;
}

.form-options {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 2em;
  border-radius: 12px;
  margin-top: 1em; /* en option */
}

.form-options legend {
  margin-top: 0.4em;         /* ✅ descend un peu le texte */
  margin-bottom: 0.5em;
  padding-top: 3em;        /* ✅ optionnel, pour encore plus d’équilibre */
  font-weight: bold;
  color: var(--bleu-marine);
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}


.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
}

.option-grid label {
  background-color: white;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.option-grid label:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.option-grid input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.option-grid .price {
  color: var(--orange-cta);
  font-weight: 600;
}

.button {
  background-color: var(--orange-cta);
  color: white;
  padding: 1em 2.2em;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 0.5em; /* ✅ Reduit l'espace sous le bouton */
}

.estimation {
  margin-top: 0;           /* ✅ Important : on retire l'espace au-dessus */
  font-size: 1.2em;
  font-weight: bold;
  color: var(--gris-foncé);
  text-align: center;
}

.form-group.center {
  margin-bottom: 0; /* ✅ empêche le groupe contenant le bouton d'ajouter de l'espace */
  padding-bottom: 0;
}



.button:hover {
  background-color: #cc4e17;
  transform: scale(1.03);
}

.form-group.center {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
/* New 17h43 11/04/2025 */


.hero-depannage-auto .button-cta {
  background-color: #fc0038;
  color: white;
  padding: 1em 2em;
  font-weight: bold;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-depannage-auto .button-cta:hover {
  background-color: #c6002d;
}

/*new*/

/* ✅ Section Héro - Transport Routier */
.hero-transport-routier {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/attachments/demenagemetn2.jpg'); /* Chemin relatif ajusté */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Effet parallax (optionnel) */
}

.hero-transport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay sombre pour la lisibilité */
    z-index: 1;
}

.hero-transport-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2em;
    color: var(--blanc-pur);
}

.hero-transport-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 4px var(--bleu-marine);
    color: var(--blanc-pur);
}

.hero-transport-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 1.5em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.button {
    display: inline-block;
    padding: 0.8em 2em;
    background: var(--orange-cta);
    color: var(--blanc-pur);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background: var(--bleu-marine);
    transform: translateY(-2px);
}

.hero-transport-reassurance {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.hero-transport-reassurance div {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
}

.hero-transport-reassurance i {
    font-size: 1.3em;
    color: var(--orange-cta);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-transport-routier {
        height: 80vh;
        min-height: 500px;
        background-attachment: scroll; /* Désactive le parallax sur mobile */
    }

    .hero-transport-title {
        font-size: 2.5em;
    }

    .hero-transport-subtitle {
        font-size: 1.2em;
    }

    .button {
        font-size: 1em;
        padding: 0.7em 1.5em;
    }

    .hero-transport-reassurance {
        flex-direction: column;
        gap: 1em;
    }

    .hero-transport-reassurance div {
        font-size: 1em;
    }
}

/* ✅ Section Avantages - Transport Routier */
.advantages-transport-section {
    background: linear-gradient(to bottom, #fff, #f6f6f6);
    padding: 5em 2em;
    text-align: center;
}

.advantages-transport-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteneur du titre */
.journey-title-container {
  position: relative;
  margin-bottom: 3em;
  text-align: center; /* Centre le texte pour une meilleure apparence */
}

/* Wrapper du titre avec effet panneau routier */
.journey-title-wrapper {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background: var(--bleu-marine);
  border: 4px solid var(--orange-cta);
  border-radius: 0 20px 0 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateX(5deg);
  transition: transform 0.3s ease;
}

.journey-title-wrapper:hover {
  transform: perspective(1000px) rotateX(0deg);
}

/* Titre avec effet néon et animation mot par mot */
.journey-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  color: var(--blanc-pur);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 102, 51, 0.5), 0 0 20px rgba(255, 102, 51, 0.3);
  display: flex;
  flex-wrap: wrap; /* Permet au texte de passer à la ligne si nécessaire */
  gap: 0.3em;
  margin: 0;
  justify-content: center; /* Centre les éléments flex */
}

.journey-title span {
  opacity: 0;
  animation: neonFadeIn 1s ease forwards;
}

.journey-title span:nth-child(1) { animation-delay: 0.2s; }
.journey-title span:nth-child(2) { animation-delay: 0.4s; }
.journey-title span:nth-child(3) { animation-delay: 0.6s; }
.journey-title span:nth-child(4) { animation-delay: 0.8s; }
.journey-title span:nth-child(5) { animation-delay: 1.0s; }
.journey-title span:nth-child(6) { animation-delay: 1.2s; }

@keyframes neonFadeIn {
  0% {
      opacity: 0;
      transform: translateY(20px);
      text-shadow: none;
  }
  50% {
      opacity: 0.5;
      text-shadow: 0 0 10px rgba(255, 102, 51, 0.5), 0 0 20px rgba(255, 102, 51, 0.3);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
      text-shadow: 0 0 10px rgba(255, 102, 51, 0.5), 0 0 20px rgba(255, 102, 51, 0.3);
  }
}

/* Décoration : ligne de route et flèche */
.journey-title-decor {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
}

/* Media query pour écrans mobiles */
@media screen and (max-width: 768px) {
  .journey-title {
      font-size: 1.8em; /* Réduit la taille de la police sur mobile */
      flex-direction: column; /* Affiche les mots les uns sous les autres */
      align-items: center; /* Centre les éléments */
      gap: 0.1em; /* Réduit l'espacement */
  }

  .journey-title-wrapper {
      padding: 0.5em 1em; /* Réduit le padding pour gagner de l'espace */
  }

  .journey-subtitle {
      font-size: 0.9em; /* Ajuste la taille du sous-titre pour cohérence */
      padding: 0 1em; /* Ajoute du padding pour éviter le collage aux bords */
  }
}

/* Media query pour écrans très étroits (ex. < 400px) */
@media screen and (max-width: 400px) {
  .journey-title {
      font-size: 1.5em; /* Réduit encore la taille pour les très petits écrans */
  }

  .journey-title-wrapper {
      padding: 0.3em 0.5em; /* Réduit davantage le padding */
  }
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        var(--blanc-pur) 0,
        var(--blanc-pur) 10px,
        transparent 10px,
        transparent 20px
    );
}

.road-arrow {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--blanc-pur);
    transform: translateY(-50%);
}

/* Sous-titre */
.journey-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--gris-acier);
    max-width: 750px;
    margin: 1em auto 0;
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grille et cartes (inchangées) */
.advantages-transport-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 3em;
}

.advantage-transport-box {
    background: var(--blanc-pur);
    border-radius: 12px;
    padding: 2em;
    flex: 1 1 250px;
    max-width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-transport-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.advantage-transport-box i {
    font-size: 2.5em;
    color: var(--orange-cta);
    margin-bottom: 1em;
}

.advantage-transport-box h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--bleu-marine);
    margin-bottom: 0.5em;
}

.advantage-transport-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    color: var(--gris-foncé);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-transport-grid {
        flex-direction: column;
        align-items: center;
    }

    .advantage-transport-box {
        max-width: 100%;
    }

    .journey-title {
        font-size: 2em;
    }

    .journey-subtitle {
        font-size: 1.1em;
    }
}

/* Section Flotte Transport Routier */
.fleet-transport-section {
    background-color: var(--blanc-pur);
    padding: 5em 2em;
    text-align: center;
}

.fleet-transport-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-transport-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 3em;
}

.fleet-transport-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2em;
    flex: 1 1 250px;
    max-width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.fleet-transport-card i {
    font-size: 2.5em;
    color: var(--orange-cta);
    margin-bottom: 1em;
}

.fleet-transport-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--bleu-marine);
    margin-bottom: 0.5em;
}

.fleet-transport-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    color: var(--gris-foncé);
    line-height: 1.5;
}

/* Réutilisation des styles de section-title et section-subtitle */
.section-title-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--bleu-marine);
    padding: 0.3em 1.2em;
    border: 2px solid var(--bleu-marine);
    border-radius: 8px;
    background-color: var(--blanc-pur);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-title:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--gris-acier);
    max-width: 750px;
    margin: 0 auto 1em;
    animation: fadeSlideIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

/* Animations (réutilisées depuis style.css) */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .fleet-transport-grid {
        flex-direction: column;
        align-items: center;
    }

    .fleet-transport-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1.1em;
    }
}

/* ✅ Section Voyage Logistique - Timeline Interactive */
.logistic-journey-section {
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
    padding: 5em 2em;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.logistic-journey-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteneur du titre */
.journey-title-container {
    position: relative;
    margin-bottom: 3em;
}

.secondary-journey-title-wrapper {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  background: var(--blanc-pur);
  border: 2px solid var(--bleu-marine);
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center; /* Centre le texte pour une meilleure apparence */
}

.secondary-journey-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--bleu-marine);
  display: flex;
  flex-wrap: wrap; /* Permet au texte de passer à la ligne si nécessaire */
  gap: 0.3em;
  margin: 0;
  position: relative;
  justify-content: center; /* Centre les éléments flex */
}

.secondary-journey-title span {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.8s ease forwards;
}

.secondary-journey-title span:nth-child(1) { animation-delay: 0.2s; }
.secondary-journey-title span:nth-child(2) { animation-delay: 0.4s; }
.secondary-journey-title span:nth-child(3) { animation-delay: 0.6s; }
.secondary-journey-title span:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideIn {
  0% {
      opacity: 0;
      transform: translateX(-20px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Media query pour écrans mobiles */
@media screen and (max-width: 768px) {
  .secondary-journey-title {
      font-size: 1.8em; /* Réduit la taille de la police sur mobile */
      flex-direction: column; /* Affiche les mots les uns sous les autres */
      align-items: center; /* Centre les éléments */
      gap: 0.1em; /* Réduit l'espacement */
  }

  .secondary-journey-title-wrapper {
      padding: 0.3em 0.5em; /* Réduit le padding pour gagner de l'espace */
  }

  .journey-subtitle {
      font-size: 0.9em; /* Ajuste la taille du sous-titre pour cohérence */
      padding: 0 1em; /* Ajoute un peu de padding pour éviter le collage aux bords */
  }
}

/* Media query pour écrans très étroits (ex. < 400px) */
@media screen and (max-width: 400px) {
  .secondary-journey-title {
      font-size: 1.5em; /* Réduit encore la taille pour les très petits écrans */
  }
}
/* Surlignage animé sous le titre */
.title-highlight {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange-cta);
    animation: highlightGrow 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes highlightGrow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Icône de camion animée */
.title-truck-icon {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: truckMove 2s ease infinite;
}

.title-truck-icon i {
    font-size: 1.5em;
    color: var(--orange-cta);
}

@keyframes truckMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Sous-titre (inchangé) */
.journey-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--gris-acier);
    max-width: 750px;
    margin: 1em auto 0;
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline (inchangée) */
.logistic-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 2em 0;
    margin-top: 2em;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--orange-cta), var(--bleu-marine));
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-circle {
    width: 60px;
    height: 60px;
    background: var(--blanc-pur);
    border: 3px solid var(--orange-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1em;
    z-index: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-step:hover .timeline-circle {
    background: var(--orange-cta);
    transform: scale(1.1);
}

.timeline-circle i {
    font-size: 1.5em;
    color: var(--bleu-marine);
    transition: color 0.3s ease;
}

.timeline-step:hover .timeline-circle i {
    color: var(--blanc-pur);
}

.timeline-content {
    background: var(--blanc-pur);
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: var(--bleu-marine);
    margin-bottom: 0.5em;
}

.timeline-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    color: var(--gris-foncé);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .secondary-journey-title {
        font-size: 2em;
    }

    .journey-subtitle {
        font-size: 1.1em;
    }

    .logistic-timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-line {
        width: 4px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-step {
        display: flex;
        align-items: center;
        text-align: left;
        margin: 2em 0;
        max-width: 100%;
    }

    .timeline-circle {
        margin: 0 1em 0 0;
    }

    .timeline-content {
        flex: 1;
    }
}

/* ✅ Section Impact Visuel - Statistiques Animées */
.impact-stats-section {
    background: linear-gradient(180deg, #ffffff, #f1f3f6);
    padding: 5em 2em;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteneur du titre */
.journey-title-container {
    position: relative;
    margin-bottom: 3em;
}

/* Style pour les titres secondaires */
.secondary-journey-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    background: var(--blanc-pur);
    border: 2px solid var(--bleu-marine);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.secondary-journey-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--bleu-marine);
    display: flex;
    gap: 0.3em;
    margin: 0;
    position: relative;
}

.secondary-journey-title span {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.8s ease forwards;
}

.secondary-journey-title span:nth-child(1) { animation-delay: 0.2s; }
.secondary-journey-title span:nth-child(2) { animation-delay: 0.4s; }
.secondary-journey-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Surlignage animé sous le titre */
.title-highlight {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange-cta);
    animation: highlightGrow 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes highlightGrow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Icône pour les statistiques */
.title-stats-icon {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: chartGrow 1.5s ease infinite;
}

.title-stats-icon i {
    font-size: 1.5em;
    color: var(--orange-cta);
}

@keyframes chartGrow {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
}

/* Sous-titre */
.journey-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--gris-acier);
    max-width: 750px;
    margin: 1em auto 3em;
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grille des statistiques */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin-top: 2em;
}

.stat-circle {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.stat-circle.active {
    opacity: 1;
    transform: scale(1);
}

/* Cercles SVG pour progression */
.circle-progress {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 12;
}

.circle-fill {
    fill: none;
    stroke: var(--orange-cta);
    stroke-width: 12;
    stroke-dasharray: 503; /* Périmètre ajusté pour r=80 (2 * π * 80 ≈ 503) */
    stroke-dashoffset: 503;
    transition: stroke-dashoffset 2s ease;
}

.stat-circle.active .circle-fill {
    stroke-dashoffset: 0;
}

.circle-inner {
    fill: rgba(255, 255, 255, 0.9);
    stroke: none;
}

/* Contenu des statistiques */
.stat-content {
    position: absolute;
    text-align: center;
    padding: 1em;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3em;
}

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--bleu-marine);
    line-height: 1;
}

.stat-unit {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    color: var(--bleu-marine);
    line-height: 1;
}

.stat-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: var(--gris-foncé);
    line-height: 1.4;
    margin-top: 0.8em;
    max-width: 140px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        gap: 2em;
    }

    .stat-circle {
        width: 160px;
        height: 160px;
    }

    .circle-progress {
        width: 160px;
        height: 160px;
    }

    .circle-bg, .circle-fill, .circle-inner {
        cx: 80;
        cy: 80;
        r: 70;
    }

    .circle-fill {
        stroke-dasharray: 440; /* Périmètre ajusté pour r=70 (2 * π * 70 ≈ 440) */
        stroke-dashoffset: 440;
    }

    .stat-circle.active .circle-fill {
        stroke-dashoffset: 0;
    }

    .circle-inner {
        r: 60;
    }

    .stat-number {
        font-size: 2.2em;
    }

    .stat-unit {
        font-size: 1.3em;
    }

    .stat-content p {
        font-size: 0.9em;
        max-width: 120px;
    }

    .secondary-journey-title {
        font-size: 2em;
    }

    .journey-subtitle {
        font-size: 1.1em;
    }
}

/* ✅ Section Héro - Dépannage Auto */
.hero-depannage-auto {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/attachments/depan1.jpg'); /* Remplace par le chemin de ton image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Effet parallax (optionnel, peut être retiré si non désiré) */
}

.hero-depannage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay sombre pour la lisibilité, légèrement plus foncé que transport-routier */
    z-index: 1;
}

.hero-depannage-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2em;
    color: var(--blanc-pur);
}

.hero-depannage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-depannage-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 1.5em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.button {
    display: inline-block;
    padding: 0.8em 2em;
    background: var(--orange-cta);
    color: var(--blanc-pur);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background: var(--bleu-marine);
    transform: translateY(-2px);
}

.hero-depannage-reassurance {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.hero-depannage-reassurance div {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
}

.hero-depannage-reassurance i {
    font-size: 1.3em;
    color: var(--orange-cta);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-depannage-auto {
        height: 80vh;
        min-height: 500px;
        background-attachment: scroll; /* Désactive le parallax sur mobile */
    }

    .hero-depannage-title {
        font-size: 2.5em;
    }

    .hero-depannage-subtitle {
        font-size: 1.2em;
    }

    .button {
        font-size: 1em;
        padding: 0.7em 1.5em;
    }

    .hero-depannage-reassurance {
        flex-direction: column;
        gap: 1em;
    }

    .hero-depannage-reassurance div {
        font-size: 1em;
    }
}

/* ✅ Section Avantages - Dépannage Auto */
.depannage-advantages-section {
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
    padding: 5em 2em;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.depannage-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteneur du titre */
.journey-title-container {
    position: relative;
    margin-bottom: 3em;
}

/* Style pour les titres secondaires (plaque de signalisation) */
.secondary-journey-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    background: var(--blanc-pur);
    border: 2px solid var(--bleu-marine);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.secondary-journey-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--bleu-marine);
    display: flex;
    gap: 0.3em;
    margin: 0;
    position: relative;
}

.secondary-journey-title span {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.8s ease forwards;
}

.secondary-journey-title span:nth-child(1) { animation-delay: 0.2s; }
.secondary-journey-title span:nth-child(2) { animation-delay: 0.4s; }
.secondary-journey-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Surlignage animé sous le titre */
.title-highlight {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange-cta);
    animation: highlightGrow 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes highlightGrow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Icône animée (adaptée au dépannage) */
.title-truck-icon {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: toolPulse 2s ease infinite;
}

.title-truck-icon i {
    font-size: 1.5em;
    color: var(--orange-cta);
}

@keyframes toolPulse {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* Sous-titre */
.journey-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--gris-acier);
    max-width: 750px;
    margin: 1em auto 0;
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grille des avantages */
.advantages-grid {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 3em;
}

.advantage-card {
    background: var(--blanc-pur);
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s ease forwards;
}

.advantage-card:nth-child(1) { animation-delay: 0.2s; }
.advantage-card:nth-child(2) { animation-delay: 0.4s; }
.advantage-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet 3D au survol */
.advantage-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Icône animée */
.advantage-icon {
    font-size: 2.5em;
    color: var(--orange-cta);
    margin-bottom: 0.5em;
    animation: iconPulse 1.5s ease infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.advantage-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--bleu-marine);
    margin-bottom: 0.5em;
}

.advantage-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: var(--gris-foncé);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .secondary-journey-title {
        font-size: 2em;
    }

    .journey-subtitle {
        font-size: 1.1em;
    }

    .advantages-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }

    .advantage-card {
        width: 100%;
        max-width: 350px;
    }

    .advantage-card h3 {
        font-size: 1.2em;
    }

    .advantage-card p {
        font-size: 0.95em;
    }
}

/* ✅ Section Étapes - Dépannage Auto */
/* ✅ Section Étapes - Dépannage Auto */
.depannage-journey-section {
    background: linear-gradient(180deg, #ffffff, #f1f3f6);
    padding: 5em 2em;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.depannage-journey-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteneur du titre */
.journey-title-container {
    position: relative;
    margin-bottom: 3em;
}

/* Style pour les titres secondaires (plaque de signalisation) */
.secondary-journey-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    background: var(--blanc-pur);
    border: 2px solid var(--bleu-marine);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.secondary-journey-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--bleu-marine);
    display: flex;
    gap: 0.3em;
    margin: 0;
    position: relative;
}

.secondary-journey-title span {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.8s ease forwards;
}

.secondary-journey-title span:nth-child(1) { animation-delay: 0.2s; }
.secondary-journey-title span:nth-child(2) { animation-delay: 0.4s; }
.secondary-journey-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Surlignage animé sous le titre */
.title-highlight {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange-cta);
    animation: highlightGrow 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes highlightGrow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Icône animée (adaptée au dépannage) */
.title-truck-icon {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: toolPulse 2s ease infinite;
}

.title-truck-icon i {
    font-size: 1.5em;
    color: var(--orange-cta);
}

@keyframes toolPulse {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* Sous-titre */
.journey-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--gris-acier);
    max-width: 750px;
    margin: 1em auto 0;
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline des étapes */
.journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 0;
    margin-top: 2em;
}

/* Ligne de progression (style route) */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        to right,
        var(--orange-cta) 0,
        var(--orange-cta) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateY(-50%);
    animation: roadDashMove 10s linear infinite;
}

@keyframes roadDashMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

/* Étapes individuelles */
.timeline-step {
    position: relative;
    width: 25%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: stepFadeIn 0.8s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.2s; }
.timeline-step:nth-child(2) { animation-delay: 0.4s; }
.timeline-step:nth-child(3) { animation-delay: 0.6s; }
.timeline-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes stepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cercle de l’étape */
.step-circle {
    width: 60px;
    height: 60px;
    background: var(--blanc-pur);
    border: 4px solid var(--orange-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-circle i {
    font-size: 1.5em;
    color: var(--bleu-marine);
    animation: iconRotate 2s ease infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.timeline-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 147, 41, 0.5);
}

/* Contenu de l’étape */
.step-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--bleu-marine);
    margin-bottom: 0.5em;
}

.step-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    color: var(--gris-foncé);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .secondary-journey-title {
        font-size: 2em;
    }

    .journey-subtitle {
        font-size: 1.1em;
    }

    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: 3em; /* Ajusté pour un espacement clair */
    }

    /* Cacher la ligne originale sur mobile */
    .timeline-line {
        display: none;
    }

    /* Ajouter des segments de ligne entre les étapes */
    .timeline-step {
        width: 100%;
        max-width: 300px;
        position: relative;
    }

    .timeline-step:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: -3em; /* Position sous le cercle */
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 3em; /* Correspond au gap */
        background: repeating-linear-gradient(
            to bottom,
            var(--orange-cta) 0,
            var(--orange-cta) 10px,
            transparent 10px,
            transparent 20px
        );
        animation: roadDashMoveVertical 10s linear infinite;
        z-index: 0; /* Derrière les cercles */
    }

    @keyframes roadDashMoveVertical {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 0 20px;
        }
    }

    .step-circle {
        z-index: 1; /* Assure que le cercle est au-dessus de la ligne */
    }

    .step-content h3 {
        font-size: 1.1em;
    }

    .step-content p {
        font-size: 0.9em;
        max-width: 250px;
    }
}

/* ✅ Section Contact d’Urgence - Dépannage Auto */
.emergency-contact-section {
    background: linear-gradient(180deg, #1a2526, #2e3b3e);
    padding: 5em 2em;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Conteneur du titre */
.emergency-title-container {
    position: relative;
    margin-bottom: 3em;
}

/* Style du titre (effet urgence) */
.emergency-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    background: var(--orange-cta);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 147, 41, 0.5);
    animation: warningFlash 2s ease infinite;
}

@keyframes warningFlash {
    0% {
        box-shadow: 0 0 15px rgba(255, 147, 41, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 147, 41, 0.8);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 147, 41, 0.5);
    }
}

.emergency-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--blanc-pur);
    display: flex;
    flex-wrap: wrap; /* Permet au texte de passer à la ligne */
    gap: 0.3em;
    margin: 0;
    position: relative;
    justify-content: center; /* Centre le texte sur mobile */
}

.emergency-title span {
    opacity: 0;
    transform: scale(0.8);
    animation: pulseIn 0.5s ease forwards;
}

.emergency-title span:nth-child(1) { animation-delay: 0.2s; }
.emergency-title span:nth-child(2) { animation-delay: 0.4s; }
.emergency-title span:nth-child(3) { animation-delay: 0.6s; }
.emergency-title span:nth-child(4) { animation-delay: 0.8s; }

@keyframes pulseIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .emergency-title {
        font-size: 2em; /* Réduire la taille de la police */
        flex-wrap: wrap; /* Confirmer que le texte peut passer à la ligne */
        gap: 0.2em; /* Réduire l'espacement entre les mots */
        text-align: center; /* Centrer le texte */
    }

    .emergency-title-wrapper {
        padding: 0.5em; /* Réduire le padding pour gagner de l'espace */
        max-width: 100%; /* S'assurer que le conteneur ne dépasse pas l'écran */
        box-sizing: border-box; /* Inclure le padding dans la largeur */
    }

    .emergency-title-container {
        margin-bottom: 2em; /* Réduire la marge pour un meilleur espacement */
    }

    .emergency-subtitle {
        font-size: 1.1em; /* Ajuster la taille du sous-titre */
        padding: 0 1em; /* Ajouter un padding pour éviter que le texte touche les bords */
    }
}

/* Icône de sirène animée */
.emergency-siren {
    position: absolute;
    top: -30px;
    right: -30px;
    transform: rotate(20deg);
}

.emergency-siren i {
    font-size: 2em;
    color: var(--bleu-marine);
    animation: sirenFlash 1s ease infinite;
}

@keyframes sirenFlash {
    0%, 100% {
        color: var(--bleu-marine);
        text-shadow: none;
    }
    50% {
        color: #ff3333;
        text-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
    }
}

/* Sous-titre */
.emergency-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    color: var(--blanc-pur);
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Appel à l’action (numéro et bouton) */
.emergency-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.emergency-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--orange-cta);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em 1em;
    background: var(--blanc-pur);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: vibrate 0.5s ease infinite;
}

.emergency-number i {
    font-size: 1.2em;
    color: var(--bleu-marine);
}

.emergency-number:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes vibrate {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

.emergency-button {
    display: inline-block;
    padding: 1em 2em;
    background: var(--orange-cta);
    color: var(--blanc-pur);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.emergency-button:hover {
    background: var(--bleu-marine);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .emergency-title {
        font-size: 2.2em;
    }

    .emergency-subtitle {
        font-size: 1.1em;
    }

    .emergency-number {
        font-size: 1.5em;
        padding: 0.5em 1em;
    }

    .emergency-button {
        font-size: 1em;
        padding: 0.8em 1.5em;
    }
}

.emergency-buttons-container {
  display: flex;
  gap: 10px; /* Espace entre les boutons */
  justify-content: center; /* Centre les boutons horizontalement */
  align-items: center; /* Aligne verticalement */
}

/* ✅ Bouton Flottant Interactif */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-toggle {
    display: none;
}

/* Bouton principal (icône) */
.floating-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--orange-cta);
    color: var(--blanc-pur);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.5em;
    animation: floatPulse 2s ease-in-out infinite;
}

.floating-button-icon i {
    transition: transform 0.3s ease;
}

.floating-button-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animation de pulsation pour le bouton */
@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Menu flottant */
.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--blanc-pur);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    width: 250px;
    padding: 1em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Afficher le menu quand la case est cochée */
.floating-toggle:checked ~ .floating-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Rotation de l'icône quand le menu est ouvert */
.floating-toggle:checked ~ .floating-button-icon i {
    transform: rotate(45deg);
}

/* Actions dans le menu */
.floating-action {
    display: flex;
    align-items: center;
    gap: 0.8em;
    padding: 0.8em 1em;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: var(--bleu-marine);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.floating-action i {
    font-size: 1.2em;
    color: var(--orange-cta);
}

.floating-action:hover {
    background: var(--bleu-marine);
    color: var(--blanc-pur);
    transform: translateX(5px);
}

.floating-action:hover i {
    color: var(--blanc-pur);
}

/* Responsive */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }

    .floating-button-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }

    .floating-menu {
        width: 200px;
        bottom: 70px;
    }

    .floating-action {
        font-size: 0.9em;
        padding: 0.6em 0.8em;
    }
}

/* ✅ Section Formulaire Devis Coursier */
.devis-form-section {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 6em 2em;
  position: relative;
  overflow: hidden;
}

.devis-form-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Titre avec effet de route */
.devis-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}

.devis-section-title {
  display: inline-flex;
  flex-wrap: wrap; /* Permet au texte de passer à la ligne si nécessaire */
  gap: 0.3em;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--bleu-marine);
  padding: 0.3em 1em;
  background: var(--blanc-pur);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  justify-content: center; /* Centre les éléments flex */
}

.devis-section-title span {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.8s ease forwards;
}

.devis-section-title span:nth-child(1) { animation-delay: 0.2s; }
.devis-section-title span:nth-child(2) { animation-delay: 0.4s; }
.devis-section-title span:nth-child(3) { animation-delay: 0.6s; }
.devis-section-title span:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .devis-section-title {
    font-size: 1.8em; /* Réduit la taille de la police sur mobile */
    flex-direction: column; /* Affiche les mots les uns sous les autres */
    align-items: center; /* Centre les éléments */
    gap: 0.1em; /* Réduit l'espacement */
    padding: 0.2em 0.5em; /* Réduit le padding pour gagner de l'espace */
  }

  .devis-section-subtitle {
    font-size: 0.9em; /* Ajuste la taille du sous-titre */
    padding: 0 1em; /* Ajoute du padding pour éviter le collage aux bords */
  }

  .devis-form {
    padding: 1.5em;
  }

  .form-group label {
    font-size: 1em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95em;
  }

  .button {
    font-size: 0.9em;
    padding: 0.7em 1.5em;
  }

  .submit-button {
    font-size: 1em;
    padding: 0.8em 2em;
  }
}

/* Media query pour écrans très étroits (ex. < 400px) */
@media (max-width: 400px) {
  .devis-section-title {
    font-size: 1.5em; /* Réduit encore la taille pour les très petits écrans */
    padding: 0.2em 0.3em; /* Réduit davantage le padding */
  }
}


.title-truck-icon {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: truckMove 2s ease infinite;
}

.title-truck-icon i {
  font-size: 1.5em;
  color: var(--orange-cta);
}

@keyframes truckMove {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-20px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

.title-road-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--orange-cta) 0,
    var(--orange-cta) 10px,
    transparent 10px,
    transparent 20px
  );
  animation: roadDashMove 10s linear infinite;
}

@keyframes roadDashMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 0;
  }
}

.devis-section-subtitle {
  font-size: 1.2em;
  color: var(--gris-acier);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2em;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Formulaire */
.devis-form {
  background: var(--blanc-pur);
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 1.5em;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.1em;
  font-weight: 500;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
}

.form-group label i {
  color: var(--orange-cta);
  font-size: 1.2em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8em 1em;
  font-size: 1em;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-cta);
  box-shadow: 0 0 8px rgba(247, 152, 29, 0.3);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.input-help {
  display: block;
  font-size: 0.85em;
  color: var(--gris-acier);
  margin-top: 0.3em;
}

/* Navigation entre étapes */
.form-navigation {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 2em;
}

.form-navigation.center {
  justify-content: center;
}

.button {
  padding: 0.8em 2em;
  background: var(--orange-cta);
  color: var(--blanc-pur);
  font-size: 1em;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background: var(--bleu-marine);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-button {
  background: linear-gradient(90deg, var(--orange-cta), var(--bleu-marine));
  padding: 1em 3em;
  font-size: 1.2em;
}

.submit-button:hover {
  background: linear-gradient(90deg, var(--bleu-marine), var(--orange-cta));
}

/* Effet de survol pour les boutons */
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}


/* Styles pour les groupes de cases à cocher */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 0.5em;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95em;
  color: var(--gris-acier);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--orange-cta);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Grille pour les options supplémentaires */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5em;
}

.option-grid label {
  padding: 0.5em;
  border-radius: 5px;
  background: #f9f9f9;
  transition: background 0.3s ease;
}

.option-grid label:hover {
  background: #f0f0f0;
}

.option-grid .price {
  color: var(--orange-cta);
  font-size: 0.9em;
}

/* Style pour l'estimation */
.estimation {
  font-size: 1.2em;
  font-weight: 500;
  color: var(--bleu-marine);
  margin-bottom: 1em;
}

.estimation span {
  color: var(--orange-cta);
  font-weight: 700;
}

/* 🔐 Section Politique de Confidentialité */
.privacy-policy-section {
  background: linear-gradient(180deg, #f5f7fa, #ffffff);
  padding: 6em 2em;
  position: relative;
  overflow: hidden;
}

.privacy-policy-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Titre avec effet de "verrouillage" */
.privacy-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}

.privacy-section-title {
  display: inline-flex;
  gap: 0.3em;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--bleu-marine);
  padding: 0.3em 1em;
  background: var(--blanc-pur);
  border: 2px solid var(--bleu-marine);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.privacy-section-title span {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.8s ease forwards;
}

.privacy-section-title span:nth-child(1) { animation-delay: 0.2s; }
.privacy-section-title span:nth-child(2) { animation-delay: 0.4s; }
.privacy-section-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.title-shield-icon {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: shieldPulse 2s ease infinite;
}

.title-shield-icon i {
  font-size: 1.5em;
  color: var(--orange-cta);
}

@keyframes shieldPulse {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

.title-lock-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--bleu-marine) 20%,
    var(--orange-cta) 50%,
    var(--bleu-marine) 80%,
    transparent 100%
  );
  animation: lockLineGlow 3s ease infinite;
}

@keyframes lockLineGlow {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.privacy-section-subtitle {
  font-size: 1.2em;
  color: var(--gris-acier);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2em;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contenu de la politique */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.privacy-card {
  background: var(--blanc-pur);
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--orange-cta);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 152, 29, 0.1), transparent);
  transition: left 0.5s ease;
  left: -100%;
}

.privacy-card:hover::before {
  left: 100%;
}

.privacy-card h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.privacy-card h3 i {
  color: var(--orange-cta);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.privacy-card:hover h3 i {
  transform: rotate(15deg);
}

.privacy-card p {
  font-size: 1em;
  color: var(--gris-acier);
  line-height: 1.6;
}

.privacy-card a {
  color: var(--orange-cta);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-card a:hover {
  color: var(--bleu-marine);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-section-title {
    font-size: 2em;
  }

  .privacy-section-subtitle {
    font-size: 1em;
  }

  .privacy-card {
    padding: 1.2em;
  }

  .privacy-card h3 {
    font-size: 1.2em;
  }

  .privacy-card p {
    font-size: 0.95em;
  }
}

/* 📄 Section Conditions Générales de Vente */
.cgv-section {
  background: linear-gradient(180deg, #faf8f5, #ffffff);
  padding: 6em 2em;
  position: relative;
  overflow: hidden;
}

.cgv-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Titre avec effet de "parchemin" */
.cgv-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}

.cgv-section-title {
  display: inline-flex;
  gap: 0.3em;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--bleu-marine);
  padding: 0.3em 1em;
  background: var(--blanc-pur);
  border: 2px solid var(--bleu-marine);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="none" /><path d="M0 0 L100 0 C90 10 80 0 70 0 L0 0 Z" fill="rgba(247, 152, 29, 0.1)" /><path d="M0 100 L100 100 C90 90 80 100 70 100 L0 100 Z" fill="rgba(247, 152, 29, 0.1)" /></svg>');
  background-size: cover;
}

.cgv-section-title span {
  opacity: 0;
  transform: translateY(20px);
  animation: parchmentUnroll 0.8s ease forwards;
}

.cgv-section-title span:nth-child(1) { animation-delay: 0.2s; }
.cgv-section-title span:nth-child(2) { animation-delay: 0.4s; }
.cgv-section-title span:nth-child(3) { animation-delay: 0.6s; }
.cgv-section-title span:nth-child(4) { animation-delay: 0.8s; }

@keyframes parchmentUnroll {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-contract-icon {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: contractStamp 2s ease infinite;
}

.title-contract-icon i {
  font-size: 1.5em;
  color: var(--orange-cta);
}

@keyframes contractStamp {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) rotate(5deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}

.title-parchment-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    var(--bleu-marine) 0,
    var(--bleu-marine) 8px,
    transparent 8px,
    transparent 16px
  );
  animation: parchmentLineMove 5s linear infinite;
}

@keyframes parchmentLineMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 16px 0;
  }
}

.cgv-section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2em;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contenu des CGV */
.cgv-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.cgv-card {
  background: var(--blanc-pur);
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-right: 4px solid var(--bleu-marine);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.cgv-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cgv-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 51, 102, 0.1), transparent);
  transition: right 0.5s ease;
  right: -100%;
}

.cgv-card:hover::before {
  right: 100%;
}

.cgv-card h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.cgv-card h3 i {
  color: var(--bleu-marine);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.cgv-card:hover h3 i {
  transform: scale(1.2);
}

.cgv-card p {
  font-size: 1em;
  color: var(--gris-acier);
  line-height: 1.6;
}

.cgv-card a {
  color: var(--orange-cta);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cgv-card a:hover {
  color: var(--bleu-marine);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .cgv-section-title {
    font-size: 2em;
  }

  .cgv-section-subtitle {
    font-size: 1em;
  }

  .cgv-card {
    padding: 1.2em;
  }

  .cgv-card h3 {
    font-size: 1.2em;
  }

  .cgv-card p {
    font-size: 0.95em;
  }
}

/* 🏛️ Section Mentions Légales */
.legal-section {
  background: linear-gradient(180deg, #f9f9fb, #ffffff);
  padding: 6em 2em;
  position: relative;
  overflow: hidden;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Titre avec effet de "balance de justice" */
.legal-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}

.legal-section-title {
  display: inline-flex;
  gap: 0.3em;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--bleu-marine);
  padding: 0.3em 1em;
  background: var(--blanc-pur);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, transparent, var(--bleu-marine), transparent) 1;
}

.legal-section-title span {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.6s ease forwards;
}

.legal-section-title span:nth-child(1) { animation-delay: 0.2s; }
.legal-section-title span:nth-child(2) { animation-delay: 0.4s; }

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.title-balance-icon {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: balanceTilt 3s ease infinite;
}

.title-balance-icon i {
  font-size: 1.5em;
  color: var(--bleu-marine);
}

@keyframes balanceTilt {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) rotate(3deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}

.title-balance-line {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--bleu-marine);
  border-radius: 2px;
}

.title-balance-line::before,
.title-balance-line::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  background: var(--blanc-pur);
  border: 2px solid var(--bleu-marine);
  border-radius: 50%;
  animation: balanceSwing 3s ease infinite;
}

.title-balance-line::before {
  left: -10px;
}

.title-balance-line::after {
  right: -10px;
}

@keyframes balanceSwing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.legal-section-subtitle {
  font-size: 1.1em;
  color: var(--gris-acier);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2em;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contenu des mentions légales */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.legal-block {
  background: var(--blanc-pur);
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #e6e6e6;
}

.legal-block:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--bleu-marine);
}

.legal-block h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--bleu-marine);
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.legal-block h3 i {
  color: var(--bleu-marine);
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.legal-block:hover h3 i {
  color: var(--orange-cta);
}

.legal-block p {
  font-size: 1em;
  color: var(--gris-acier);
  line-height: 1.6;
}

.legal-block p strong {
  color: var(--bleu-marine);
}

.legal-block a {
  color: var(--orange-cta);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-block a:hover {
  color: var(--bleu-marine);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-section-title {
    font-size: 2em;
  }

  .legal-section-subtitle {
    font-size: 1em;
  }

  .legal-block {
    padding: 1.2em;
  }

  .legal-block h3 {
    font-size: 1.2em;
  }

  .legal-block p {
    font-size: 0.95em;
  }
}









.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.centered-service-card {
  grid-column: 1 / -1; /* Occupe toute la largeur de la grille */
  justify-self: center; /* Centre la carte horizontalement */
  max-width: 350px; /* Même largeur maximale que les autres cartes */
}




/* LISTE DEROULANTE ADRESSE DEVIS */
.autocomplete-suggestions {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: calc(100% - 20px);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  top: 100%; /* Positionne la liste sous le champ */
  margin-top: 8px; /* Léger décalage vertical */
  left: 10px; /* Alignement avec le champ */
  display: none;
}
.autocomplete-suggestions li {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.autocomplete-suggestions li:hover {
  background: #f0f0f0;
}
.autocomplete-suggestions li.no-results {
  font-style: italic;
  color: #888;
  cursor: default;
}


/*Limiter génération spinner */
/* Style pour le spinner */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-message {
  color: white;
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}



/* Tarifs Section Styling */
.tarifs-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarifs-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tarifs-title-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.tarifs-section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tarifs-section-title span {
  position: relative;
  transition: color 0.3s ease;
}

.tarifs-section-title span:hover {
  color: #e74c3c;
}

.title-truck-icon {
  font-size: 2rem;
  color: #e74c3c;
  animation: truck-move 2s infinite ease-in-out;
}

@keyframes truck-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.title-road-line {
  width: 100px;
  height: 4px;
  background-color: #e74c3c;
  margin: 0 auto;
  border-radius: 2px;
}

.tarifs-section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #7f8c8d;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.tarifs-tables {
  margin-top: 40px;
}

.tarifs-tables h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c3e50;
  margin: 30px 0 15px;
}

.tarifs-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.tarifs-table th,
.tarifs-table td {
  padding: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid #ecf0f1;
}

.tarifs-table th {
  background-color: #2c3e50;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.tarifs-table td {
  color: #34495e;
  font-weight: 400;
}

.tarifs-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.tarifs-table tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.3s ease;
}

.tarifs-notes {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #34495e;
  line-height: 1.6;
}

.tarifs-notes h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 10px;
}

.tarifs-notes ul {
  list-style: none;
  padding: 0;
}

.tarifs-notes ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.tarifs-notes ul li:before {
  content: '\f0c8';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #e74c3c;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
}

.tarifs-notes ul ul {
  margin-top: 5px;
  margin-left: 20px;
}

.tarifs-notes ul ul li:before {
  content: '\f111';
  font-size: 0.6rem;
  top: 4px;
}

.tarifs-notes a {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tarifs-notes a:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tarifs-section {
      padding: 40px 15px;
  }

  .tarifs-section-title {
      font-size: 2rem;
      flex-wrap: wrap;
      gap: 5px;
  }

  .title-truck-icon {
      font-size: 1.5rem;
  }

  .tarifs-section-subtitle {
      font-size: 1rem;
      padding: 0 10px;
  }

  .tarifs-tables h3 {
      font-size: 1.5rem;
  }

  .tarifs-table th,
  .tarifs-table td {
      font-size: 0.9rem;
      padding: 10px;
  }

  .tarifs-notes {
      font-size: 0.9rem;
      padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .tarifs-section-title {
      font-size: 1.8rem;
  }

  .tarifs-table th,
  .tarifs-table td {
      font-size: 0.85rem;
      padding: 8px;
  }

  .tarifs-notes {
      font-size: 0.85rem;
  }
}





/* Section Hero avec image de fond */
.tplm-hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/entrepot2.jpg') no-repeat center center/cover;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tplm-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1; /* Assure que le contenu est au-dessus du fond */
}

.tplm-hero-title {
  color: var(--orange-cta);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Améliore la lisibilité */
}

.tplm-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tplm-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Responsive Design */
@media (max-width: 768px) {
  .tplm-hero-section {
    padding: 80px 15px;
    min-height: 300px;
  }

  .tplm-hero-title {
    font-size: 2rem;
  }

  .tplm-hero-subtitle {
    font-size: 1rem;
  }

  .tplm-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}



/* Targeting the additional options checkboxes (except passenger count) */
.options-supplementaires input[type="checkbox"] {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    margin-right: 10px !important;
    vertical-align: middle !important;
}

.options-supplementaires label {
    display: inline-block !important;
    width: calc(100% - 40px) !important;
    font-size: 16px !important;
    line-height: 24px !important;
    vertical-align: middle !important;
}

@media screen and (max-width: 768px) {
    .options-supplementaires .checkbox-container {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 10px !important;
    }

    .options-supplementaires input[type="checkbox"] {
        flex-shrink: 0 !important;
    }

    .options-supplementaires label {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
}
