/* =============================================
   LES 4 ACRES — Feuille de style principale
   (Avec modifications pour effet de disparition au survol)
   ============================================= */

/* Import de polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Barlow+Condensed:wght@600;700&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ============================================
   VARIABLES CSS — PALETTE FONCTIONNELLE
   ============================================ */
:root {
  /* --- COULEURS DE FOND (BACKGROUNDS) --- */
  --fond-page:          #1a3a52;
  --fond-element:       #ffffff;
  --fond-header:        #1a3a52;
  --fond-section-sombre:#1a3a52;
  --fond-section-moyen: #2d5a7b;
  --fond-accent:        #b6e2ff3b;
  --fond-footer:        #1a3a52;

  /* --- COULEURS DE TEXTE --- */
  --texte-principal:    #444441;
  --texte-secondaire:   #000000;
  --texte-clair:        #ffffff;
  --texte-header:       #1a3a52;
  --texte-sombre:       #1a3a52;

  /* --- COULEURS D'ACCENT & ACTION --- */
  --accent-principal:   #ff3b3b;
  --accent-hover:       #bd0000;
  --accent-doux:        #5d8db8;
  
  /* --- BORDURES & LIGNES --- */
  --bordure-legere:     #e8e8e5;
  --bordure-moyenne:    #a8cde5;
  --bordure-header:     rgba(127,186,138,0.15);

  /* --- TYPOGRAPHIES --- */
  --font-titre: 'Barlow Condensed', sans-serif;
  --font-corps: 'Barlow', sans-serif;

  /* --- FORMES & EFFETS --- */
  --rayon:    6px;
  --rayon-lg: 10px;
  --ombre:    0 2px 12px rgba(0,0,0,0.08);
  --max-width: 1100px;
}

html { 
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-corps);
  font-size: 15px;
  line-height: 1.7;
  color: var(--texte-principal);
  background: var(--fond-page);
}

