/* Container principal */
.cta-container {
  display: flex;
  font-family: Arial, sans-serif;
  color: #333;
  justify-content: center;
  align-items: center;
}

.features {
  list-style: none; /* enlève les puces */
  padding: 0;
  margin: 0;
}

.features li {
  font-weight: bold;
  display: flex;
  align-items: center; /* aligne icône et texte verticalement */
  margin-bottom: 10px; /* espace entre les lignes */
  font-size: 16px;
}

.features li i {
  margin-right: 10px; /* espace entre l’icône et le texte */
  color: #0073e6; /* couleur des icônes (bleu WP) */
  font-size: 18px; /* taille de l’icône */
  min-width: 20px; /* pour que toutes les icônes prennent la même largeur */
  text-align: center;
}

.cta-container.client .illustration {
  width: 50%;
  padding: 50px !important;
}
.illustration img {
  border: 2px solid red;
}

.cta-container.prestataire .illustration {
  width: 50%;
  padding: 50px !important;
}

@media (min-width: 768px) {
  .cta-container {
    flex-direction: row;
  }
}

/* Sections client et prestataire */
.cta-section {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #0073e6;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-section ul {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 30px;
  padding: 0;
}

.cta-section ul li {
  margin-bottom: 10px;
  font-size: 1em;
}

/* Boutons CTA */
.cta-button {
  padding: 15px 30px;
  text-decoration: none;
  color: #fff !important;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

/* Couleurs spécifiques */

.cta-client .cta-button {
  background-color: #c80000;
}
.cta-section.cta-client {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}

.cta-client .cta-button:hover {
}

.cta-prestataire {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}

.cta-prestataire .cta-button {
  background-color: #c80000;
  color: white;
  /* background-color: #166534; */
}

.cta-prestataire .cta-button:hover {
  background-color: #0f4223;
}

/* Responsive */
@media (max-width: 767px) {
  .banner {
    margin-top: 29px;
  }

  .cta-section {
    padding: 40px 20px;
  }
  .cta-section ul {
    text-align: left;
  }
}

/* Jumbotron container */
.cta-jumbotron {
  padding: 60px 20px;
}

.cta-jumbotron-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .cta-jumbotron-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Chaque bloc client/prestataire */
.cta-jumbotron-block {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1); /* léger fond transparent */
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-jumbotron-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-jumbotron-block h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.cta-jumbotron-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-jumbotron-block ul {
  list-style: none;
  padding: 0;
}

.cta-jumbotron-block ul li {
  margin-bottom: 12px;
  font-size: 1em;
  position: relative;
  padding-left: 25px;
}

.avantage-client {
  display: flex;
  justify-content: end;
  margin-top: 40px;
  text-transform: uppercase;
}
.avantage-client div {
  margin-left: 10px;
}

.avantage-client a {
  background: #0073e6 !important;
}

h2.title-presta-avantage {
  color: #c80000;
}
h2.title-client-avantage {
  color: #0073e6;
}
.avantage-prestataire {
  margin-top: 10px;
  display: flex;
  justify-content: end;
  text-transform: uppercase;
}

/* Icône ✅ avant chaque point */
.cta-jumbotron-block ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

/* Couleurs spécifiques pour cohérence */
.cta-jumbotron-block.cta-client {
  border-top: 5px solid #0073e6; /* bleu clair pour client */
}

.cta-jumbotron-block.cta-prestataire {
  border-top: 5px solid #c80000; /* vert pour prestataire */
}

/* Responsive */
@media (max-width: 767px) {
  .container-theme {
    width: 88%;
  }

  .cta-stat {
    padding: 20px !important;
  }

  .cta-jumbotron {
    padding: 0;
  }

  h2.title-presta-avantage {
    font-size: 25px;
  }
  .avantage-prestataire {
    display: block;
    margin-top: 40px;
  }

  .illustration {
    display: none;
  }
  .cta-container {
    margin-bottom: 22px;
  }

  .avantage-client {
    display: block;
  }

  .avantage-client div {
    margin-left: 0;
    margin-bottom: 38px;
  }

  .cta-jumbotron-container {
    flex-direction: column;
    gap: 30px;
  }

  .cta-jumbotron-block ul {
    text-align: left;
  }
}

.cta-stats {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* background-color: #f3f4f6; */
  padding: 60px 20px;
  text-align: center;
}

.cta-stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .cta-stats-container {
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
  }
}

.cta-stat i {
  font-size: 50px;
  color: #0073e6;
}
.cta-stat {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-stat-number {
  font-size: 3em;
  font-weight: bold;
  color: #0073e6;
  margin-bottom: 10px;
}

.cta-stat-label {
  font-size: 1.2em;
  color: #555;
}
