:root {
  --color-brand: #f04c02;
  --color-brand-dark: #d84300;
  --color-brand-soft: rgba(240, 76, 2, 0.12);
  --color-accent: #4f8a3a;

  --color-text: #20242c;
  --color-text-soft: #586172;
  --color-bg: #ffffff;
  --color-surface: #f5f7fa;
  --color-dark: #0e1218;
  --color-border: rgba(32, 36, 44, 0.1);

  --shadow-soft: 0 18px 60px rgba(16, 24, 40, 0.08);
  --shadow-card: 0 14px 40px rgba(16, 24, 40, 0.08);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;

  --container: min(1180px, calc(100% - 2rem));
  --header-height: 86px;

  --transition: 220ms ease;
}
.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.flags {
  max-width: 50%;
  height: auto;
}

@media (max-width: 768px) {
  .flags {
	  max-width: 50%;
    display: block;
    margin: 0 auto;
  }
}
.btn-devis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-brand), #ff6a1f);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn-devis:hover,
.btn-devis:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
}

.btn-devis::after {
  display: none !important;
}

@media (max-width: 860px) {
  .btn-devis {
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
  }
}
#hero {
  scroll-margin-top: var(--header-height);
}
/* =========================================
   RESET / BASE
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* =========================================
   ACCESSIBILITÉ
========================================= */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-brand);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

/* =========================================
   LAYOUT GÉNÉRAL
========================================= */

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-light {
  background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
}