img { 
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CRÉDIT D'IMAGES — Hover avec attribution
   ============================================ */
.img-credit {
  position: relative;
  transition: opacity 0.3s ease;
}

.img-credit::after {
  content: attr(data-credit);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.img-credit:hover::after {
  opacity: 1;
}

.img-credit.img-credit--with-source::after {
  content: attr(data-credit) " • " attr(data-source);
}

.img-credit-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.img-credit-wrapper:hover .img-credit__tooltip {
  opacity: 1;
  visibility: visible;
}

.img-credit__tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

a { 
  color: inherit; 
  text-decoration: none; 
}

/* ============================================
   UTILITAIRES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  font: #ffffff;
}

.section { 
  padding: 5rem 0;
}

.section--dark { background: var(--fond-section-sombre); }
.section--white { background: var(--fond-element); }
.section--gris { background: var(--fond-page); }
.section--vert { background: var(--accent-principal); }
.section--light-blue {
  background: #c8e1ff;
  color: var(--texte-clair);
}
.section--light-blue p,
.section--light-blue li,
.section--light-blue h1,
.section--light-blue h2,
.section--light-blue h3,
.section--light-blue h4,
.section--light-blue h5,
.section--light-blue h6,
.section--light-blue a,
.section--light-blue span,
.section--light-blue strong {
  color: var(--texte-clair);
}
.section--light-blue .section-label { color: rgba(255,255,255,0.9); }
.section--light-blue .section-title { color: var(--texte-clair); }
.section--light-blue .section-sub { color: rgba(255,255,255,0.9); }
.section--red { background: #ff0000; }

.section-label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-principal);
  margin-bottom: 0.6rem;
  display: block;
}
.section--dark .section-label { color: var(--accent-doux); }

.section-title {
  font-family: var(--font-titre);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--texte-sombre);
  margin-bottom: 1rem;
}
.section--dark .section-title { color: var(--texte-clair); }
.section--vert .section-title { color: var(--texte-clair); }

.section-sub {
  font-size: 16px;
  color: var(--texte-secondaire);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.section--dark .section-sub { color: rgba(255,255,255,0.55); }
.section--vert .section-sub { color: rgba(255,255,255,0.75); }

/* ============================================
   SÉPARATRICE DE SECTIONS
   ============================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bordure-legere) 10%, var(--bordure-legere) 90%, transparent);
  margin: 0;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--rayon);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-principal);
  color: var(--texte-clair);
}
.btn-primary:hover { 
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { 
  border-color: rgba(255,255,255,0.7); 
  color: var(--texte-clair); 
}

.btn-white {
  background: var(--texte-clair);
  color: var(--texte-sombre);
  font-size: 16px;
}

.btn-white:hover { 
  background: var(#a3a3a2); 
  transform: translateY(-1px); 
}

.btn-dark {
  background: var(--fond-section-sombre);
  color: var(--texte-clair);
}
.btn-dark:hover { background: #243d28; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--fond-header);
  position: relative;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--bordure-header);
  width: 100%;
}

.header .container {
  padding: 0 1rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 1rem;
  position: relative;
  max-width: 100%;
}

.header__logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  flex: 0 0 auto;
  position: static;
  left: auto;
  top: auto;
  transform: none;
  margin: 0;
  margin-left: -10px;
  padding-left: 0;
  max-width: 150px;
}

.logo-image {
  display: stretch; 
  justify-content: space-between; 
}

.logo-image img {
  height: 120px;
  width: auto;
  max-width: 100%;
}

.logo {
  font-family: var(--font-titre);
  font-size: 28px;
  font-weight: 700;
  color: var(--texte-clair);
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1;
}

.logo span { color: var(--accent-principal); }
.logo img { height: 38px; }

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  position: relative;
  margin-left: auto;
  left: auto;
  top: auto;
  transform: none;
}

.nav a {
  color: rgba(255,255,255,0.7);
  font-size: 25px;
  font-weight: 500;
  transition: color 0.2s;
  position: auto;
  white-space: nowrap; 
  justify-content: space-between;
}

.nav a:hover,
.nav a.active { 
  color: var(--texte-clair); 
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; 
  left: 0; 
  right: 0;
  height: 0px;
  background: var(--accent-doux);
  border-radius: 2px;
}

.nav .btn { 
  color: var(--texte-clair); 
  padding: 8px 18px; 
  font-size: 25px; 
  white-space: nowrap; 
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header__logo-small {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  flex-shrink: 0;
}

.header__img-small {
  height: 25px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  justify-content: space-between;
}

.header__text-right {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--texte-clair);
  line-height: 1;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texte-clair);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--fond-section-sombre);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--fond-section-moyen);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(127,186,138,0.12);
  border: 1px solid rgba(127,186,138,0.3);
  color: var(--accent-doux);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 1.75rem;
}

.hero__badge::before {
  content: '';
  display: block;
  width: 6px; 
  height: 6px;
  background: var(--accent-doux);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-titre);
  font-size: 56px;
  font-weight: 700;
  color: var(--texte-clair);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--accent-doux);
  font-style: normal;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__ctas { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap;
}

.hero__logo-right {
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 1000px;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hero__logo-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--fond-section-moyen);
  border-top: 5px solid rgba(127,186,138,0.2);
  border-bottom: 5px solid rgba(127,186,138,0.2);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(127,186,138,0.15);
}

.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--font-titre);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-doux);
  line-height: 0.9;
  margin-bottom: 5px;
}

.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

/* ============================================
   CONFIANCE (TRUST)
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0px solid var(--bordure-legere);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  gap: 2rem;
  border: none;
}

.trust-card {
  background: var(--fond-element);
  padding: 2.5rem;
  border-radius: var(--rayon-lg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card:hover { 
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.trust-icon {
  width: 56px; 
  height: 56px;
  background: var(--fond-accent);
  border: 1px solid var(--bordure-moyenne);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
  background: var(--accent-principal);
  border-color: var(--accent-principal);
}

.trust-icon svg { 
  width: 24px; 
  height: 24px; 
  stroke: var(--accent-principal);
  transition: stroke 0.3s ease;
}

.trust-card:hover .trust-icon svg {
  stroke: white;
}

.trust-card h3 { 
  font-size: 16px; 
  font-weight: 600; 
  color: var(--texte-sombre); 
  margin-bottom: 4px; 
}

.trust-card p { 
  font-size: 14px; 
  color: var(--texte-secondaire); 
  line-height: 1.65;
  flex: 1;
}

.trust-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  color: #1a3a52;
}

.trust-card .lien {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.trust-card:hover .lien { 
  gap: 8px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.services-grid-erreur {
  display: grid;
  grid-template-columns: repeat(1, 3fr);
  gap: 2rem;
}

.service-card {
  background: var(--fond-element);
  border-radius: var(--rayon-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 1 !important;
  transition: all 0.3s ease; 
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-icon {
  width: 56px; 
  height: 56px;
  background: var(--fond-accent);
  border: 1px solid var(--bordure-moyenne);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-principal);
  border-color: var(--accent-principal);
}

.service-icon svg { 
  width: 24px; 
  height: 24px; 
  stroke: var(--accent-principal);
  transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
  stroke: white;
}

.service-card h3 { 
  font-size: 16px; 
  font-weight: 600; 
  color: var(--texte-sombre);
}

.service-card p { 
  font-size: 14px; 
  color: var(--texte-secondaire); 
  line-height: 1.65; 
  flex: 1;
}

.service-tags { 
  display: flex; 
  gap: 6px; 
  flex-wrap: wrap; 
  justify-content: center;
  margin-top: 8px; 
}

.tag {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 4px;
  background: var(--fond-accent);
  color: var(--texte-sombre);
  font-weight: 500;
  border: 1px solid var(--bordure-moyenne);
}

/* Override tag text color specifically inside the "Nos expertises" section */
.section--light-blue .service-card .tag,
.section--light-blue .service-tags .tag,
.section--light-blue .services-tags .tag {
  color: #1a3a52;
}

.service-card .lien {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: gap 0.3s ease;
}
.service-card:hover .lien { 
  gap: 8px; 
}

/* ============================================
   PARTENAIRES / CLIENTS
   ============================================ */
.section--partners {
  padding: 4.5rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  color: inherit;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--rayon-lg);
  transition: all 0.2s ease;
}

.partner-card:hover {
  transform: scale(1.08);
  background: rgba(0,0,0,0.02);
}

.partner-logo {
  height: auto;
  width: 100%;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.08);
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--texte-sombre);
  text-align: center;
  width: 100%;
  line-height: 1.3;
}

