
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}





.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 80px 20px;
  font-family: system-ui, sans-serif;
}

.hero-container {
  max-width: 100%;
  margin: 0px 150px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}
.zone-container {
    max-width: 100%;
  margin: 0px 150px;
}
.hero-container > *:not(.hero-left):not(.hero-form) {
  display: none;
}
/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/wp-content/uploads/2026/04/hero-structure-C0Zces8T.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
/* Labels en noir */
.wpcf7 form label {
  color: #07121e;
}

.wpcf7 form p:has(.wpcf7-validates-as-required) label::after {
  content: " *";
  color: #2b9f4a;
  font-weight: 700;
}
/* LEFT */
.hero-left {
  position: relative;
  z-index: 1;
}

/* BADGE */
 .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 12px;
  font-weight: 600;
}

.badge-hero .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

/* TITLE */
.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 20px;
  color: #003313;
}

.hero h1 span {
  color: #2b9f4a;
}

/* TEXT */
.hero p {
  margin-top: 20px;
  font-size: 16px;
  color: #475569;
  max-width: 550px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  border: 1px solid #e5e7eb;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

/* ICON */
.feature-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: #22c55e;
  flex-shrink: 0;
}
.stats-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.stat {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.hero .number {
  font-size: 28px;
  font-weight: 900;
  color: #0a562b; 
  line-height: 1;
}

.label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-top: 4px;
}

.divider {
  width: 1px;
  height: 32px;
  background: #e5e5e5;
}

/* Responsive */
@media (max-width: 640px) {
  .divider {
    display: none;
  }

  .stats-section {
    gap: 10px;
  }
}
/* FORM */
.hero-form {
  position: relative;
  z-index: 1;
}

.form-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* FORM HEADER */
.form-top {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.offer {
  background: linear-gradient(
    135deg,
    oklch(34% 0.09 152) 0%,
    oklch(55% 0.15 148) 100%
  );
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 999px;
  font-weight: bold;
}

.delay {
  font-size: 12px;
  color: #64748b;
}

/* FORM TEXT */
.form-box h3 {
  font-size: 20px;
  font-weight: 700;
}

.form-box div {
  font-size: 14px;
  color: #64748b;
}

/* CF7 STYLE */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  margin-top: 5px;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #22c55e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

/* GRID */
.cf7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Tous les champs prennent toute la largeur */
.cf7-grid > div {
    grid-column: span 2;
}

/* SAUF prénom et nom → 50% / 50% */
.cf7-grid > div:nth-child(4),
.cf7-grid > div:nth-child(5) {
    grid-column: span 1;
}

/* BUTTON */
.cf7-submit-wrap input {
  width: 100%;
  background: linear-gradient(
    135deg,
    oklch(34% 0.09 152) 0%,
    oklch(55% 0.15 148) 100%
  );
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
  cursor: pointer;
}


.cf7-submit-wrap input:hover {
  opacity: 0.9;
}
.wpcf7-submit.cf7-loading {
    opacity: 0.7;
    cursor: not-allowed;
}
/* FOOTER */
.form-footer {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
  color: #64748b;
}
@media (max-width: 768px) {
    .cf7-grid {
        grid-template-columns: 1fr;
    }

    .cf7-grid > div {
        grid-column: span 1 !important;
    }
}

/* RESPONSIVE */
@media(max-width: 900px){
  .container{
    grid-template-columns: 1fr;
  }

  .hero h1{
    font-size: 34px;
  }

  .stats{
    flex-wrap: wrap;
  }
}
.esi-header{
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}

.esi-header-inner{
  max-width: 100%;
  padding: 0px 75px;
  height:64px;
  display:flex;
  align-items:center;
}

.esi-logo{
  display:flex;
  align-items:center;
  height: calc(0.25rem * 10);
  gap:10px;
}

.esi-logo img{
  height:40px;
  width:auto;
  display:block;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
}

main#wp--skip-link--target {
  margin-top: 0 !important;
}


.wp-block-group.alignfull {
  padding-top: 0 !important;
}

.entry-content {
  margin-top: 0 !important;
}
.has-global-padding {
    padding: 0 !important;
}


