/* === Desktop button (vertical, à gauche) === */
.btn-call-desktop {
  position: fixed;
  top: 50%;
  left: 0;
  transform: rotate(-90deg) translate(-50%, 100%);
  transform-origin: bottom left;
  background-color: #28a745;
  color: white;
  padding: 10px 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  white-space: nowrap;
  line-height: 1; /* ✅ Évite les décalages verticaux */
  height: 40px; /* ✅ Fixe une hauteur constante pour centrage */
  
}

.btn-call-desktop:hover {
  background-color: #218838;
  gap: 10px; /* ← seulement au survol */
}


/* Masquer le numéro par défaut */
.btn-call-desktop .numero {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

/* Révéler le numéro au survol */
.btn-call-desktop:hover .numero {
  opacity: 1;
  max-width: 200px;
}

/* === Mobile button (simple, en bas à gauche) === */
.btn-call-mobile {
  position: fixed;
  bottom: 20px;
  left: 5px;
  background-color: #28a745;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none; /* visible seulement sur mobile */
  transition: background-color 0.3s ease;
}

.btn-call-desktop:hover,
.btn-call-mobile:hover {
  background-color: #218838;
}


.footer-bottom {
  background-color: #DFE1E4;
 display: flex;
 flex-direction: column;
 align-items: center;
  font-size: 14px;
  padding: 1rem ;
  width: 100%;
  
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
}

.footer-list-colonne {
  width: calc(100%/3);
  min-width: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-list-colonne a{
  text-decoration: none;
  color: black;

}

.footer-list-logo {
  width: 70px;
}

.footer-list-title {
  font-weight: bold;
  margin: 1rem 0;
}

.footer-list-colonne ul {
    list-style-type: disc;     /* Affiche les puces (points) */
    margin-left: 20px;         /* Décalage vers la droite */
    padding-left: 20px;        /* Espace interne à gauche */
}

.footer-list-colonne li {
    margin-bottom: 5px;        /* Espacement entre les éléments */
}

.footer-end {
  font-size: 11px;
  text-align: center;
}

.footer-list-rs-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;

}

.footer-list-rs {
  height: 30px;
  
}
/* === Responsive control === */
@media (max-width: 768px) {
  .btn-call-desktop {
    display: none;
  }
  .btn-call-mobile {
    display: inline-block;
  }


  .footer-list-colonne {
  width: 100%;
  padding: 0 1rem;

}
}