.section-dark {
  background: linear-gradient(180deg, #121821 0%, #0d1219 100%);
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.align-center {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section p {
  margin: 0 0 1rem;
  color: var(--color-text-soft);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(32, 36, 44, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark,
.footer-brand {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--color-brand);
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  justify-self: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-menu a {
  position: relative;
  font-weight: 600;
  color: #2e3440;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch {
  display: inline-flex;
  padding: 0.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text-soft);
}

.lang-btn.is-active {
  background: var(--color-brand);
  color: #fff;
}

.nav-toggle {
  display: none;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-brand), #ff6a1f);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand));
}

.btn-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: clip;
  padding: 60;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(0rem, 0vw, 0rem);
  padding-bottom: 11rem;
}

.hero-copy {
  max-width: min(720px, 100%);
}

.hero h1 {
  max-width: 12ch;
  margin: 0 0 1.1rem;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-lead,
.hero-secondary {
  max-width: 62ch;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-points li,
.destinations-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  font-weight: 600;
  background: rgba(240, 76, 2, 1);
  border: 1px solid rgba(32, 36, 44, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.hero-points li::before,
.destinations-list li::before {
  content: "✓";
  color: var(--color-brand);
  font-weight: 800;
}

.trust-band {
   position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  color: #fff;
  background: linear-gradient(90deg, rgba(240, 76, 2, 0.96), rgba(255, 106, 31, 0.95));
}

.trust-band-inner {
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}


/* Animation d'arrivée de la trust band */
.trust-band {
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}


.trust-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

@media (max-width: 768px) {
  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .hero-lead,
  .hero-lead-mobile,
  .hero-lead-desktop {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================
   HERO SLIDER
========================================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.08);
  will-change: transform, opacity, clip-path, filter;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.trust-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hero h1,
.hero .hero-lead,
.hero .trust-band,
.hero .trust-contact a {
  color: #fff;
}

.hero .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-slider-dots {
  position: absolute;
  right: 2rem;
  bottom: 8rem;
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.08);
}

.hero-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .hero-slider-dots {
    right: 1rem;
    bottom: 6.5rem;
    gap: 0.5rem;
  }

  .hero-slider-dot {
    width: 10px;
    height: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }

  .hero-slider-dot {
    transition: none;
  }
}

/* =========================================
   HERO TITLE CROSSFADE
========================================= */

.hero-title {
  position: relative;
  display: inline-block;
  max-width: 16ch;
  margin: 0 0 1.1rem;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-title-layer {
  display: block;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    text-shadow 0.55s ease;
  will-change: opacity, transform;
}

/* la 2e couche est superposée */
.hero-title-dark {
  position: absolute;
  inset: 0;
}

/* styles visuels */
.hero-title-light {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-title-dark {
  color: #20242c;
  text-shadow: none;
}

/* état initial */
.hero-title-light {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-dark {
  opacity: 0;
  transform: translateY(6px);
}

/* slide 1 = titre blanc visible */
.hero.is-slide-1 .hero-title-light {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-slide-1 .hero-title-dark {
  opacity: 0;
  transform: translateY(6px);
}

/* slides 2 et 3 = titre foncé visible */
.hero.is-slide-2 .hero-title-light,
.hero.is-slide-3 .hero-title-light {
  opacity: 0;
  transform: translateY(-6px);
}

.hero.is-slide-2 .hero-title-dark,
.hero.is-slide-3 .hero-title-dark {
  opacity: 1;
  transform: translateY(0);
}






/* =========================================
   HERO MOBILE ULTRA PREMIUM
========================================= */





@media (max-width: 768px) {
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
   padding-top: 4rem;
  }
	
	

  .hero-media,
  .hero-slider,
  .hero-slide,
  .hero-slide img {
    height: 100%;
  }

  .hero-slide img {
    object-fit: cover;
    transform: scale(1.02);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 7.5rem;
  }

  .hero-copy {
    position: relative;
    max-width: 100%;
    padding: 0;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    inset: -1rem -0.75rem -1.25rem -0.75rem;
    z-index: -1;
    border-radius: 24px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 10, 16, 0.08) 0%,
        rgba(7, 10, 16, 0.18) 38%,
        rgba(7, 10, 16, 0.34) 100%
      );
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    pointer-events: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 7.4vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
    color: #fff;
    text-wrap: balance;
    text-shadow:
      0 2px 8px rgba(0, 0, 0, 0.18),
      0 10px 30px rgba(0, 0, 0, 0.16);
  }

  .hero-lead-desktop {
    display: none;
  }

 .hero-lead-mobile {
  display: block;
 
  
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
  text-align: center;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.14);
}
	
	.hero-lead-mobile {
  max-width: 32ch !important;
}

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1rem;
    border-radius: 15px;
    font-size: 0.97rem;
    justify-content: center;
    text-align: center;
  }

  .hero .btn-primary {
    box-shadow:
      0 14px 30px rgba(239, 106, 20, 0.24),
      0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .hero .btn-secondary-ghost,
  .hero .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero .btn-secondary-ghost:hover,
  .hero .btn-secondary-ghost:focus-visible,
  .hero .btn-secondary:hover,
  .hero .btn-secondary:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .hero-slider-dots {
    right: 1rem;
    bottom: 6.2rem;
    z-index: 3;
    display: flex;
    gap: 0.5rem;
  }

  .hero-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  }

  .hero-slider-dot.is-active {
    background: #fff;
    transform: scale(1.18);
  }

  .trust-band {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    background:
      linear-gradient(
        90deg,
        rgba(10, 14, 20, 0.22) 0%,
        rgba(10, 14, 20, 0.12) 50%,
        rgba(10, 14, 20, 0.06) 100%
      );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .trust-band-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .trust-band span {
    font-size: 0.88rem;
    color: #fff;
  }

  .trust-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .trust-contact a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.94);
  }

  .hero-slide:nth-child(1) img {
    object-position: 64% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 58% center;
  }

  .hero-slide:nth-child(3) img {
    object-position: 72% center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-bottom: 8rem;
  }

  .hero-copy::before {
    inset: -0.85rem -0.6rem -1rem -0.6rem;
    border-radius: 20px;
    background:
      linear-gradient(
        180deg,
        rgba(7, 10, 16, 0.06) 0%,
        rgba(7, 10, 16, 0.14) 36%,
        rgba(7, 10, 16, 0.3) 100%
      );
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  

  .hero-actions {
    max-width: 100%;
  }

  .hero-actions .btn {
    min-height: 50px;
    font-size: 0.95rem;
  }

  .hero-slider-dots {
    bottom: 6.9rem;
  }

  .hero-slide:nth-child(1) img {
    object-position: 68% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 60% center;
  }

  .hero-slide:nth-child(3) img {
    object-position: 75% center;
  }
}

@media (max-width: 768px) {
  .hero-copy::before {
    display: none;
  }
}

/* =========================================
   CARDS / BLOCS
========================================= */

.cards-grid {
  display: grid;
  gap: 1.25rem;
}

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

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.info-card,
.process-step,
.stat-card,
.contact-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.section-dark .service-card,
.route-box {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.service-card h3,
.info-card h3,
.process-step h3,
.route-box h3,
.contact-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.info-card ul,
.route-box ul,
.footer-links,
.destinations-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card li,
.route-box li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(32, 36, 44, 0.08);
}

.route-box li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.info-card li:last-child,
.route-box li:last-child {
  border-bottom: 0;
}

.card-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.accent-card {
  color: #fff;
  background: linear-gradient(135deg, var(--color-brand), #ff6a1f);
  border-color: transparent;
}

.accent-card p,
.accent-card h3 {
  color: #fff;
}
.highlight-card {
  background: linear-gradient(135deg, #3a3f47, #2b2f36);
  color: #fff;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* titres + texte blancs */
.highlight-card h3,
.highlight-card p,
.highlight-card li {
  color: #fff;
}

/* séparateurs lisibles */
.highlight-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* petit effet premium */
.highlight-card:hover {
  transform: translateY(-4px) scale(1.02);
}

/* =========================================
   SERVICES - TITRES ORANGE
========================================= */

#services .service-card h3 {
   color: #333;
  transition: color 0.35s ease;
}

/* Si tu gardes le hover orange sur les cards,
   le titre repasse en blanc au survol */
#services .service-card:hover h3,
#services .service-card:focus-within h3 {
  color: #333;
	color: var(--color-brand);
}
/* =========================================
   SERVICES - HOVER INTELLIGENT PREMIUM
========================================= */

#services .service-card {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    background 0.4s ease;

  will-change: transform;
}

/* === LIGHT EFFECT (lumière dynamique) === */
#services .service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.5s ease,
    transform 0.6s ease;
  pointer-events: none;
}

/* === MICRO GRADIENT === */
#services .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* === HOVER STATE === */
#services .service-card:hover,
#services .service-card:focus-within {
  transform: scale(1.05) translateY(-6px);

  background: linear-gradient(
    135deg,
    var(--color-brand),
    #ff6a1f
  );

  box-shadow:
    0 25px 60px rgba(240, 76, 2, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

/* activation lumière */
#services .service-card:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* activation gradient subtil */
#services .service-card:hover::after {
  opacity: 1;
}

/* TEXTE BLANC AU HOVER */
#services .service-card:hover h3,
#services .service-card:hover p {
  color: #fff;
}




/* =========================================
   COMMITMENTS - HOVER INTELLIGENT PREMIUM
========================================= */

#commitments .service-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.0s ease,
    box-shadow 0.0s ease,
    background 0.0s ease;
  will-change: transform;
}