/* Service Area Section LP */
.zone-intervention {
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.zone-intervention .icon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.zone-intervention .icon-map {
  width: 24px;
  height: 24px;
  stroke: #34d399; /* vert */
}
.icon-map-pin {
  width: 14px;      
  height: 14px;       
  color: #2b9f4a;
}
.zone-intervention h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.wpcf7-form p {
  margin: 0;
}
.zone-intervention .subtext {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.zone-intervention .communes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.zone-intervention .commune {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #111827;
  background-color: #ffffff;
  transition: background-color 0.2s;
}

.zone-intervention .commune .icon-pin {
  width: 16px;
  height: 16px;
  stroke: #34d399;
}

.zone-intervention .commune.plus {
  background-color: #dcfce7;
  border-color: #bbf7d0;
  color: #30b55d ;
  font-weight: 600;
}

 .contact p {
  color: #6b7280;
  font-size: 0.875rem;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
/* Responsive */
@media (max-width: 640px) {
  .zone-intervention h2 {
    font-size: 1.5rem;
  }
}
.hero-container > p:empty {
  display: none;
}
/* Service Area Section LP */
.zone-intervention {
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.zone-intervention .icon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.zone-intervention .icon-map {
  width: 24px;
  height: 24px;
  stroke: #34d399; /* vert */
}

.zone-intervention h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.zone-intervention .subtext {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.zone-intervention .communes-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.zone-intervention .commune {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #111827;
  background-color: #ffffff;
  transition: background-color 0.2s;
}

.zone-intervention .commune .icon-pin {
  width: 16px;
  height: 16px;
  stroke: #34d399;
}

.zone-intervention .commune.plus {
  background-color: #dcfce7;
  border-color: #bbf7d0;
  color: #30b55d ;
  font-weight: 600;
}

.zone-intervention .contact p {
  color: #6b7280;
  font-size: 0.875rem;
}
.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.cta-button {
  display: inline-flex;
  align-items: center;       /* centre vertical */
  justify-content: center;   /* centre horizontal */
  gap: 12px;

  padding: 16px 32px;        /* un peu plus équilibré */
  border-radius: 999px;

  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: white;
  text-decoration: none;
  text-align: center;        /* important pour le texte */

  background: linear-gradient(135deg, #00441f 0%, #18883a 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  transition: opacity 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.cta-button span {
  transform: translateX(-4px);
}
.cta-icon {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 640px) {
  .zone-intervention h2 {
    font-size: 1.5rem;
  }
}
/* Container principal */
        .risques-section {
            padding: 4rem 1.5rem;
        }

        /* En-tête centré */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }

.badge {
            display: inline-block;
            background: #0a562b1a;
            color: #0a562b;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

       .risques-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #0a1c2f;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.05rem;
            color: #4a5568;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Conteneur Flexbox pour les cartes */
        .cards-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Carte individuelle */
        .risk-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 14px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            flex: 1;
            min-width: 240px;
            max-width: 280px;
        }

        .risk-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e1;
        }
        .client-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 20px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            flex: 1;
            min-width: 240px;
            max-width: 280px;
            text-align: center;
        }

        .client-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e1;
        }

        /* Icône */
        .icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: #2b9f4a26;
            border-radius: 12px;
            margin-bottom: 1.25rem;
        }
              .icon-wrapper-approche {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            margin-bottom: 1.25rem;
        }
        .icon-wrapper svg {
            width: 22px;
            height: 22px;
            color: #2b9f4a;
            stroke-width: 1.8;
        }

        h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #0a1c2f;
            margin-bottom: 0.5rem;
        }

        .card-text {
            font-size: 0.9rem;
            color: #4b5563;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .risk-card {
                min-width: 100%;
                max-width: 100%;
            }
        }

        @media (min-width: 641px) and (max-width: 900px) {
            .risk-card {
                min-width: calc(50% - 1.5rem);
                max-width: calc(50% - 1.5rem);
            }
        }
        
        
        
        /* Section */
.expertises {
  padding: 80px 20px;
background: #ecf3f8;
    
}



/* Header */
.expertises .header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}


.expertises .header h2 {
  font-size: 36px;
  margin: 10px 0;
}

.expertises .header p {
  color: #666;
  font-size: 16px;
}

/* Grid */
.expertises .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

/* Card */
.expertises .card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.expertises .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.expertises .card h3 {
  font-size: 18px;
  margin: 15px;
}

.expertises .card p {
  font-size: 14px;
  color: #666;
  margin: 0 15px;
}

/* Hover effect */
.expertises .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {

  .expertises .grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .expertises .card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* cacher scrollbar (optionnel) */
  .expertises .grid::-webkit-scrollbar {
    display: none;
  }

  .expertises .grid {
    scrollbar-width: none;
  }
  
   .grid-temoignages {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;

    gap: 15px;
    padding: 10px 10px 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .card-temoignage {
    flex: 0 0 85% !important;
    max-width: 85% !important;

    scroll-snap-align: start;
  }

  /* hide scrollbar */
  .grid-temoignages::-webkit-scrollbar {
    display: none;
  }

  .grid-temoignages {
    scrollbar-width: none;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .expertises .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertises .grid {
    grid-template-columns: 1fr;
  }
}

.section-activity {
  padding: 60px 20px;
  text-align: center;
}



.section-activity h2 {
  font-size: 32px;
  margin: 15px 0;
}

.section-activity .subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-activity .grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
 .section-activity  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
 .section-activity  .grid { grid-template-columns: repeat(5, 1fr); }
}

.section-activity .card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  position: relative;
  overflow: hidden; /* important to clip the circle */
  transition: 0.3s;
}

