@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

:root {
  --header-offset: 170px;
}

section {
  scroll-margin-top: var(--header-offset);
}

body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

.form-message {
  display: none;
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.form-message--success {
  display: block;
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #256029;
}

.form-message--error {
  display: block;
  background-color: #ffebee;
  border: 1px solid #ef9a9a;
  color: #b71c1c;
}


.a-perso {
  text-decoration: unset;
  color:unset;
}
/* Header */
.header {
  width: 100%;
  height: 150px;
  background: white;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 97px 0 120px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.menu-btn:hover {
  opacity: 0.7;
}

.menu-icon {
  width: 48.5px;
  height: 40px;
}

.menu-text {
  font-size: 18px;
  color: #1f2749;
  line-height: 32px;
}

.logo {
  width: 327px;
  height: 113px;
  object-fit: contain;
}

.contact-btn {
  width: 201px;
  height: 40px;
  background: #1f2749;
  border-radius: 40px;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #2d3558;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background: white;
  padding: 40px 30px;
  animation: slideInLeft 0.3s;
  overflow-y: auto;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1f2749;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.mobile-nav a {
  color: #1f2749;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #bbd25c;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Progress Indicator */
.progress-indicator {
  position: fixed;
  top: 312px;
  right: 71px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 999;
}

.progress-dot {
  width: 5px;
  height: 50px;
  background: #eaeaea;
  transition: all 0.3s;
  cursor: pointer;
}

.progress-dot:hover {
  background: #d0d0d0;
}

.progress-dot.active {
  background: #e40f18;
}

/* Hero Section */
.hero {
  margin-top: 150px;
  width: 100%;
  height: 1035px;
  position: relative;
  overflow: visible; 
  z-index: 2;       
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
   height: 1035px;
  background: linear-gradient(90deg, rgba(31, 39, 73, 0.65) 0%, rgba(31, 39, 73, 0) 100%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: absolute;
  top: 64px;
  left: 120px;
  z-index: 10;
}

.hero-logo {
  width: 642px;
  height: 256px;
  object-fit: contain;
}

.hero-title {
  margin-top: 77px;
  width: 462px;
  margin-left:80px;
  font-weight: 700;
  color: white;
  font-size: 33px;
  line-height: 39px;
}

.image-section-bg {
  WIDTH: 100%;
    min-height: 700px;
    object-fit: cover;
}

.image-section {
  margin-top:100px;
  margin-bottom:-5px;
}

.hero-description {
  margin-top: 50px;
  width: 463px;
  color: white;
  font-size: 18px;
  line-height: 32px;
  margin-left:80px;
}

.hero-icon {
  position: absolute;
  bottom: -90px;  /* valeur à ajuster pour qu’elle mord sur la mission */
  left: 70px;
  width: 106px;
  height: 180px;
  z-index: 3;      /* au-dessus du contenu du hero */
}

.image-section {
    position: relative;     /* pour que l’overlay se positionne par rapport à la section */
    overflow: visible;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Overlay type "bande sombre à gauche" comme sur ta 2e image */
    background: linear-gradient(
        0deg,
        rgba(31, 39, 73, 0.6) 0%,
        rgba(31, 39, 73, 0.0) 100%
    );

    pointer-events: none;          /* pour ne pas bloquer les clics sur le contenu */
}


.image-icon {
    position: absolute;
    top: -90px;
    right: 120px;
    width: 106px;
    height: 180px;
    z-index: 14;
}

.image-bas-icon {
    position: absolute;
    bottom: -105px;
    left: 120px;
    width: 128px;
    height: 180px;
    z-index: 14;
}

/* Mission Section */
.mission-section {
  width: 100%;
  min-height: 460px;
  background: #1f2749;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 20px 80px;
}

.section-title {
  font-weight: 900;
  color: #bbd25c;
  font-size: 35px;
  line-height: 47px;
  text-align: center;
}

.title-underline {
  width: 154px;
  height: 3px;
  background: #fff;
  margin-top: 20.5px;
}

.title-underline-green {
  width: 154px;
  height: 3px;
  background: #BBD25C;
  margin-top: 20.5px;
  margin-bottom:50px;
}

.services-section .title-underline-green {
  width: 154px;
  height: 3px;
  background: #BBD25C;
  margin-bottom:25px;
}

.recruitment-section .title-underline-green {
  width: 154px;
  height: 3px;
  background: #BBD25C;
  margin-bottom:25px;
}

.mission-subtitle {
  margin-top: 24px;
  max-width: 1032px;
  width: 100%;
  font-weight: 700;
  color: white;
  font-size: 24px;
  line-height: 47px;
  text-align: center;
  padding: 0 20px;
}

.mission-text {
  margin-top: 30px;
  max-width: 1032px;
  width: 100%;
  color: white;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  padding: 0 20px;
}

.mission-icon {
  position: absolute;
  bottom: -100px;
  right: 120px;
  width: 127px;
  height: 187px;
  z-index:100;
}

/* Companies Section */
.companies-section {
  width: 100%;
  padding: 25px 20px 80px;
  position: relative;
  margin-top: 120px;
}

.companies-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #e0e0e0;
}

.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 93px;
  padding: 0 122px;
  max-width: 1440px;
  margin: 0 auto;
}

.company-card {
  padding-top: 15px;
}

.company-header {
  font-size: 35px;
  color: #1f2749;
  line-height: 37px;
}



.company-header .prefix {
  font-weight: 900;
}

.company-header .suffix {
  font-weight: 300;
}

.company-title {
  font-weight: 700;
  color: #1f2749;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 15px;
}

.company-logo {
  width: 256px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 40px;
}

.company-info {
  font-size: 18px;
  line-height: 32px;
  color: #2d2d2d;
  margin-bottom: 30px;
}

.company-info .label {
  font-weight: 900;
  color: #1f2749;
}

.company-certifications {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.certification-logo {
  height: 57px;
  object-fit: contain;
  margin-right:auto;
}

.certification-text {
  font-weight: 900;
  color: #1f2749;
  font-size: 18px;
  line-height: 32px;
}

.company-btn {
  width: 249px;
  height: 40px;
  background: #bbd25c;
  border-radius: 40px;
  border: none;
  color: #1f2749;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.company-btn:hover {
  background: #a8c04d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.margin-social-icon {
  margin-left:20px;
}

.btn-social-container {
  display:flex;
  gap:5px;
  align-items: center;
}


.social-icon {
  width: 32px;
  height: 31px;
}

/* Stats Section */
.stats-section {
  width: 100%;
  min-height: 393px;
  background: #1f2749;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 100px 20px;
  position: relative;
}

.stats-container {
  max-width: 1034px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 104px;
  margin-top: 53.5px;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-weight: 900;
  color: #bbd25c;
  font-size: 75px;
  line-height: 37px;
}

.stat-label {
  margin-top: 22px;
  color: white;
  font-size: 20px;
  line-height: 25px;
}
.services-section {
  width: 100%;
  padding: 141px 120px 100px;
  position: relative;

  display: flex;                 /* 2 colonnes */
  align-items: flex-start;       /* alignement en haut */
  justify-content: space-between;
  gap: 120px;                    /* espace entre texte et icônes */
}

.services-left {
  flex: 0 0 460px;               /* largeur fixe proche de ton texte actuel */
  max-width: 520px;
}

.services-right {
  flex: 0.5 1 auto;               /* prend le reste de la place */
}

.services-title {
  font-weight: 900;
  color: #1f2749;
  font-size: 35px;
  line-height: 37px;
  margin-bottom: 40px;
}

.services-section .services-title {
  margin-bottom: 4px;
}

.services-subtitle {
  font-weight: 700;
  color: #1f2749;
  font-size: 24px;
  line-height: 37px;
  margin-bottom: 15px;
  max-width: 529px;
}

.services-description {
  font-size: 18px;
  line-height: 32px;
  color: #2d2d2d;
  max-width: 487px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));  /* 2 colonnes équilibrées */
  column-gap: 40px;                                   /* espace horizontal */
  row-gap: 40px;                                      /* espace vertical */
  margin-top: 0;                                      /* plus de décalage vers le bas */
}


.service-item {
  display: flex;
  align-items: center;
  gap: 29px;
}

.service-icon {
  width: 82px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-name {
  color: #1f2749;
  font-size: 20px;
  line-height: 32px;
}
/* Environment Section – nouvelle version */
.environment-section {
  background-color: #bbd25c;
  margin-top: 100px;
  padding: 60px 20px;
}

.environment-inner {
  display: flex;
  flex-direction: column;   /* mobile d'abord : empilé */
  gap: 40px;
}

/* Colonne image */
.environment-media {
  position: relative;
  overflow: hidden;
}

.environment-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Bouton vidéo – style de base */
.video-btn {
  margin-top: 24px;
  width: 176px;
  height: 40px;
  background: #bbd25c;
  border-radius: 40px;
  border: none;
  color: #1f2749;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.video-btn:hover {
  background: #a8c04d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Position du bouton pour cette section (mobile/tablette : sous l'image) */
.environment-video-btn {
  margin: 24px auto 0;
}

/* Pastille play */
.play-icon {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Colonne texte */
.environment-panel {
  color: #2d2d2d;
}

.environment-title {
  font-weight: 900;
  color: #1f2749;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 5px;
  text-align: left;
}

.environment-text {
  font-size: 16px;
  line-height: 1.8;
  max-width: 480px;
  margin-top:40px;
}

/* Underline blanc sur fond vert */
.environment-panel .title-underline {
  background: #ffffff;
}

/* TABLETTE / DESKTOP */
@media (min-width: 900px) {
  .environment-section {
    padding: 0;
  }

  .environment-inner {
    min-height: 610px;
    flex-direction: row;    /* 2 colonnes côte à côte */
  }

  .environment-media {
    flex: 0 0 55%;          /* ~55% image à gauche */
  }

  .environment-panel {
    flex: 0 0 45%;          /* ~45% bloc texte à droite */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 120px;
  }

  .environment-title {
    font-size: 35px;
    line-height: 37px;
    max-width: 380px;

  }

  .environment-text {
    font-size: 18px;
  }

  .environment-image {
    height: 100%;
    position: relative;
    z-index: 1;
  }


}

  /* Assombrissement léger de la photo pour mieux lire le bouton */
    /* .environment-media::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #1f274975;
        z-index: 2;
    } */

  /* Bouton vidéo centré sur la zone image, comme sur ta maquette */
  .environment-video-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;             /* à ajuster finement si besoin (32–38%) */
    transform: translate(-50%, -50%);
    margin: 0;
    background: #bbd25c;
  }

/* PETIT MOBILE : ajustements */
@media (max-width: 480px) {
  .environment-image {
    height: 220px;
  }

  .environment-title {
    font-size: 22px;
  }

  .environment-text {
    font-size: 14px;
  }

  .video-btn {
    width: 160px;
    font-size: 18px;
  }
}

.environment-kpi{
  margin-top: 15px;
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;

  padding: .15rem 1rem;
  border-radius: 999px;

  background: #ffffff;
  color: #1f2749;
  border: 1px solid rgba(31,39,73,.20);

  font-weight: 900;
  white-space: nowrap;
}

.environment-kpi-unit{
  font-weight: 700;
  opacity: .9;
  font-size: .95em;
}


/* Recruitment Section */
.recruitment-section {
  width: 100%;
  min-height: 790px;
  position: relative;
  display: flex;
  padding: 65px 20px;
}

.section-separator {
    position: absolute;
    bottom: -54px;           /* profondeur du creux */
    left: 0;
    width: 100%;
    height: 55px;
    background: #1f2749;     /* même couleur que la section Mission */
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 2;
}

.recruitment-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 718px;
  height: 100%;
  object-fit: cover;
}

.recruitment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f9f9f9 62%, #f9f9f9 30%, transparent 84%)
}

.recruitment-content {
  position: relative;
  z-index: 2;
  padding-left: 123px;
  max-width: 700px;
}

.recruitment-title {
  font-weight: 900;
  color: #1f2749;
  font-size: 35px;
  line-height: 37px;
  margin-bottom: 25px;
}

.recruitment-text {
  font-size: 18px;
  line-height: 32px;
  color: #2d2d2d;
  max-width: 576px;
  margin-bottom: 40px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 65px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 5px;
}

.benefit-icon {
  width: 27px;
  height: 21px;
  margin-top: 5px;
  flex-shrink: 0;
}

.benefit-text {
  font-weight: 900;
  color: #1f2749;
  font-size: 20px;
  line-height: 39px;
}

.recruitment-btn {
  margin-top: 0;
}

/* Contact Section */
.contact-section {
  width: 100%;
  min-height: 1580px;
  position: relative;
  background: white;
  padding: 71px 20px 40px;
}

.contact-bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(0deg, rgb(0 0 0) 0% 0%, rgb(0 0 0 / 0%) 26%);
  mix-blend-mode: multiply;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
}

.contact-info {
  flex: 1;
  max-width: 600px;
}

.footer-logo {
  width: 367px;
  max-width: 100%;
  height: auto;
  margin-bottom: 85px;
}

.company-addresses {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
}

.address-block {
  color: #1F2749;
  flex: 1;
  min-width: 250px;
}

.address-logo {
  height: 39px;
  object-fit: contain;
  margin-bottom: 29px;
}

.address-text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.address-label {
  font-weight: 900;
}

.website-link {
  font-weight: 900;
  color: #1F2749;
  font-size: 18px;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.website-link:hover {
  opacity: 0.7;
}

.divider-vertical {
  width: 2px;
  min-height: 834px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 20px;
}

.contact-form-wrapper {
  flex: 1;
  max-width: 684px;
}

.form-title {
  font-weight: 900;
  color: #bbd25c;
  font-size: 35px;
  line-height: 37px;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: #1F2749;
  font-size: 16px;
  line-height: 28px;
}

.form-input,
.form-textarea {
  height: 40px;
  background: #f9f9f9;
  border: none;
  border-radius: 3px;
  padding: 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  transition: box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #bbd25c;
}

.form-textarea {
  height: 136px;
  padding: 12px;
  resize: none;
}

.file-upload {
  height: 40px;
  background: #e1e1e1;
  border: none;
  border-radius: 3px;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #1f2749;
  font-size: 16px;
  transition: background 0.3s;
}

.file-upload:hover {
  background: #d0d0d0;
}

.file-info {
  font-size: 16px;
  color: #6d747a;
  line-height: 28px;
}

.file-count {
  color: #e20d18;
}

.form-footer {
  margin-top: 20px;
}

.privacy-notice {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #6d747a;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.privacy-text {
  font-size: 14px;
  color: #6d747a;
  line-height: 19px;
}

.required-text {
  font-size: 14px;
  color: #6d747a;
  text-align: right;
  margin-bottom: 12px;
}

.submit-btn {
  width: 201px;
  height: 40px;
  background: #bbd25c;
  border-radius: 40px;
  border: none;
  color: #1f2749;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #a8c04d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  width: 100%;
  padding: 20px;
  text-align: center;
  position: absolute;
  bottom:0;
}

.footer-text {
  color: white;
  font-size: 14px;
  line-height: 19px;
}

/* Utility Classes */
.bold {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .companies-grid {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }
  
  .companies-divider {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
 
  .divider-vertical {
    display: none;
  }
  
  .progress-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
    height: 100px;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .hero {
    height: 600px;
  }
  
  .hero-content {
    left: 20px;
    right: 20px;
  }
  
  .hero-logo {
    width: 300px;
    height: auto;
  }
  
  .hero-title {
    width: 100%;
    font-size: 20px;
  }
  
  .hero-description {
    width: 100%;
    font-size: 14px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 487px) {
.contact-section {
  min-height: 2850px !important;
}
}
/* 0 – 575px : mobiles */
@media (max-width: 575.98px) {
    .footer {
      bottom: 0;
    LEFT: 0;
    padding:0;
    }
     .environment-inner {
      display:block;
    }
        .environment-text {
      max-width:unset;
      width:100%;
    }
        .environment-media {
      height:400px;
    }
    .recruitment-content {
      padding-left:0px;
    }
    .services-section {
      display:block;
    }

    .services-right {
      margin-top:30px;
    }
    .services-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));  /* 3 colonnes équilibrées */
    }
    .services-section {
      padding: 70px 40px 0px;
    }
    .services-description, .services-subtitle, .services-title, .services-left {
      max-width:100%;
      width:100%;
    }
    .stats-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 40px;
    }
    .image-section-bg {
      min-height:350px;
    }
    .contact-info, .contact-form-wrapper {
      width:100%;
      max-width: unset;;
    }
    .footer-logo {
      margin-inline: auto;
      display:block;
    }
    .company-addresses {
      gap:30px;
    }

  .contact-section {
      width: 100%;
      min-height: 2350px;
      position: relative;
      background: white;
      padding: 71px 45px 40px;
  }
.contact-bg {
  bottom:0;
  height:10%;
  top:unset;
}
.contact-overlay {
    background: linear-gradient(0deg, rgb(0 0 0) 0% 0%, rgb(0 0 0 / 0%) 2%);
}
.address-block {

    margin-right: auto;
    flex: unset;
    min-width: unset;
}
.hero {
  margin-top:100px;
}
    .hero {
        height: 810px;
    }
.hero-content {
  text-align:center;
}
.hero-description, .hero-title {
  margin-left:0;
}
.hero-description {
  margin-top:25px;
}
.hero-title {
  margin-top:45px;
}
.companies-grid {
  display:block;
}
    .companies-grid {

        padding: 0 20px;
    }
.hero-overlay {
  background: #00000033;
  height: 810px;
}
.mission-icon {
  bottom: -140px;
}
.environment-section {
  padding:0;
}
.environment-panel {
  padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 50px;
    padding-top: 50px;
}
.environment-image {
  height:100%;
}
.video-btn {
position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
}
.hero-icon, .mission-icon, .image-icon, .image-bas-icon {
  display:none;
}
.recruitment-section {
      padding: 65px 45px;
}
.contact-btn {
  display:none;
}
 .contact-content {
    flex-direction: column;
  }
.company-card {
    padding-top: 50px;
}
 .company-btn {
    font-size: 17px;
}
.companies-section {
    padding: 25px 20px 5px;
    margin-top: 65px;
}
.image-section {
    margin-top: 65px;
}
.recruitment-bg {
display:none;
}
}

