@font-face {
  font-family: 'Cocon Regular';
  src: url('fonts/CoconRegularFont.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fafff7;
  }

  /* Assurer que tous les titres utilisent la police du site */
  h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  }

  /* Assurer que tous les éléments de texte utilisent la police du site */
  p, a, span, div, li, td, th, label, input, textarea, select, button {
  font-family: 'Poppins', sans-serif;
  }

  header {
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
  }
  .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  }
  .logo-link:hover {
  opacity: 0.8;
  }
  .logo-img {
  height: 40px;
  width: auto;
  }
  /* Logo text in header */
.logo-text {
  font-size: 28px;
  color: #2aaa00;
  font-weight: 570;
  font-family: 'Cocon Regular', 'Poppins', sans-serif;
  letter-spacing: 0.25px;
  position: relative;
  top: 4px;
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
}

/* Logo text in footer (keeping improved contrast) */
.logo-text-footer {
  font-size: 32px;
  color: #005c00; /* Keeping darker green for better contrast in footer */
  font-weight: 600;
  margin-left: 15px;
  font-family: 'Cocon Regular', 'Poppins', sans-serif;
  letter-spacing: 0.25px;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 4px;
}

/* Other contrast improvements */
.tarifs-link {
  color: #1e5c00; /* Darker green for better contrast */
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.tarifs-link:hover {
  color: #174700;
  text-decoration: underline;
}

/* Footer text colors */
.site-footer {
  color: #222222; /* Darker text for better contrast */
  background-color: #f0f7ed;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.footer-copy {
  color: #333333; /* Darker text for better contrast */
}

.footer-description {
  color: #222222; /* Darker text for better contrast */
}

  .nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  }
  .nav a:hover {
  color: #006600;
  text-decoration: underline;
  }
  .partner-logos a[href="https://hmkenergy.be/"] img {
  width: auto;
  height: 75px;
  max-height: none;
  }
  .partner-logos {  align-items: center;
  gap: 40px;
  }
  .contact span:not(.header-cta .contact-info span) {
  font-size: 14px;
  color: #444;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  }
  .slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 60vh;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .slides {
  position: relative;
  height: 100%;
  }
  .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  }
  .slide.active {
  opacity: 1;
  z-index: 2;
  }
  .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  .caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  max-width: 60%;
  }
  .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
  border-radius: 4px;
  transition: background 0.3s;
  }
  .arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  }
  .arrow.left {
  left: 15px;
  }
  .arrow.right {
  right: 15px;
  }
  .hero {
  background-image: url('images/AL_ENERGY_BANNER.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 90vh;
  max-height: 900px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: white;
}

@media (max-width: 768px) {
  .hero {
    background-image: url('images/AL_ENERGY_BANNER_little.webp');
  }
}
  .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  }
  .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  }
  .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  animation: fadeInHero 0.3s ease-out;
  }
  .hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: white;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  }
  .hero h1 span {
  color: #b7ff8a;
  }
  @keyframes fadeInHero {
  from {
  opacity: 0;
  transform: translateY(20px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  .hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  }
  .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  }
  .btn {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  .btn:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.6);
  }
  .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  pointer-events: none;
  z-index: 1;
  }
  .btn:hover::before {
  left: 125%;
  }
  .emoji {
  font-size: 17px;
  line-height: 1;
  z-index: 2;
  }
  .text {
  z-index: 2;
  }
  .section-info {
  margin: 0px 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
  background: #f9fdf7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .info-image {
  flex: 1;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  }
  .info-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  .info-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #113c4c;
  font-weight: 700;
  line-height: 1.2;
  }
  .info-content h2 span {
  color: #32a000;
  }
  .info-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  }
  .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  }
  .benefits-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #2d5c4a;
  font-weight: 500;
  }
  .benefits-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #32a000;
  font-size: 1.3rem;
  }
  .tarifs-contact-container {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  }
  .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #32a000;
  color: white !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 15px rgba(50, 160, 0, 0.3);
  }
  .btn-discover:hover {
  background: #289000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(50, 160, 0, 0.4);
  }
  .urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff3a3a;
  color: white !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 15px rgba(255, 58, 58, 0.3);
  }
  .urgent-btn:hover {
  background: #e60000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 58, 58, 0.4);
  }
  .tarifs-contact-container::before {
  content: "|";
  color: #ddd;
  font-weight: 300;
  display: none;
  }
  @media (max-width: 768px) {
  .section-info {
  flex-direction: column;
  }
  .info-image {
  min-height: 300px;
  }
  .info-content {
  padding: 40px 25px;
  }
  .tarifs-contact-container {
  flex-direction: column;
  align-items: stretch;
  }
  }
  .info-image {
  flex: 1;
  background-image: url('images/certificateur.webp');
  background-repeat: no-repeat;
  background-size: 90%;
  min-height: 400px;
  }
  .info-content {
  flex: 1;
  background: #f5f5f5;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  .btn-discover {
  display: inline-block;
  padding: 12px 25px;
  background: #1e7a00;
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(50, 160, 0, 0.3);
  font-size: 16px;
  }
  .btn-discover:hover {
  background: #166000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(50, 160, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  }
  .btn-discover {
  animation: pulse-green 2s infinite;
  }
  @keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(50, 160, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(50, 160, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(50, 160, 0, 0); }
  }
  .tarifs-contact-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  font-family: 'Poppins', sans-serif;
  }
  .tarifs-link {
  color: #1e5c00; /* Darker green for better contrast */
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  }
  .tarifs-link:hover {
  color: #174700;
  text-decoration: underline;
  }
  .contact-section {
  margin-top: 0px;
  background-color: #0b150a;
  color: white;
  padding: 80px 40px;
  font-family: 'Poppins', sans-serif;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  }
  .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  }
  .contact-info {
  flex: 1;
  min-width: 300px;
  }
  .contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  }
  .contact-info p {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  }
  .contact-info a {
  color: #ffffff;
  text-decoration: underline;
  }
  .contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  }
  .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  }
  .form-row input {
  flex: 1;
  }
  .contact-form input,
  .contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  color: white;
  font-size: 1rem;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
  color: #ccc;
  }
  .contact-form button {
  background: white;
  color: #0b150a;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  }
  .contact a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  }
  .contact-form button:hover {
  background: #e5e5e5;
  }  .site-footer {
  color: #222222; /* Darker text for better contrast */
  background-color: #f0f7ed;
  padding: 40px 20px 0; /* Supprimer le padding bottom */
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0; /* Supprimer toute marge */
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px; /* Réduit le padding en bas */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Réduit l'espace entre les colonnes */
  }
  .footer-links a {
  margin-right: 20px;
  color: #333;
  text-decoration: none;
  }
  .footer-links a:hover {
  text-decoration: underline;
  }
  .footer-copy {
  color: #333333; /* Darker text for better contrast */
  }
  .footer-social a {
  margin-left: 15px;
  color: #111;
  font-size: 18px;
  transition: color 0.3s ease;
  }
  .footer-social a:hover {
  color: #32a000;
  }
  .hero-buttons .choice-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  .hero-buttons .choice-btn:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #33aa00;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }
  .site-footer .footer-copy {
  color: #444444;
  }
  .hero-buttons .choice-btn i {
  font-size: 18px;
  color: #33aa00;
  }
  .offers-section {
  background: #e2f5d6;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  }
  .offers-header h2 {
  font-size: 2.7rem;
  color: #113c4c;
  margin-bottom: 10px;
  }
  .offers-header .subtitle {
  font-size: 1.3rem;
  color: #32685d;
  margin-bottom: 40px;
  }
  .offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  }
  .offer-card {
  background: #004d66;
  color: white;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .offer-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  .offer-card .icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #aeeec3;
  }
  .offer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  }
  .offer-card .price {
  background: #3e784f;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
  }
  .included-section {
  margin-top: 60px;
  text-align: center;
  padding: 40px 20px;
  }
  .included-section h3 {
  font-size: 1.8rem;
  color: #113c4c;
  margin-bottom: 30px;
  }
  .included-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: auto;
  }
  .feature {
  background: #fafff7;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-weight: 500;
  color: #2d5c4a;
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .devis-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #0b150a;
  }
  .devis-container {
  text-align: center;
  max-width: 800px;
  }
  .devis-text h2 {
  font-size: 2.3rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
  }
  .devis-text p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
  }
  .devis-btn {
  display: inline-block;
  background-color: #32a000;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  }
  .devis-btn:hover {
  background-color: #289000;
  }
  .testimonial-partner-section {
  background-color: #f7faf5;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  }
  .container-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  }
  .testimonial-box, .partner-box {
  flex: 1;
  min-width: 300px;
  }
  .testimonial-box h2, .partner-box h2 {
  font-size: 2rem;
  color: #113c4c;
  margin-bottom: 30px;
  text-align: center;
  }
  .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  }
  .testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  }
  .testimonial-card:hover {
  transform: translateY(-5px);
  }
  .testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  }
  .testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  }
  .testimonial-author h4 {
  margin: 0;
  color: #113c4c;
  font-size: 1.1rem;
  }
  .stars {
  color: #FFD700;
  font-size: 1rem;
  margin-top: 5px;
  }
  .testimonial-card p {
  color: #555;
  font-style: italic;
  line-height: 1.6;
  }
  .partner-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  }
  .partner-logos img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  }
  @media (max-width: 768px) {
  .container-split {
  flex-direction: column;
  }
  .partner-logos {
  grid-template-columns: 1fr;
  }
  }
  .google-reviews {
  display: flex;
  flex-direction: column;
  gap: 15px;
  }
  .google-review {
  background: white;
  padding: 20px;
  border-left: 5px solid #32a000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  }
  .partner-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  }
  .partner-logos img {
  height: 50px;
  object-fit: contain;
  }
  .avis-section {
  background-color: #f7faf5;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  }
  .avis-section h2 {
  font-size: 2.3rem;
  margin-bottom: 40px;
  color: #113c4c;
  }
  .avis-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  }
  .avis-card {
  display: none;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: opacity 0.5s ease;
  }
  .avis-card.active {
  display: block;
  }
  .avis-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  }
  .avis-card h4 {
  margin-bottom: 8px;
  color: #113c4c;
  }
  .stars {
  color: #f4c150;
  font-size: 1.2rem;
  margin-bottom: 10px;
  }
  .avis-card p {
  font-size: 1rem;
  color: #444;
  }
  .avis-prev, .avis-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #113c4c;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  }
  .avis-prev {
  left: -40px;
  }
  .avis-next {
  right: -40px;
  }
  @keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
  }
  .pulse-animation:hover {
  animation: pulse 1.5s infinite;
  }
  .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
  }
  .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  }
  .sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  }
  .sticky-header.scrolled {
  padding: 10px 0;
  }
  .hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  }
  .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,77,102,0.8) 0%, rgba(62,120,79,0.8) 100%);
  }
  .scroll-indicator {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  position: static;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.1s ease;
  }
  .discover-text {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 5px;
  transition: all 0.1s ease;
  }
  .bounce-arrow {
  font-size: 1rem;
  animation: bounce 2s infinite ease-in-out;
  }

  
  .scroll-indicator:hover .discover-text {
  letter-spacing: 3px;
  color: #b7ff8a;
  }
  .arrow-down {
  width: 24px;
  height: 24px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
  margin-top: 0;
  }
  .process-section {
  padding: 60px 20px 100px;
  background: linear-gradient(to bottom, #ffffff 0%, #f9fdf7 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  }
  .process-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #32a000, #3e784f);
  }
  .section-title {
  font-size: 2.8rem;
  color: #113c4c;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  }
  .section-title span {
  color: #32a000;
  }
  .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #32a000;
  border-radius: 2px;
  }
  .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  }
  .process-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, #32a000, #3e784f);
  z-index: 1;
  }
  .step {
  position: relative;
  background: white;
  padding: 50px 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 77, 102, 0.08);
  transition: all 0.4s ease;
  z-index: 2;
  text-align: center;
  }
  .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 77, 102, 0.15);
  }
  .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #32a000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  border: 4px solid #f9fdf7;
  }
  .step i {
  font-size: 2.5rem;
  color: #32a000;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  }
  .step:hover i {
  transform: scale(1.1);
  }
  .step h3 {
  font-size: 1.5rem;
  color: #113c4c;
  margin-bottom: 15px;
  font-weight: 600;
  }
  .step p {
  color: #555;
  line-height: 1.6;
  font-size: 1.1rem;
  }
  @media (max-width: 768px) {
  .process-steps {
  grid-template-columns: 1fr;
  gap: 60px;
  }
  .process-steps::before {
  display: none;
  }
  .section-title {
  font-size: 2.2rem;
  }
  }  .cta-banner {
  background: linear-gradient(135deg, #004d66 0%, #3e784f 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  }

  .cta-banner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.3;
  }

  .cta-banner p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  }

  @media (max-width: 768px) {
  .cta-banner h3 {
    font-size: 1.8rem;
  }
  .cta-banner p {
    font-size: 1.1rem;
  }
  }
  .btn-cta {
  display: inline-block;
  background: white;
  color: #004d66;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  }
  .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  }  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    background-color: #197500;
    width: 100%;
    margin: 0;
    /* S'assurer qu'il n'y a pas d'espace en dessous */
    position: relative;
    bottom: 0;
}