#commitments .service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.0s ease,
    transform 0.0s ease;
  pointer-events: none;
}

#commitments .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#commitments .service-card:hover,
#commitments .service-card:focus-within {
  transform: scale(1.05) translateY(-6px);
  background: linear-gradient(135deg, var(--color-brand), #ff6a1f);
  box-shadow:
    0 25px 60px rgba(240, 76, 2, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

#commitments .service-card:hover::before,
#commitments .service-card:focus-within::before {
  opacity: 1;
  transform: scale(1.2);
}

#commitments .service-card:hover::after,
#commitments .service-card:focus-within::after {
  opacity: 1;
}

#commitments .service-card h3,
#commitments .service-card p {
  transition: color 0.35s ease;
}

#commitments .service-card:hover h3,
#commitments .service-card:hover p,
#commitments .service-card:focus-within h3,
#commitments .service-card:focus-within p {
  color: #fff;
}
#commitments .service-card:last-child h3,
#commitments .service-card:last-child p {
  font-weight: 700;
  color: var(--color-brand);
}
#commitments .service-card:hover h3,
#commitments .service-card:hover p {
  color: #fff;
}
/* =========================================
   MAP / DESTINATIONS
========================================= */

.map-section {
  overflow: clip;
}

.map-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.destinations-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.route-box {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

/* =========================================
   FLEET
========================================= */

.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.fleet-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* =========================================
   PROCESS
========================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.process-step {
  position: relative;
  padding-top: 3.9rem;
}

.process-step span {
  position: absolute;
  inset: 1.2rem auto auto 1.2rem;
  width: 2.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand);
  font-weight: 800;
}