/* 576 – 767px : grands mobiles / petits écrans */
@media (min-width: 576px) and (max-width: 767.98px) {
     .environment-inner {
      display:block;
    }
        .environment-text {
      max-width:unset;
      width:100%;
    }
        .environment-media {
      height:400px;
    }
    .recruitment-content {
      padding-left:0px;
    }
    .services-section {
      display:block;
    }

    .services-right {
      margin-top:30px;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));  /* 3 colonnes équilibrées */
    }
    .services-section {
      padding: 70px 45px 0px;
    }
    .services-description, .services-subtitle, .services-title, .services-left {
      max-width:100%;
      width:100%;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    .image-section-bg {
      min-height:450px;
    }
    .contact-info, .contact-form-wrapper {
      width:100%;
      max-width: unset;;
    }
    .footer-logo {
      margin-inline: auto;
      display:block;
    }
    .company-addresses {
      gap:30px;
    }

  .contact-section {
      width: 100%;
      min-height: 2500px;
      position: relative;
      background: white;
      padding: 71px 45px 40px;
  }
.contact-bg {
  bottom:0;
  height:25%;
  top:unset;
}
.contact-overlay {
    background: linear-gradient(0deg, rgb(0 0 0) 0% 0%, rgb(0 0 0 / 0%) 5%);
}
.address-block {
  margin-left: auto;
    margin-right: auto;
    flex: unset;
    min-width: unset;
}
.footer {
    width: 93%;
}
.hero {
  margin-top:100px;
}
.hero-content {
  text-align:center;
}
.hero-description, .hero-title {
  margin-left:0;
}
.hero-description {
  margin-top:25px;
}
.hero-title {
  margin-top:45px;
}
.hero-overlay {
  background: #00000033;
  height: 600px;
}
.mission-icon {
  bottom: -140px;
}
.environment-section {
  padding:0;
}
.environment-panel {
  padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 50px;
    padding-top: 50px;
}
.environment-image {
  height:100%;
}
.video-btn {
position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
}
.hero-icon, .mission-icon, .image-icon, .image-bas-icon {
  display:none;
}
.recruitment-section {
      padding: 65px 45px;
}
.contact-btn {
  display:none;
}
 .contact-content {
    flex-direction: column;
  }
  
}