.partner-card:hover .partner-name {
  color: var(--accent-principal);
}

/* ============================================
   CORRECTIONS FINALES (HEADER & MOBILE)
   ============================================ */

/* 1. COMPORTEMENT DU HEADER */
.header {
  position: relative;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

@media (min-width: 1025px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  
  body {
    padding-top: 120px;
  }
  
  .header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
}

@media (max-width: 1024px) {
  .header {
    position: relative !important;
    box-shadow: none !important;
  }
  
  body {
    padding-top: 0 !important;
  }
}

/* 2. BOUTON HAMBURGER (Mobile uniquement) */
@media (max-width: 640px) {
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 10001;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    pointer-events: auto;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--fond-header);
    z-index: 10000;
    padding-top: 80px;
    justify-content: flex-start;
    align-items: center;
  }
  
  .nav.open li {
    margin: 15px 0;
  }
}

/* --- CORRECTION AFFICHAGE HEADER --- */
.header__inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.header__logo-group {
  flex: 0 0 auto !important;
  max-width: 200px !important;
  margin-left: 0 !important;
  position: static !important;
  transform: none !important;
}

.nav {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.hamburger {
  display: none !important;
  z-index: 10001 !important;
  position: relative !important;
}

@media (max-width: 640px) {
  .hamburger {
    display: flex !important;
  }
  
  .nav {
    display: none !important;
  }
  
  .nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--fond-header);
    z-index: 10000;
    padding-top: 80px;
  }
  
  .header__logo-group {
    max-width: 120px !important;
  }
  
  .header__inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* ============================================
   BANDEAU CATÉGORIES - VERSION STABLE ÉPAISSE
   ============================================ */

.bandeau-4acres-categories {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e8e8e5 !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  padding: 1.1rem !important;
}

.bandeau-4acres-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bandeau-4acres-liste {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  justify-content: space-between !important;
  font-family: var(--font-titre) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  align-items: stretch !important; /* Étire les items pour qu'ils aient tous la même hauteur */
  text-align: center !important;
}

.bandeau-4acres-item {
  flex: 0 0 20% !important;
  width: 20% !important;
  max-width: 20% !important;
  text-align: center !important;
  border-right: 1px solid #f0f0f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bandeau-4acres-item:last-child {
  border-right: none !important;
}