.section-activity .card:hover {
  border-color: #16a34a;
}

/* cercle décoratif (like first image) */
.section-activity .card::after {
  content: "";
  position: absolute;
  width: 90px;          /* smaller */
  height: 90px;
  background: #16a34a;
  opacity: 0.08;
  border-radius: 50%;
 top: -15px;
    right: -15px;
}

.section-activity .icon {
  font-size: 28px;
  color: #16a34a;
}

.section-activity .card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.section-activity .card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}


/* Section */
.partners-section {
  background: #ecf3f8;
  padding: 80px 20px;
}

/* Container */
.container {
   max-width: 100%;
  margin: 0px 150px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h2 {
  font-size: 36px;
  color: var(--text-dark);
  font-weight: 900;
}

.header p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 18px;
}

/* Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.partner-card {
  background: #ffffff;
  border-radius: 20px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  box-shadow: var(--shadow-soft);

  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Logo */
.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
    .container, .hero-container{
    margin: 0px 83px
    }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header h2 {
    font-size: 28px;
  }
}

   /* ---------- section principale ---------- */
    .section-projets {
      background-color: #ecf3f8;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    @media (min-width: 640px) {
      .section-projets {
        padding-top: 5rem;
        padding-bottom: 5rem;
      }
    }
    @media (min-width: 1024px) {
      .section-projets {
        padding-top: 6rem;
        padding-bottom: 6rem;
      }
    }






    @media (min-width: 640px) {
      .titre-principal {
        font-size: 2.25rem;
      }
    }

    .sous-titre {
      margin-top: 1rem;
      font-size: 1rem;
      color: #475569;
    }

    @media (min-width: 640px) {
      .sous-titre {
        font-size: 1.125rem;
      }
    }

    /* grille projets */
    .grid-projets {
      margin-top: 3rem;
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
      .grid-projets {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 1024px) {
      .grid-projets {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* carte */
    .card-projet {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid #e9edf2;
      background-color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .card-projet:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    /* zone image */
    .media-holder {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background-color: #e2e8f0;
    }

    .img-projet {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .card-projet:hover .img-projet {
      transform: scale(1.05);
    }

    /* étiquette catégorie */
    .cat-badge {
      position: absolute;
      left: 0.75rem;
      top: 0.75rem;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 0.2rem 0.65rem;
      border-radius: 9999px;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #0a562b;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      backdrop-filter: blur(2px);
      z-index: 2;
    }

    /* icône flèche au hover */
    .icon-arrow {
      position: absolute;
      right: 0.75rem;
      top: 0.75rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      background-color: #2b9f4a;
      color: white;
      border-radius: 9999px;
      opacity: 0;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 2;
    }

    .card-projet:hover .icon-arrow {
      opacity: 1;
    }

    .icon-arrow svg {
      width: 1rem;
      height: 1rem;
      stroke: white;
      stroke-width: 2;
    }

    /* contenu texte */
    .content-projet {
      flex: 1;
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
    }

    .titre-card {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.4;
      color: #0f172a;
      transition: color 0.2s;
    }

    .card-projet:hover .titre-card {
      color: #1e3a5f;
    }

    .adresse {
      margin-top: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.75rem;
      color: #475569;
    }

    .pin-icon {
      width: 0.9rem;
      height: 0.9rem;
      color: #2b9f4a;
    }

    /* bouton voir toutes réalisations */
    .btn-wrapper {
      margin-top: 2.5rem;
      display: flex;
      justify-content: center;
    }

    .btn-voir-tout {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 9999px;
      border: 2px solid #0a562b;
      background-color: transparent;
      padding: 0.7rem 1.5rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #0a562b;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .btn-voir-tout:hover {
      background-color: #0a562b;
      color: white;
    }

    .btn-voir-tout svg {
      width: 1rem;
      height: 1rem;
      stroke: currentColor;
      stroke-width: 2;
    }
    .number {
  font-size: 2.25rem; /* équivalent text-4xl */
  font-weight: 900;   /* font-black */
  color: #2b9f4a;
}


        /* section principale */
        .section-temoignages {
            background-color: #fffafc;
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        @media (min-width: 640px) {
            .section-temoignages {
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
        }
        @media (min-width: 1024px) {
            .section-temoignages {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
        }

    




   
        .sous-titre {
            margin-top: 1rem;
            font-size: 1rem;
            color: #475569;
        }

        @media (min-width: 640px) {
            .sous-titre {
                font-size: 1.125rem;
            }
        }

        /* grille des témoignages */
        .grid-temoignages {
            margin-top: 3rem;
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 640px) {
            .grid-temoignages {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .grid-temoignages {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* carte témoignage */
        .card-temoignage {
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 1rem;
            border: 1px solid #e9edf2;
            background-color: #ffffff;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
        }

        .card-temoignage:hover {
            box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        /* icône guillemet (simple, pas de var) */
        .quote-icon {
            width: 1.75rem;
            height: 1.75rem;
            color: #2b9f4a;
            opacity: 0.4;
            margin-bottom: 0.25rem;
        }

        .texte-avis {
            margin-top: 0.5rem;
            flex: 1;
            font-size: 0.875rem;
            line-height: 1.5;
            color: #0f172a;
        }

        /* stars avec caractères ★ (simple, comme demandé) */
        .stars {
            margin-top: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.2rem;
            font-size: 1rem;
            letter-spacing: 2px;
            color: #2b9f4a;
            font-weight: 500;
        }

        /* infos client */
        .client-info {
            margin-top: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-top: 1px solid #eef2f6;
            padding-top: 1rem;
        }

        .avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: #2b9f4a;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .client-nom {
            font-size: 0.875rem;
            font-weight: 700;
            color: #0f172a;
        }

        .client-fonction {
            font-size: 0.7rem;
            color: #475569;
            margin-top: 0.125rem;
            line-height: 1.3;
        }
        
        
        
        /* Container principal */
        .eng-section {
            padding: 4rem 1.5rem;
            background: #003313;
        }

  

.badge {
            display: inline-block;
            background: #0a562b1a;
            color: #0a562b;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .eng-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

      .eng-section  .section-description {
            font-size: 1.05rem;
            color: #ffffffbf;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Conteneur Flexbox pour les cartes */
        .cards-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        /* Carte individuelle */
        .eng-card {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 14px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            flex: 1;
            min-width: 240px;
            max-width: 280px;
        }

        .eng-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e1;
        }
       

        /* Icône */
       .eng-section  .icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #00441f 0%, #18883a 100%);
            border-radius: 12px;
            margin-bottom: 1.25rem;
        }
     .eng-section .badge{
         color:#2b9f4a;
        background: #2b9f4a26;
     }
      .eng-section   .icon-wrapper svg {
            width: 22px;
            height: 22px;
            color: #fff;
            stroke-width: 1.8;
        }

       .eng-section h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .eng-section  .card-text {
            font-size: 0.9rem;
            color: #ffffffb3;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .eng-card {
                min-width: 100%;
                max-width: 100%;
            }
        }

        @media (min-width: 641px) and (max-width: 900px) {
            .eng-card {
                min-width: calc(50% - 1.5rem);
                max-width: calc(50% - 1.5rem);
            }
        }
        
        
        
        /* Section */
        
        
        /* Section */
.cta-section {
  padding: 60px 20px;
}

/* Container */
.cta-container {
  max-width: 100%;
  margin: 0px 150px;
}

/* Card */
.cta-card {
  position: relative;
  border-radius: 20px;
  padding: 50px 20px;
   background: linear-gradient(
    135deg,
    oklch(34% 0.09 152) 0%,
    oklch(55% 0.15 148) 100%
  );
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Decorative circle */
.cta-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  border-radius: 50%;
}

/* Content */
.cta-section .cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color :#fff;
}

.cta-section .cta-content h2 span {
  display: block;
  color: #2b9f4a;
}

/* Text */
.cta-content p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: #ffffffcc;
  font-size: 16px;
  line-height: 1.6;
}



/* Responsive */
@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 18px;
  }
}
/* Footer */
.footer {
  position: relative;
background: linear-gradient(
    135deg,
    oklch(34% 0.09 152) 0%,
    oklch(55% 0.15 148) 100%
  );
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

/* Big background text */
.footer-bg-text {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Container */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

/* Content */
.footer-content {
  text-align: center;
}

/* Logo */
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

/* Text */
.footer-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive tweak */
@media (min-width: 768px) {
  .footer-bg-text {
    font-size: 12vw;
  }

}




/* Hero Section */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 36px;
  }




  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-item {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* Stats Section */
@media (max-width: 640px) {
  .stats-section {
    align-items: stretch;
    gap: 15px;
  }

  .stat {
    min-width: auto;
  }

  .divider {
    display: none;
  }

  .number {
    font-size: 24px;
  }
}

/* Form Section */
@media (max-width: 640px) {
  .form-box {
    padding: 20px;
  }

  .form-box h3 {
    font-size: 18px;
  }

  .cf7-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .wpcf7 input,
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 16px;
  }
}

/* Zone Intervention */
@media (max-width: 768px) {
  .zone-intervention {
    padding: 2rem 1rem;
  }

  .zone-intervention h2 {
    font-size: 1.5rem;
  }

  .communes-list {
    gap: 8px;
  }

  .commune {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Risques Section */
@media (max-width: 768px) {
  .risques-section {
    padding: 2rem 1rem;
  }

  .risques-section h2 {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }
  .risk-card,
  .client-card,
  .eng-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Expertises Section */
@media (max-width: 992px) {
  .expertises {
    padding: 50px 20px;
  }

  .expertises .header h2 {
    font-size: 28px;
  }

  .expertises .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .expertises .card img {
    height: 160px;
  }
}
.success-box {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.success-icon {
  margin: 0 auto 15px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.success-icon svg {
  width: 28px;
  height: 28px;
}

.success-box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
}

.success-box p {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
} 
@media (max-width: 640px) {
  .expertises .header h2 {
    font-size: 24px;
  }

  .expertises .header p {
    font-size: 14px;
  }

  .expertises .grid {
    grid-template-columns: 1fr;
  }

  .expertises .card {
    max-width: 100%;
  }

  .expertises .card h3 {
    font-size: 16px;
  }
}

/* Section Activity */
@media (max-width: 768px) {
  .section-activity {
    padding: 40px 20px;
  }

  .section-activity h2 {
    font-size: 24px;
  }

  .section-activity .subtitle {
    font-size: 14px;
  }

  .section-activity .grid {
    gap: 15px;
  }
}

/* Partners Section */
@media (max-width: 1024px) {
  .partners-section {
    padding: 50px 20px;
  }

  .partners-section .header h2 {
    font-size: 28px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .partner-card {
    height: 100px;
    padding: 15px;
  }
}

@media (max-width: 640px) {
  .partners-section .header h2 {
    font-size: 24px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    height: 80px;
  }
    .hero-container {
    max-width: 100%;
    margin: 30px 81px;
}
}

/* Projets Grid */
@media (max-width: 1024px) {
  .grid-projets {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .grid-projets {
    gap: 20px;
  }

  .titre-principal {
    font-size: 1.75rem;
  }

  .btn-voir-tout {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .card-projet {
    max-width: 100%;
  }

  .titre-card {
    font-size: 0.85rem;
  }

  .btn-wrapper {
    margin-top: 1.5rem;
  }
}

/* Témoignages Grid */
@media (max-width: 768px) {
  .section-temoignages {
    padding: 2rem 1rem;
  }

  .section-temoignages h2 {
    font-size: 1.5rem;
  }

  .grid-temoignages {
    gap: 1rem;
  }

  .card-temoignage {
    padding: 1rem;
  }

  .texte-avis {
    font-size: 0.8rem;
  }

  .client-nom {
    font-size: 0.8rem;
  }
}

/* Engagements Section */
@media (max-width: 768px) {
  .eng-section {
    padding: 2rem 1rem;
  }

  .eng-section h2 {
    font-size: 1.5rem;
  }
}

/* CTA Section */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 20px;
  }

  .cta-card {
    padding: 30px 15px;
  }

  .cta-section .cta-content h2 {
    font-size: 24px;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 12px;
  }

  .cta-button span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .cta-section .cta-content h2 span {
    display: inline;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer-container {
    padding: 30px 20px;
  }

  .footer-logo {
    height: 30px;
  }

  .footer-content p {
    font-size: 10px;
  }

  .footer-bg-text {
    bottom: 60px;
    font-size: 20vw;
  }
}

/* Header */
@media (max-width: 768px) {
  .esi-header-inner {
    height: 56px;
    padding: 0 35px;
  }

  .esi-logo img {
    height: 32px;
  }
}

/* Ajustements généraux */
@media (max-width: 480px) {
  .badge-hero {
    font-size: 10px;
    padding: 4px 10px;
  }

  .badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.8rem;
  }

  .icon-wrapper,
  .icon-wrapper-approche {
    width: 36px;
    height: 36px;
  }

  .icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  h3 {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.8rem;
  }
}

/* Empêcher les débordements */
img {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

.wpcf7-form,
.wpcf7-form * {
  max-width: 100%;
  box-sizing: border-box;
}