/* 768 – 991px : tablettes */
@media (min-width: 768px) and (max-width: 991.98px) {
        .environment-inner {
      display:block;
    }
        .environment-text {
      max-width:unset;
      width:100%;
    }
        .environment-media {
      height:400px;
    }
    .recruitment-content {
      padding-left:95px;
    }
    .services-section {
      display:block;
    }

    .services-right {
      margin-top:30px;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));  /* 3 colonnes équilibrées */
    }
    .services-section {
      padding: 141px 120px 0px;
    }
    .footer {
    width: 98%;
    }
    .services-description, .services-subtitle, .services-title, .services-left {
      max-width:100%;
      width:100%;
    }
    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .image-section-bg {
      min-height:450px;
    }
    .contact-info, .contact-form-wrapper {
      width:100%;
      max-width: unset;;
    }
    .footer-logo {
      margin-inline: auto;
      display:block;
    }
    .company-addresses {
      gap:30px;
    }

  .contact-section {
      width: 100%;
      min-height: 2150px;
      position: relative;
      background: white;
      padding: 71px 20px 40px;
  }
.contact-bg {
  bottom:0;
  height:25%;
  top:unset;
}
.contact-overlay {
    background: linear-gradient(0deg, rgb(0 0 0) 0% 0%, rgb(0 0 0 / 0%) 5%);
}
.address-block {
  margin-left: auto;
    margin-right: auto;
    flex: unset;
    min-width: unset;
}
.hero {
  margin-top:100px;
}
.hero-content {
  text-align:center;
}
.hero-description, .hero-title {
  margin-left:0;
}
.hero-description {
  margin-top:25px;
}
.hero-title {
  margin-top:45px;
}
.hero-overlay {
  background: #00000033;
  height: 600px;
}
.mission-icon {
  bottom: -140px;
}
.environment-section {
  padding:0;
}
.environment-panel {
  padding-left: 115px;
    padding-right: 115px;
    padding-bottom: 50px;
    padding-top: 50px;
}
.environment-image {
  height:100%;
}
.video-btn {
position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
}
 .contact-content {
    flex-direction: column;
  }
  
}