/* C'EST ICI QU'ON CONTRÔLE L'ÉPAISSEUR */
.bandeau-4acres-categorie-lien {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 0 10px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #444441 !important;
  text-decoration: none !important;
  background: transparent !important;
  border-bottom: 3px solid transparent !important;
  transition: all 0.2s !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  box-sizing: border-box !important;
}
.bandeau-4acres-categorie-lien:hover,
.bandeau-4acres-categorie-lien.active {
  background: #f5f5f5 !important;
  border-bottom-color: #ff3b3b !important;
  color: #000000 !important;
  font-weight: 700 !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .bandeau-4acres-liste {
    flex-wrap: wrap !important;
  }
  .bandeau-4acres-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
  .bandeau-4acres-categorie-lien {
    text-align: left !important;
    justify-content: flex-start !important;
    height: auto !important;
    padding: 15px 20px !important;
  }
}

.footer-logo {
  max-width: 150px;       /* Ajustez cette valeur si vous le voulez plus grand/petit */

  height: auto;           /* Conserve les proportions */
  margin-bottom: 20px;    /* Espace sous le logo */
  display: block;
  object-fit: contain;
}

.footer-logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer__col h4 { 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.35); 
  margin-bottom: 1rem; 
}

.footer__col ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.footer__col ul a { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
  transition: color 0.2s; 
}

.footer__col ul a:hover { 
  color: var(--texte-clair); 
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer__logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--texte-clair);
  color:#ffffff
}
 /* Cible le conteneur qui tient les 3 colonnes */
.footer__grid {
  display: flex;             /* Active le mode "ligne" */
  justify-content: space-between; /* Écarte les blocs au maximum */
  align-items: flex-start;   /* Alignement en haut (optionnel) */
  gap: 20px;                 /* Espace de sécurité entre les blocs */
  flex-wrap: wrap;           /* Important : passe à la ligne sur mobile */
}

/* Style pour chaque bloc individuel (footer_col) */
.footer_col {
  flex: 1;                   /* Chaque bloc prend 1/3 de la largeur disponible */
  min-width: 250px;          /* Largeur minimum avant de passer à la ligne */
}
.process-grid {
  grid-template-columns: 1fr;
}
.process-step,
.process-step .step-num,
.process-step .step-name,
.process-step .step-desc {
  color: #ffffff;
}
.step-num {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.step-desc {
  color: #000;
  line-height: 1.7;
}
.reals-grid { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.real-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.real-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}
.real-img {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
.real-card:hover .real-img img {
  transform: scale(1.03);
}
.real-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.25) 100%);
}
.real-img-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.48);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.real-img-overlay .overlay-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  background: #ff3b3b;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.real-img-overlay p {
  margin: 0;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  line-height: 1.7;
}
.real-sector-maintenance,
.real-sector-industry {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--fond-header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.real-body {
  position: relative;
  background: #ffffff;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 0 0 20px 20px;
  margin-top: -36px;
  z-index: 1;
}
.real-body h3 {
  font-size: 24px;
  color: var(--fond-header);
  margin-bottom: 0.8rem;
}
.real-body p {
  color: var(--gris-400);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.real-result {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #ff3b3b;
  color: var(--fond-header);
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 900px) {
  .reals-grid { grid-template-columns: 1fr; }
  .real-img { min-height: 220px; }
}
.footer {
  padding: 4rem 0;
}

.orga-card{
  color: #ffffff
}
.bloc-texte {
  color: #ffffff;
}

.page-hero {
  background: var(--fond-section-sombre);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(127,186,138,0.15);
}

.page-hero h1 {
  font-family: var(--font-titre);
  font-size: 44px;
  font-weight: 700;
  color: var(--texte-clair);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.page-hero p { 
  font-size: 16px; 
  color: rgba(255,255,255,0.55); 
  max-width: 500px; 
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 6px;
  align-items: center;
}

.breadcrumb a { 
  color: var(--accent-doux); 
}

.breadcrumb span { 
  color: rgba(255,255,255,0.2); 
}
.section-section--vert  {
  background: var(--accent-principal);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 275px;
  
}
.btn btn-white{
  justify-content: center;

}
.btn btn-white:hover {
  background: var(#766F64);
  transform: translateY(-1px);
}
.footer__tagline {
  color:#ffffff;
}