.text-custom-theme {
  color: var(--theme-color);
  }
  ul.about-list li {
  font-weight: normal;
}
.custom-list li {
list-style-type: disc !important;
margin-left: 20px; /* Indentation pour les puces */
}

/* Style des icônes fixées sur le côté */
.contact-icons {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 1000;
}

.contact-icons a {
  display: block;
  margin-bottom: 15px;
  width: 60px; /* Largeur du cercle */
  height: 60px; /* Hauteur du cercle */
  background-color: #25D366; /* Couleur de WhatsApp */
  border-radius: 50%; /* Cercle parfait */
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 30px; /* Taille de l'icône */
  text-align: center;
  line-height: 30px; /* Centrer l'icône verticalement */
}

.contact-icons a.phone {
  background-color: #ffc107; /* Couleur de l'icône d'appel */
}

/* Couleur bleue pour l'icône SMS */
.contact-icons a.sms {
  background-color: #13b5ea; /* Bleu */
}




/* Zone */
/* Conteneur principal de la barre */
.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #58CDFF; /* Couleur bleue foncée */
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Section de gauche */
.call-bar .left-section {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-right: 2px solid #fff;
}

.call-bar .left-section p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

/* Section centrale (icône) */
.call-bar .center-section {
  flex: 0.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-bar .center-section .icon {
  background-color: #fff;
  color: #58CDFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section de droite */
.call-bar .right-section {
  flex: 1;
  text-align: center;
  padding: 10px;
}

.call-bar .right-section p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

.call-bar .right-section .phone-number {
  font-size: 18px;
  color:rgb(17, 17, 16); /* Couleur jaune pour le numéro */
}

/* Interaction */
.call-bar a {
  text-decoration: none;
  color: inherit;
}

.call-bar a:hover .icon {
  background-color: #FFD700;
  color: #58CDFF;
}




/* Texte en noir pour la section gauche */
.call-bar .left-section p {
color: #000; /* Noir */
}

/* Texte en noir pour la section droite */
.call-bar .right-section p {
color: #000; /* Noir */
}

/* Numéro de téléphone en noir */
.call-bar .right-section .phone-number {
color: #000; /* Noir */
}

/* Texte "RÉSERVEZ VOTRE TAXI" en noir */
.call-bar .left-section p,
.call-bar .left-section span {
color: #000; /* Noir */
}









