


html {
  scroll-behavior: smooth;
}
* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;

  
}

/************************************************
 *      HEADER
 ************************************************/
************************************************/
 /* Header global */
 header.site-header {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #004d40;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color: white;
  padding: 15px 20px;
}

.header-container {
  display: flex;
  background-color: #00695c;
  color: white;

  flex-direction: column;
  gap: 10px;
}

.header-top {
  display: flex;
  justify-content: center;

  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.header-flag {
  height: 28px;
  border-radius: 4px;
}

.header-bottom {
  display: flex;
  justify-content: center;

  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-badge {
  background-color: #00bfa5;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  animation: pulse 2s infinite;
}

.header-phone {
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #00796b;
  padding: 8px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  animation: pulse-ring 1.8s infinite ease-in-out;
  transition: background-color 0.3s ease;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 191, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0); }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 150, 136, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 150, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 150, 136, 0);
  }
}

@media (min-width: 769px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header-top, .header-bottom {
    flex-direction: row;
    justify-content: flex-start;
  }
  .header-container {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .page-title-section {
    padding-top: calc(70px + 40px); /* header + burger height */
  }
}

.burger-wrapper {
  background-color: #004d40;
  padding: 10px 20px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
}

.burger-toggle {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.burger-icon {
  font-size: 1.6rem;
  margin-right: 8px;
}

.burger-label {
  font-size: 1rem;
  color: white;
}

/* === SLIDE MENU === */
.burger-slide-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #004d40;
  z-index: 99999;
  transition: left 0.3s ease;
  padding-top: 70px;
}

.burger-slide-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.burger-slide-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.burger-slide-menu li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.burger-slide-menu li a:hover {
  background-color: #00695c;
}

.burger-slide-menu.open {
  left: 0;
}

.burger-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
/************************************************
 *   SECTION TITLE BLOC PAGE
 ************************************************/


 .page-title-section {
  background: #00695c;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.page-title-section h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.page-title-section p {
  font-size: 1rem;
  margin-top: 8px;
  color: #c8e6c9;
}
/************************************************
 *   SECTION TITLE BLOC PAGE
 ************************************************/



/************************************************
 *   SECTION 1 : HERO
 ************************************************/
.hero {
  background-color: #fff;
  padding: 40px 20px;
}
.hero h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 1.4;
}
.hero h2 .green {
  color: #4caf50;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.hero-left,
.hero-right,
.hero-map {
  flex: 1 1 300px;
  background-color: #fafafa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hero-left h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.checklist li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}
.form-group textarea {
  resize: vertical;
}
.submit-btn,
.eligibility-btn {
  background-color: #4caf50;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block; 
  white-space: nowrap; 
}
.submit-btn:hover,
.eligibility-btn:hover {
  background-color: #43a047;
}



/************************************************
 *   SECTION 2 : HOW IT WORKS
 ************************************************/
.how-it-works {
  background-color: #e8f5e9	;
  max-width: 1200px;
  margin: 30px auto;
  padding: 40px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}
.how-works-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.how-left, .how-right {
  flex: 1 1 300px;
}
.how-left h2 {
  color: #4caf50;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.how-left p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.how-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.how-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.how-checklist li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.how-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.how-right img {
  width: 100%;
  border-radius: 8px;
  display: block;
}


/************************************************
 *   SECTION TEXTE
 ************************************************/





 .text-adaptation {
  max-width: 1200px;
  margin: 30px auto;
  background-color: #f0fdf4;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.text-adaptation-content h4 {
  color: #4caf50;
  margin-top: 1.2em;
}
.text-adaptation-content p,
.text-adaptation-content ul {
  margin-bottom: 1em;
  line-height: 1.6;
}
.text-adaptation-content ul {
  list-style: disc inside;
}


/************************************************
 *   SECTION TEXTE
 ************************************************/





/************************************************
 *   SECTION TEXTE VILLE
 ************************************************/
 .text-region-info {
  max-width: 1200px;
  margin: 30px auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.text-region-info a {
  color: #2aa84f;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-region-info a:hover {
  color: #1e7e3f;
  text-decoration: underline;
}



/************************************************
 *   SECTION TEXTE VILLE
 ************************************************/





/************************************************
 *   SECTION 3 : CAROUSEL
 ************************************************/

.carousel-realizations {
  max-width: 1200px;
  margin: 30px auto; 
  padding: 40px 20px;
  border-radius: 8px;
  text-align: center;

}
.carousel-realizations h2 {
  color: #4caf50;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}
.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 10px;
}
.carousel-slide img {
  width: 100%;
  border-radius: 5px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #4caf50;
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.8;
  border-radius: 50%;
}
.carousel-button:hover {
  opacity: 1;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}




/************************************************
 *           REGION
 ************************************************/

.region-list {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
}

.regionTitle {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}

.regionButtons {
  text-align: center;
  margin-bottom: 15px;
}

.regionButtons button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 5px;
}

#btnPlus {
  background: #4caf50;
  color: #fff;
}

#btnMoins {
  background: #f44336;
  color: #fff;
}