.footer-bottom-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    padding: 0 20px; /* Ajout de padding horizontal pour mobile */
}

.copyright, .legal-links {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline;
    padding: 0 2px;
    position: relative;
}

.legal-links a:hover {
    color: #b7ff8a;
}

.legal-links .separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 10px 0;
    }
    .footer-bottom-content {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    .copyright, .legal-links {
        font-size: 12px;
    }
    .legal-links .separator {
        margin: 0 8px;
    }
}
  .urgent-btn {
  display: inline-block;
  background-color: #cc0000;
  background: #cc0000;
  color: #ffffff !important;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 58, 58, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  margin: 10px 0;
  animation: pulse-red 3s infinite;
  }
  .urgent-btn:hover {
  background: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 58, 58, 0.4);
  }
  @keyframes pulse-red {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
  }
  a.urgent-btn {
  text-decoration: none !important;
  outline: none !important;
  }
  .animate-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
  }
  .hero-content .hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin: 1rem 0 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  }
  .hero-subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #b7ff8a;
  margin: 1rem auto 0;
  opacity: 0.7;
  }  .scroll-indicator {
  margin: 120px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 45px;
  border-radius: 50px;
  transition: all 0.3s ease;
  max-width: fit-content;
  }
  .scroll-indicator-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  }
  @media (max-width: 768px) {
  .scroll-indicator {
  padding: 8px 20px;
  }
  .discover-text {
  font-size: 0.7rem;
  }
  .arrow-wrapper {
  width: 24px;
  height: 24px;
  }
  }
  .discover-text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: bold;
  }
  .arrow-wrapper {
  width: 18px;
  height: 18px;
  }
  .bounce-arrow {
  font-size: 0.9rem;
  }
  @keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(1px);}
  60% {transform: translateY(2px);}
  }
  .scroll-indicator:hover {
  transform: translateY(5px);
  }
  a[href], button, .btn, .btn-discover, .urgent-btn {
  min-width: 48px;
  min-height: 48px;
  padding: 12px 24px;
  }
  .hero-buttons a,
  .tarifs-contact-container a {
  margin: 8px;
  }
  .btn-discover, .urgent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  }
  .site-footer a {
  padding: 8px 0;
  display: inline-block;
  }
  .testimonial-author h3 {
  font-size: 1.1rem;
  margin: 0;
  }
  a:focus, button:focus {
  outline: 2px solid #1e7a00;
  outline-offset: 3px;
  }
  a {
  color: #1a6a00;
  text-decoration: underline;
  }
  .footer-col ul li {
  margin-bottom: 12px;
  }
  .site-footer {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  }
  .site-footer p,
  .site-footer li,
  .site-footer span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  }
  .site-footer a {
  text-decoration: none;
  transition: all 0.2s ease;
  }
  .site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  }
  .footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  }
  .footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  }
  .footer-copy {
  font-size: 14px;
  opacity: 0.9;
  }
  .footer-links a {
  font-size: 14px;
  padding: 4px 0;
  display: inline-block;
  }
  .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  }
  .footer-col {
  flex: 1;
  padding: 0 15px;
  }
  .footer-brand {
  max-width: 300px;
  }
  .footer-links ul,
  .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  .footer-links li,
  .footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  }
  .footer-links i,
  .footer-contact i {
  width: 20px;
  color: #32a000;
  margin-right: 10px;
  text-align: center;
  }
  .footer-links a,
  .footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  }
  .footer-links a:hover,
  .footer-contact a:hover {
  color: #32a000;
  }
  @media (max-width: 768px) {
  .footer-container {
  flex-direction: column;
  }
  .footer-col {
  margin-bottom: 30px;
  padding: 0;
  }
  }
  .fa-home { top: 0; }
  .fa-euro-sign { top: 1px; font-size: 15px; }
  .fa-phone-alt { top: -1px; }
  .fa-envelope { top: 1px; }
  .fa-map-marker-alt { top: -1px; }
  .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-align: center;
  position: relative;
  }
  .btn-cta::after {
  content: '';
  display: inline-block;
  width: 0;
  }
  .cta-banner .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  line-height: 1.3;
  }
  .footer-links .footer-link,
  .footer-contact .footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-top: 2px;
  }
  .fa-arrow-right {
  margin-left: 8px;
  font-size: 0.9em;
  }
  @media (max-width: 768px) {
  .container {
  padding: 0 15px;
  flex-wrap: wrap;
  }
  .logo-text {
  font-size: 22px;
  }
  .nav {
  order: 3;
  width: 100%;
  margin-top: 10px;
  justify-content: center;
  }
  .nav a {
  margin: 0 8px;
  font-size: 14px;
  }
  .contact span {
  font-size: 13px;
  }
  .hero {
  height: auto;
  min-height: 500px;
  padding: 80px 15px;
  }
  .hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  }
  .hero-subtitle {
  font-size: 1.1rem;
  margin: 0.8rem 0 1.5rem;
  }
  .hero-buttons {
  gap: 10px;
  }
  .hero-buttons .btn {
  padding: 10px 15px;
  font-size: 15px;
  }  .scroll-indicator {
  margin-top: 70px;
  padding: 8px 15px;
  }
  .discover-text {
  font-size: 0.7rem;
  }
  .section-info {
  margin: 40px 0;
  flex-direction: column;
  }
  .info-content {
  padding: 30px 20px;
  }
  .info-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  }
  .info-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  }
  .benefits-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  }
  .tarifs-contact-container {
  flex-direction: column;
  gap: 15px;
  }  .process-section {
  padding: 40px 15px 60px;
  }
  .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  }
  .step {
  padding: 40px 20px 30px;
  margin-bottom: 40px;
  }
  .step h3 {
  font-size: 1.3rem;
  }
  .step p {
  font-size: 1rem;
  }
  .testimonial-partner-section {
  padding: 60px 15px;
  }
  .testimonial-box h2,
  .partner-box h2 {
  font-size: 1.8rem;
  }
  .partner-logos {
  grid-template-columns: 1fr;
  gap: 20px;
  }
  .cta-banner {
  padding: 40px 15px;
  }
  .cta-content h3 {
  font-size: 1.5rem;
  }
  .btn-cta {
  padding: 12px 25px;
  }
  .footer-container {
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 20px;
  }
  .footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  }
  }
  @media (max-width: 480px) {
  .hero h1 {
  font-size: 1.8rem;
  }
  .hero-buttons {
  flex-direction: column;
  width: 100%;
  }
  .hero-buttons .btn {
  width: 100%;
  justify-content: center;
  }
  .process-steps {
  gap: 50px;
  }
  }
  @media (max-width: 768px) {
  body {
  font-size: 15px;
  line-height: 1.5;
  }
  h1, h2, h3 {
  line-height: 1.3;
  }
  }
  @media (max-width: 768px) {
  .btn, .btn-discover, .urgent-btn, .btn-cta {
  min-height: 44px;
  padding: 10px 20px;
  }
  }
  @media (max-width: 768px) {
  .hero {
  background-position: center center;
  }
  .info-image {
  min-height: 250px;
  background-size: cover;
  }
  }
  @media (max-width: 768px) {
  header {
  padding: 10px 0;
  }
  .logo-container {
  flex: 1;
  }  .contact {
  margin-left: auto;
  padding-right: 20px;
  }
  .sticky-header.scrolled {
  padding: 5px 0;
  }
  }
  @media (max-width: 768px) {
  .animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  }
  .hero-content .animate__animated {
  animation-delay: 0.1s !important;
  }
  }
  @media (max-width: 600px) {
  .nav {
  display: none;
  flex-direction: column;
  width: 100%;
  background: rgba(255,255,255,0.95);
  position: absolute;
  top: 60px;
  left: 0;
  padding: 15px 0;
  }
  .nav.active {
  display: flex;
  }
  .nav a {
  padding: 10px 15px;
  text-align: center;
  }
  .menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  margin-left: 15px;
  }
  }

  @media (max-width: 768px) {
    /* Hero Section */
    .hero {
      min-height: 600px;
      height: auto;
      padding: 80px 20px 40px;
      background-position: center top;
    }
    .hero h1 {
      font-size: 2.2rem;
    }
    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
    .hero-buttons a {
      width: 100%;
    }
    
    /* Header */
    .sticky-header .container {
      flex-direction: column;
      gap: 10px;
      padding: 10px 20px;
    }
    
    /* Section Info */
    .section-info {
      flex-direction: column;
    }
    .info-image {
      min-height: 250px;
    }
    .info-content {
      padding: 30px 20px;
    }
    .info-content h2 {
      font-size: 2rem;
    }
    
    /* Process Section */
    .process-steps {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .process-section {
      padding: 60px 20px;
    }
  
    /* Témoignages et Partenaires */
    .container-split {
      flex-direction: column;
      gap: 30px;
    }
    .testimonial-box, .partner-box {
      width: 100%;
    }
  
    /* CTA Banner */
    .cta-banner {
      padding: 50px 20px;
    }
  
    /* Footer */
    .site-footer .footer-container {
      flex-direction: column;
      gap: 30px;
    }
  }
  /* --- Menu Burger --- */
/* --- Menu Burger Header Mobile --- */
/* ===== Menu Burger Mobile ===== */
.burger-menu {
  display: none;
  font-size: 2rem;
  color: #113c4c;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px; /* Ajuste si ton header est plus haut */
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 200px;
    transition: all 0.3s ease;
  }

  .nav.show {
    display: flex;
  }

  .burger-menu {
    display: block;
    margin-left: auto;
  }

  .contact {
    display: none;
  }
}