/* 992 – 1199px : petits laptops */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .environment-inner {
      display:block;
    }
        .environment-text {
      max-width:unset;
      width:100%;
    }
        .environment-media {
      height:500px;
    }
    .recruitment-content {
      padding-left:95px;
    }
    .services-section {
      display:block;
    }

    .services-right {
      margin-top:30px;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));  /* 3 colonnes équilibrées */
    }
    .services-section {
      padding: 141px 120px 0px;
    }
    .services-description, .services-subtitle, .services-title, .services-left {
      max-width:100%;
      width:100%;
    }
    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .image-section-bg {
      min-height:450px;
    }
    .contact-info, .contact-form-wrapper {
      width:100%;
      max-width: unset;;
    }
    .footer-logo {
      margin-inline: auto;
      display:block;
    }
    .company-addresses {
      gap:30px;
    }

  .contact-section {
      width: 100%;
      min-height: 1300px;
      position: relative;
      background: white;
      padding: 71px 20px 40px;
  }
.footer {
  width:92%;
}
.contact-bg {
  bottom:0;
  height:50%;
  top:unset;
}
.contact-overlay {
    background: linear-gradient(0deg, rgb(0 0 0) 0% 0%, rgb(0 0 0 / 0%) 5%);
}
.address-block {
  margin-left: auto;
    margin-right: auto;
    flex: unset;
    min-width: unset;
}
}

/* 1200 – 1399px : desktops standard */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .company-addresses {
      gap:0px;
    }
    .environment-panel {
      padding: 75px 80px 75px 55px;
      flex: 0 0 40%;
    }
    .footer {
    width: 97%;
    }
}

/* 1400 – 1599px : grands écrans */
@media (min-width: 1400px) and (max-width: 1599.98px) {
        .environment-panel {
      padding: 75px 110px 75px 55px;
      flex: 0 0 40%;
    }
}

/* 1600 – 1919px : écrans très larges */
@media (min-width: 1600px) and (max-width: 1919.98px) {
    /* On évite que tout prenne toute la largeur */
}

/* ≥ 1920px : très grands écrans */
@media (min-width: 1920px) {
    /* Layout “max-width” + gros padding */
}