/* =========================================
   STATS
========================================= */

.stats-section {
  color: #fff;
  background: linear-gradient(135deg, #141a23, #1f2632);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  color: #fff;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   FAQ
========================================= */

.faq-layout {
  display: grid;
  gap: 1.8rem;
}

details {
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

details + details {
  margin-top: 0.9rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 1rem 0 0;
}

/* =========================================
   CTA
========================================= */

.cta-section {
  padding-top: 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  background: linear-gradient(135deg, #1a2230, #0f141b 64%, #2c170a 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
}

/* =========================================
   CONTACT
========================================= */

.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card a {
  color: var(--color-brand);
  font-weight: 700;
}

.contact-form {
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid rgba(32, 36, 44, 0.14);
  border-radius: 16px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(240, 76, 2, 0.18);
  border-color: var(--color-brand);
}

.full-width {
  grid-column: 1 / -1;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #0d1219;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 2rem;
  padding: 3rem 0;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
}

.legal-popover {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.legal-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.legal-link span {
  position: relative;
  display: inline-block;
}

.legal-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.legal-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  width: min(34rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  color: #fff;
  background: rgba(14, 18, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 20;
}

.legal-tooltip::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 100%;
  border-width: 8px;
  border-style: solid;
  border-color: rgba(14, 18, 24, 0.98) transparent transparent transparent;
}

.legal-popover:hover .legal-tooltip,
.legal-popover:focus-within .legal-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.legal-tooltip-title {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  color: #fff;
}

.legal-tooltip p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.legal-tooltip a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================
   ACCESSIBILITÉ MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================
   RESPONSIVE <= 1100px
========================================= */

@media (max-width: 1100px) {
  .cards-grid-3,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-2,
  .fleet-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   RESPONSIVE <= 860px
========================================= */

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 0.24rem;
    width: 44px;
    height: 44px;
    padding: 0.7rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    cursor: pointer;
  }

  .nav-toggle span {
    height: 2px;
    background: var(--color-text);
    border-radius: 999px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem;
    border-radius: 12px;
  }

  .nav-menu a:hover {
    background: var(--color-surface);
  }

  .header-actions {
    grid-column: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .hero-points,
  .destinations-list,
  .cards-grid-2,
  .cards-grid-3,
  .stats-grid,
  .form-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .trust-band-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   RESPONSIVE <= 560px
========================================= */

@media (max-width: 560px) {
  .legal-tooltip {
    left: 0;
    right: auto;
    width: min(22rem, calc(100vw - 1.5rem));
  }

  .legal-tooltip::after {
    left: 1.35rem;
    right: auto;
  }

  .container {
    width: min(100% - 1.1rem, 1180px);
  }

  .section {
    padding: 4rem 0;
  }

  .brand-sub {
    display: none;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .header-actions {
    align-items: center;
  }

  .lang-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.85rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }
}




.cookie-banner {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;

  background: rgba(14, 18, 24, 0.92);
  backdrop-filter: blur(10px);

  padding: 1rem 0;
  color: #fff;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-loading {
  color: #49566a;
}

.form-status.is-success {
  color: #18794e;
}

.form-status.is-error {
  color: #b42318;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}


/* =========================================
   CONTACT FORM - CONSENTEMENT RGPD
========================================= */

.consent-field {
  display: block;
}

.consent-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(32, 36, 44, 0.14);
  border-radius: 16px;
}

.consent-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;
  accent-color: var(--color-brand);
  flex: 0 0 auto;
}

.consent-checkbox-wrap span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

.consent-field input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(240, 76, 2, 0.18);
  outline-offset: 2px;
}