@media (max-width: 768px) {
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .burger-menu {
    display: block;
    font-size: 2rem;
    margin: 0;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 200px;
  }

  .nav.show {
    display: flex;
  }

  .contact {
    display: none;
  }
}
@media (max-width: 768px) {
  .sticky-header {
    padding: 8px 0; /* Réduction padding uniquement mobile */
  }
  
  .logo-img {
    height: 40px; /* Taille du logo réduite */
  }
  
  .logo-text {
    font-size: 27px; /* Texte réduit */
  }

  .logo-text-footer {
    font-size: 45px;
  }
  
  .container {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-burger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 0 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav.show {
    max-height: 300px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px; /* Ajustez cette valeur selon la hauteur réelle de votre header */
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width:90%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-buttons a {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav {
    right: 20px;
    left: auto; /* S'assure qu'il est bien à droite */
    width: 200px;
  }
}

@media (max-width: 768px) {
  .logo-burger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .burger-menu {
    order: 2;
    margin-left: 15px;
  }
  
  .logo-link {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tarifs-contact-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .tarifs-contact-container a {
    flex: 1 1 auto;
    width: auto;
    padding: 10px 8px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .section-info {
    margin-bottom: 0px;
  }
}

@media (max-width: 600px) {
  .partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
  }

  .partner-logos a:nth-child(3) {
    grid-column: 1 / span 2; /* LC Touch prend toute la largeur */
    justify-self: center;
  }

  .partner-logos img {
    max-width: 140px;
    height: auto;
  }

  .partner-text {
    text-align: center;
    margin-top: 20px;
    padding: 0 10px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf7 100%);
  font-family: 'Poppins', sans-serif;
}

.faq-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.centered-title {
  font-size: 2.7rem;
  color: #113c4c;
  margin-bottom: 15px;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.highlight-faq {
  color: #32a000;
}

/* Un seul soulignement vert */
.faq-title-wrapper .title-underline {
  display: block;
  width: 80px;
  height: 3px;
  background: #32a000;
  margin: 15px auto 0;
  border-radius: 2px;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(50, 160, 0, 0.15);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: #113c4c;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3 i {
  color: #32a000;
  font-size: 1.2rem;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.faq-item:hover h3 {
  color: #32a000;
}

.faq-item:hover h3 i {
  transform: scale(1.1);
}

.faq-item p {
  color: #333333; /* Darker text for better contrast */
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

/* Styles pour les liens dans la FAQ */
.faq-answer {
    color: #333333;
    line-height: 1.8;
}

.faq-answer a {
    color: #1e5c00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0; /* Supprime le padding */
    display: inline; /* Assure que le lien se comporte comme du texte inline */
}

.faq-answer a:hover {
    color: #174700;
    text-decoration: underline;
}

/* Styles spécifiques pour le footer logo */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-wrapper .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-wrapper .logo-img {
    height: 50px;
    width: auto;
}

.logo-text-footer {
    font-size: 32px;
    color: #005c00;
    font-weight: 600;
    font-family: 'Cocon Regular', 'Poppins', sans-serif;
    letter-spacing: 0.25px;
    margin: 0;
    padding: 0;
    display: inline-block;
    line-height: 1.2;
    white-space: nowrap;
}

.scroll-indicator {
    text-align: center;
    margin-top: 60px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px); /* Réduit encore plus la hauteur */
    }
    60% {
        transform: translateY(-4px); /* Rebond plus subtil */
    }
}

.bounce-arrow {
    animation: bounce-arrow 2.5s ease-in-out infinite;
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.arrow-wrapper {
    margin-top: 8px;
}

.discover-text {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Variables CSS pour les tailles de police */
:root {
    --h1-size: 2.5rem;
}

/* Styles génériques H1 avec spécificité maximale */
h1, 
section h1, 
article h1, 
aside h1, 
nav h1,
.hero-content h1,
.section-content h1 {
    font-size: var(--h1-size) !important; /* Force la taille */
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Hero section H1 */
.hero-content h1 {
    font-size: 3.5rem !important;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

/* Ajustement des animations */
.animate__animated {
    --animate-duration: 0.2s !important;
    --animate-delay: 0s !important;
}

.animate__delay-1 {
    --animate-delay: 0.1s !important;
}

.animate__delay-2 {
    --animate-delay: 0.2s !important;
}

.animate__delay-3 {
    --animate-delay: 0.3s !important;
}

/* Animation de page */
.page-transition {
    animation: fadeIn 0.2s ease-in-out;
}

/* Transition de page */
body.page-transitioning {
    transition: opacity 0.2s ease-in-out;
}

/* Animation au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.page-loaded #page-loader {
  opacity: 0;
  pointer-events: none;
}

/* Cache le contenu initial jusqu'au chargement complet */
body {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

body.page-loaded {
  opacity: 1;
}

/* Styles pour les pages légales */
.legal-content {
    font-family: 'Poppins', sans-serif;
    padding: 160px 0 80px;
    min-height: calc(100vh - 400px);
    background: linear-gradient(135deg, #f9fdf7 0%, #e2f5d6 100%);
}

.legal-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 60px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(17, 60, 76, 0.1);
    display: block;
    flex-direction: column;
}

.legal-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #113c4c;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
}

.legal-content h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #32a000, #4fb300);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(50, 160, 0, 0.3);
}

.legal-content .last-update {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #666;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 60px;
    font-style: italic;
    font-size: 0.85rem;
    font-weight: 400;
    background: rgba(17, 60, 76, 0.05);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.legal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    color: #113c4c;
    margin: 50px 0 30px;
    padding: 20px 0 15px;
    border-bottom: 3px solid rgba(50, 160, 0, 0.2);
    font-weight: 600;
    position: relative;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #32a000;
    border-radius: 2px;
}

.legal-content p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: justify;
}

.legal-content ul {
    font-family: 'Poppins', sans-serif;
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.legal-content li {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 20px;
    font-size: 1.1rem;
    font-weight: 400;
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -1px;
    color: #32a000;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: 55px;
    padding: 25px;
    background: rgba(249, 253, 247, 0.5);
    border-radius: 15px;
    border-left: 4px solid #32a000;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    clear: both;
}

.legal-content section:hover {
    background: rgba(249, 253, 247, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.legal-content section:last-child {
    margin-bottom: 0;
}

/* Styles spécifiques pour améliorer l'affichage vertical */
.legal-content main {
    display: block;
    width: 100%;
}

.legal-content section h2 {
    margin-top: 0;
    padding-top: 0;
}

.legal-content section:first-of-type {
    margin-top: 0;
}

.legal-content section p:last-child,
.legal-content section ul:last-child {
    margin-bottom: 0;
}

.legal-content a {
    font-family: 'Poppins', sans-serif;
    color: #32a000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
}

.legal-content a:hover {
    color: #1f8000;
    transform: translateY(-1px);
}

.legal-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #32a000, #4fb300);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.legal-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 140px 15px 40px;
    }
    
    .legal-content .container {
        padding: 30px 25px;
        border-radius: 15px;
        max-width: 95%;
        display: block;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .legal-content section {
        padding: 20px 15px;
        margin: 15px 0;
        display: block;
        width: 100%;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 20px;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 1rem;
    }
    
    .legal-content li {
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 8px 12px;
        margin: 15px 0 25px 0;
    }
    
    .breadcrumb ol {
        gap: 4px;
    }
    
    .breadcrumb li {
        font-size: 0.85rem;
    }
      .breadcrumb li + li:before {
        margin: 0 8px 0 6px;
        font-size: 12px;
    }
}

/* ==============================================
   AMÉLIORATION PAGE PEB - LISIBILITÉ ET ZOOM IMAGE
   ============================================== */

/* Layout pour le contenu avec image */
.content-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin: 30px 0;
}

.text-content {
    flex: 2;
    min-width: 300px;
}

.image-content {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

/* Container pour l'image thumbnail */
.image-thumbnail-container {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    padding: 10px;
}

.image-thumbnail-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image en version réduite */
.section-image-thumbnail {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.image-thumbnail-container:hover .section-image-thumbnail {
    transform: scale(1.02);
}

/* Indicateur de zoom */
.zoom-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-thumbnail-container:hover .zoom-indicator {
    opacity: 1;
}

/* Modal pour affichage grand format - Version plein écran optimisée */
.image-modal {
    display: none;
    position: fixed;
    z-index: 999999; /* Z-index très élevé pour éviter les conflits */
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0,0,0,0.95) !important;
    animation: fadeIn 0.3s ease;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.image-modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-image {
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
    cursor: zoom-out;
    display: block !important;
    margin: 0 auto !important;
    position: static !important; /* Pas de position relative qui pourrait décaler */
}

.close-modal {
    position: fixed !important;
    top: 20px !important;
    right: 30px !important;
    color: #ffffff !important;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999999 !important; /* Même z-index que le modal */
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1;
}

.close-modal:hover {
    color: #32a000;
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.modal-caption {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1; 
        backdrop-filter: blur(5px);
    }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeOut {
    from { 
        opacity: 1; 
        backdrop-filter: blur(5px);
    }
    to { 
        opacity: 0; 
        backdrop-filter: blur(0px);
    }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .modal-image {
        max-width: 98vw;
        max-height: 85vh;
        border-radius: 5px;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 50px;
        height: 50px;
    }
    
    .modal-caption {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 90vw;
        text-align: center;
    }
}

/* Force le centrage absolu du modal */
#imageModal {
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

#imageModal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#modalImage {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
}

/* ==============================================
   BOÎTES D'INFORMATION AMÉLIORÉES
   ============================================== */

/* Boîte d'introduction PEB */
.intro-box-peb {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border: 2px solid #32a000;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(50, 160, 0, 0.1);
}

.intro-box-peb::before {
    content: "🏠";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(50, 160, 0, 0.2);
}

.intro-box-peb h3 {
    color: #113c4c;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Boîte légale */
.intro-box-legal {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #1976d2;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.1);
}

.intro-box-legal::before {
    content: "⚖️";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
}

.intro-box-legal h3 {
    color: #1976d2;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Boîte d'information importante */
.info-box-important {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    border: 2px solid #ff9800;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.1);
}

.info-box-important::before {
    content: "💡";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.info-box-important h4 {
    color: #ef6c00;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Boîte d'alerte importante */
.highlight-box-important {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border: 2px solid #d32f2f;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.1);
    animation: pulse-attention 3s infinite;
}

.highlight-box-important::before {
    content: "🚨";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.highlight-box-important h4 {
    color: #c62828;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes pulse-attention {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.1);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.2);
    }
}

/* Boîte expert */
.expert-box {
    background: linear-gradient(135deg, #e0f2f1 0%, #e8f5e8 100%);
    border: 2px solid #00695c;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 105, 92, 0.1);
}

.expert-box::before {
    content: "🤝";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 105, 92, 0.2);
}

.expert-box h4 {
    color: #00695c;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive pour les boîtes */
@media (max-width: 768px) {
    .content-with-image {
        flex-direction: column;
        gap: 25px;
    }
    
    .text-content, .image-content {
        flex: 1;
        min-width: 100%;
    }
    
    .section-image-thumbnail {
        max-width: 250px;
    }
    
    .intro-box-peb,
    .intro-box-legal,
    .info-box-important,
    .highlight-box-important,
    .expert-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .close-modal {
        font-size: 30px;
        right: 20px;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .section-image-thumbnail {
        max-width: 200px;
    }
    
    .zoom-indicator {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Boîte pour les biens immobiliers */
.info-box-biens {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%);
    border: 2px solid #7b1fa2;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.1);
}

.info-box-biens::before {
    content: "🏘️";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.2);
}

.info-box-biens h4 {
    color: #6a1b9a;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Boîte d'avertissement pour les sanctions */
.warning-box-sanctions {
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    border: 2px solid #f57c00;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.1);
}

.warning-box-sanctions::before {
    content: "⚖️";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.2);
}

.warning-box-sanctions h4 {
    color: #ef6c00;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Grille des sanctions */
.penalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.penalty-item {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 2px solid #757575;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(117, 117, 117, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.penalty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(117, 117, 117, 0.15);
}

.penalty-item h4 {
    color: #424242;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Grille de formation */
.formation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.formation-item {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

.formation-item h4 {
    color: #1976d2;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Boîte expertise AL Energy */
.expertise-al-energy {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.1);
}

.expertise-al-energy::before {
    content: "🏆";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.expertise-al-energy h4 {
    color: #388e3c;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Grille d'expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.expertise-point {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-weight: 500;
    color: #2e7d32;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
    transition: transform 0.3s ease;
}

.expertise-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
}

/* Tableau des classes énergétiques */
.energy-classes-table {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.energy-classes-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.energy-classes-table th,
.energy-classes-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.energy-classes-table th {
    background: linear-gradient(135deg, #424242 0%, #616161 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.energy-classes-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    transform: scale(1.005);
    transition: all 0.3s ease;
}

.energy-classes-table tbody tr.class-a-plus:hover,
.energy-classes-table tbody tr.class-a:hover {
    background: rgba(46, 125, 50, 0.1) !important;
    color: #1b5e20 !important;
}

.energy-classes-table tbody tr.class-b:hover {
    background: rgba(104, 159, 56, 0.1) !important;
    color: #33691e !important;
}

.energy-classes-table tbody tr.class-c:hover {
    background: rgba(175, 180, 43, 0.1) !important;
    color: #827717 !important;
}

.energy-classes-table tbody tr.class-d:hover {
    background: rgba(255, 160, 0, 0.1) !important;
    color: #e65100 !important;
}

.energy-classes-table tbody tr.class-e:hover {
    background: rgba(255, 111, 0, 0.1) !important;
    color: #bf360c !important;
}

.energy-classes-table tbody tr.class-f:hover,
.energy-classes-table tbody tr.class-g:hover {
    background: rgba(229, 81, 0, 0.1) !important;
    color: #bf360c !important;
}

/* CSS pour les boutons CTA */
.cta-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border: 2px solid #4caf50;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.cta-section h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    color: #424242;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.cta-benefits li {
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.primary-cta {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border-color: #4caf50;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3);
    color: white;
}

.urgent-btn {
    background: linear-gradient(135deg, #ff5722 0%, #f44336 100%);
    color: white;
    border-color: #ff5722;
    animation: pulse-cta 2s infinite;
}

.urgent-btn:hover {
    background: linear-gradient(135deg, #d84315 0%, #c62828 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.3);
    color: white;
    animation: none;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
    }
}

/* Grille des classes énergétiques améliorée */
.energy-classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.energy-class-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.energy-class-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.energy-class-item.excellent::before {
    background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.energy-class-item.good::before {
    background: linear-gradient(90deg, #689f38, #8bc34a);
}

.energy-class-item.average::before {
    background: linear-gradient(90deg, #ffa000, #ff9800);
}

.energy-class-item.poor::before {
    background: linear-gradient(90deg, #f44336, #e53935);
}

.energy-class-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.energy-class-item.excellent:hover {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.energy-class-item.good:hover {
    border-color: #8bc34a;
    background: linear-gradient(135deg, #f1f8e9 0%, #f9fbe7 100%);
}

.energy-class-item.average:hover {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
}

.energy-class-item.poor:hover {
    border-color: #f44336;
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
}

.class-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.class-desc {
    display: block;
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

/* Amélioration du hover pour le tableau des classes énergétiques */
.energy-classes-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    transform: scale(1.005);
    transition: all 0.3s ease;
}

.energy-classes-table tbody tr.class-a-plus:hover,
.energy-classes-table tbody tr.class-a:hover {
    background: rgba(46, 125, 50, 0.1) !important;
    color: #1b5e20 !important;
}

.energy-classes-table tbody tr.class-b:hover {
    background: rgba(104, 159, 56, 0.1) !important;
    color: #33691e !important;
}

.energy-classes-table tbody tr.class-c:hover {
    background: rgba(175, 180, 43, 0.1) !important;
    color: #827717 !important;
}

.energy-classes-table tbody tr.class-d:hover {
    background: rgba(255, 160, 0, 0.1) !important;
    color: #e65100 !important;
}

.energy-classes-table tbody tr.class-e:hover {
    background: rgba(255, 111, 0, 0.1) !important;
    color: #bf360c !important;
}

.energy-classes-table tbody tr.class-f:hover,
.energy-classes-table tbody tr.class-g:hover {
    background: rgba(229, 81, 0, 0.1) !important;
    color: #bf360c !important;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-modal:hover {
    color: #ff5722;
    transform: scale(1.1);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive pour les nouveaux éléments */
@media (max-width: 768px) {
    .cta-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta {
        min-width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .energy-classes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .energy-class-item {
        padding: 20px;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .close-modal {
        font-size: 30px;
        right: 20px;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .cta-section h3 {
        font-size: 1.3rem;
    }
    
    .class-label {
        font-size: 1.2rem;
    }
    
    .class-desc {
        font-size: 0.9rem;
    }
}

/* Section image - amélioration du layout */
.image-content {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.image-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Système Lightbox CSS pur pour l'image certificat PEB */
.image-lightbox-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 10px;
}

.image-lightbox-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.lightbox-checkbox {
    display: none;
}

.lightbox-trigger {
    position: relative;
    display: block;
    cursor: pointer;
}

.section-image-thumbnail {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lightbox-trigger:hover .section-image-thumbnail {
    transform: scale(1.02);
}

.zoom-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(50, 160, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-trigger:hover .zoom-indicator {
    opacity: 1;
}

/* Lightbox overlay - caché par défaut */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Affichage de la lightbox quand la checkbox est cochée */
.lightbox-checkbox:checked ~ .lightbox-overlay {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    padding: 20px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: block;
    margin: 0 auto;
}

.lightbox-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close-btn:hover {
    background: #32a000;
    color: white;
    transform: scale(1.1);
}

/* Animation d'entrée pour l'image */
.lightbox-checkbox:checked ~ .lightbox-overlay .lightbox-image {
    animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   LIGHTBOX MODAL - SIMPLE ET EFFICACE
======================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px;
    max-height: 80%;
    object-fit: contain;
    cursor: default;
    animation: zoom 0.3s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 30px;
    font-size: 16px;
}

/* Animation d'ouverture */
@keyframes zoom {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Image cliquable */
.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 300px;  /* Taille de base réduite */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.zoom-indicator {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-container:hover .zoom-indicator {
    opacity: 1;
}

.image-container {
    position: relative;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        padding-top: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        width: 90%;
    }
}

.content-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin: 30px 0;
}

.text-content {
    flex: 2;
    min-width: 300px;
}

.image-content {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.image-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .content-with-image {
        flex-direction: column;
    }
    
    .clickable-image {
        max-width: 100%;
        width: 280px;
    }
    
    .image-content {
        padding: 10px;
        margin-top: 20px;
    }
}