#cityList {
  display: none;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
}

#cityList ul {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  column-gap: 20px;
  list-style: disc inside;
  margin: 0;
  padding: 0;
}

#cityList li {
  margin-bottom: 8px;
}

#cityList li a {
  color: #2196f3;
  text-decoration: none;
}

#cityList li a:hover {
  text-decoration: underline;
}


/************************************************
 *           REGION
 ************************************************/





/* === SECTION FAQ VILLE === */

.faq-ville {
  background-color: #e0f2f1;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 1200px; /* au lieu de 1100px */
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.faq-ville h2 {
  font-size: 1.6rem;
  text-align: center;
  color: #004d40;
  margin-bottom: 25px;
  font-weight: bold;
}

.faq-list details {
  background: white;
  border: 1px solid #b2dfdb;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px 15px;
  cursor: pointer;
}

.faq-list summary {
  font-weight: 600;
  color: #00695c;
  font-size: 1rem;
}

.faq-list p {
  margin-top: 8px;
  color: #333;
  font-size: 0.95rem;
}


/* === SECTION FAQ VILLE === */




/************************************************
 *           FOOTER
 ************************************************/


 .footer-dark {

  background: #004d40;
  color: white;
  padding: 30px 20px 10px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 20px;
}

.footer-item {
  min-width: 200px;
  text-align: center;
}

.phone-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.phone-text .phone-number {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
.phone-text .phone-contact {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 8px;
}

.footer-trust {
  font-size: 0.9rem;
  color: #00e676;
  font-weight: 500;
  margin-top: 5px;
}

.eligibility-btn {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}
.eligibility-btn:hover {
  background-color: #43a047;
}

.pulse-btn {
  animation: pulse-ring 1.8s infinite ease-in-out;
}

.rating-stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-top: 5px;
}

.rating-note {
  display: block;
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.footer-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-phone {
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #00796b;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.footer-phone:hover {
  background-color: #009688;
}


/************************************************
 *           FOOTER
 ************************************************/







/************************************************
 *   AJOUT GOOGLE MAP
 ************************************************/
.hero-map {
  flex: 1 1 300px;
  background-color: #fafafa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hero-map h3 {
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}
#map {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.4rem;
  }
  .hero-content {
    flex-direction: column;
  }
  .how-works-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero-right {
    order: -1;
  }
  .hero h2 {
    font-size: 1.4rem;
  }
  .hero-content {
    flex-direction: column;
  }
}

/* AJOUT DU BLOC DE STYLE POUR L'AFFICHAGE DES VILLES DE LA MÊME RÉGION */
.region-list h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.region-list ul {
  columns: 3; /* ou 4 selon ton besoin */
  -webkit-columns: 3;
  -moz-columns: 3;
  column-gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.region-list ul li {
  margin-bottom: 0.5em;
}



/* SECTION OPINIONS */
.testimonials {
  max-width: 1200px;
  margin: 30px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonials h2 {
  color: #4caf50;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.testimonial {
  background-color: #e0f7fa;  /* ou #ecfbfa pour un pastel plus discret */
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.testimonial-text {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-stars {
  font-size: 1.2rem;
  color: #ffca28;  /* Couleur d’étoile or */
  margin-bottom: 5px;
}

.testimonial-author {
  font-weight: bold;
  font-size: 0.95rem;
  color: #555;
}

/* Optionnel : responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 20px 15px;
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
}



