

.camion {
  position: absolute;
  right: 50px;
  bottom: -50px;
  width: 300px;
  z-index: 10;
  will-change: transform;
  transition: transform 0.3s ease;
}

.plane {
  position: absolute;
  left: 50px;
  bottom: -47px;
  width: 300px;
  z-index: 10;
  will-change: transform;
}

.ud-feature-desc {
  margin-bottom: 10px !important;
}

.ud-about-info li {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
}

/* ----------------- */

.map-wrap{
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  aspect-ratio: 1000 / 300; /* = viewBox */
  top: 0;
  right: 0;
}
.map{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: grayscale(100%);
  opacity: .95;
}

/* Overlay SVG */
.routes {
  position: absolute; inset: 0;
}

.routes circle,
.routes text {
  stroke-dasharray: none;
  z-index: 10;
}

/* Style des routes (pointillés, sans animation) */
.routes {
  fill: none;
  width: 100%;
  height: 100%;
  stroke-width: 3.5;
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(0,0,0,.35));
  z-index: 9;
  overflow: visible;
}
.route--road{ stroke: #C9AC64; }   /* or Feniks */
.route--sea { stroke: #4AA3D8; }
.route--air { stroke: #8E7CC3; }
.route--client { stroke: black; }

.dot{
  fill: #fff;
  stroke: #222;
  stroke-width: 2;
}
.origin{
  fill: #C9AC64;
}

.label{
  font: 600 14px/1.1 Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  fill: #e9eef3;
  paint-order: stroke;
  stroke: #0a0c10;
  stroke-width: 3px;  /* halo pour lisibilité */
  letter-spacing: .2px;
}

.feniks {
  margin-left: 95px;
}

.feniks-letter {
  display: flex;
  align-items: end;
  position: relative;
  left: -100px;
}

.feniks-title {
  font-size: 120px !important;
  font-family: serif;
  letter-spacing: 6px;
}

.feniks-img {
  width: 240px;
}

.prez {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}

.dropdown-item {
  padding: 0.3rem;        /* réduit l’espace autour */
  text-align: center;     /* centre le drapeau */
}
.dropdown-menu {
  min-width: auto;        /* empêche le menu d’être trop large */
  padding: 0.2rem;        /* réduit l’espace intérieur du menu */
}
.flag-icon {
  font-size: 1.5rem;
  border-radius: 50%;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
}
.btn-flag {
  background: none;
  border: none;
  padding: 0;
}


@media (max-width: 767px) {
  .camion {
    /* transform: scale(0.8); */
  }
  .feniks {
    margin-left: 80px;
  }
  .ud-hero-desc {
    text-align: center;
  }
  .feniks-letter {
    /* display: none; */
    left: -80px;
  }
  .feniks-title {
    font-size: 80px !important;
    margin-bottom: 5px !important;
    line-height: 60px !important;
    /* margin-left: 50px */
  }
  .feniks-img {
    width: 170px;
  }
}