/* ==================== VARIABLES CSS ==================== */
:root {
  /* Couleurs */
  --black-color: #0a0f15;
  --dark-grey-color: #282828;
  --light-grey-color: #a2aab0;
  --white-color: #ffffff;

  /* Tailles de police */
  --h1-font-size: 64px;
  --h2-font-size: 40px;
  --normal-font-size: 16px;
  --small-font-size: 14px;

  /* Marges */
  --mb-1: 8px;
  --mb-2: 16px;
  --mb-3: 24px;
  --mb-4: 32px;
  --mb-5: 40px;
  --mb-6: 48px;
}

/* ==================== BASE ==================== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-color);
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Marcellus", serif;
  color: var(--black-color);
  font-weight: normal;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ==================== ÉLÉMENTS RÉUTILISABLES ==================== */
.section {
  padding: 96px 0 15px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-block;
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 16px 40px;
  font-family: "Sora", sans-serif;
  font-weight: 200;
  font-size: 16px;
  letter-spacing: -0.48px;
  border: 0.2px solid rgba(255, 255, 255, 0.6);
  transition: 0.6s;
  border-radius: 2px;
}

.button:hover {
  background-color: transparent;
  color: var(--white-color);
  border: 0.2px solid rgba(255, 255, 255, 0.6);
}

.link {
  color: var(--black-color);
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section__subtitle {
  color: var(--light-grey-color);
  margin-bottom: var(--mb-1);
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
}

.section__description {
  color: #282828;
  line-height: 1.6;
  font-size: 18px;
}

.button--outline {
  background-color: transparent;
  color: var(--white-color);
  border: 0.2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 32px;
  transition: 0.6s;
}
.button--outline:hover {
  background-color: var(--white-color);
  color: var(--black-color);
  transition: ease-in-out 0.6s;
  border: 0.2px solid rgba(255, 255, 255, 0.6);
}

.button--outline i.fa-arrow-right {
  transition: transform 0.3s;
}

.button--outline:hover i.fa-arrow-right {
  transform: rotate(-45deg);
}

/* AJOUTEZ CECI - Nouvelle variante de bouton pour fond clair */
.button--outline-dark {
  background-color: transparent;
  color: var(--black-color);
  border: 0.2px solid rgba(40, 40, 40, 0.6);
  padding: 0.8rem 2rem; /* Padding ajusté */
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 2px;
  transition: 0.6s;
}

.button--outline-dark:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  transition: ease-in-out 0.6s;
  border: 0.75px solid rgba(40, 40, 40, 0.6);
}

.button--outline-dark i.fa-arrow-right {
  transition: transform 0.3s;
}
.button--outline-dark:hover i.fa-arrow-right {
  transform: rotate(-45deg);
}

.button--inline {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 16px 35px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  border: 0.2px solid rgba(255, 255, 255, 0.6);
  transition: 0.6s;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.button--inline:hover {
  background-color: transparent;
  color: var(--white-color);
  border: 0.2px solid rgba(255, 255, 255, 0.6);
  transition: ease-in-out 0.6s;
}

/* Par défaut : flèche à 45° vers le haut */
.button--inline i.fa-arrow-right {
  transition: transform 0.3s;
  transform: rotate(-45deg);
}
.button--inline:hover i.fa-arrow-right {
  transform: rotate(0deg); /* Survol : flèche horizontale */
}

/* ==================== HEADER & NAV ==================== */
.header {
  width: 100%;
  position: absolute; /* Changé en absolute pour se superposer au hero */
  top: 0;
  left: 0;
  z-index: 100;
}

.nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav.container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Bordure sous le menu seulement */
  padding-bottom: 8px; /* Optionnel : espace sous la bordure */
}

.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* Espacement ajusté */
}

.nav__link {
  color: var(--white-color);
  font-family: "Marcellus", serif;
  font-size: 16px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav__logo {
  display: block; 
  margin-right: 48px;
}
.nav__logo img {
  height: 38px; 
  width: auto; 
}

.nav__menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background-image: url("../images/hero-section/hero-bg.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero__content {
  z-index: 2;
  padding: 200px 0 100px 0;
  color: var(--white-color);
}

.hero__icon {
  width: 90px;
  margin: 0 auto 0 auto; /* Ajuste l’espace sous l’icône */
}

.hero__icon img {
  display: block;
  margin: 0 auto;
  width: 90px; /* ajuste selon ton design */
  animation: rotate-hero-icon 15s linear infinite;
}

@keyframes rotate-hero-icon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero__title {
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -1.4px;
  text-align: center;
  margin: 0 auto 20px auto; /* Ajuste l’espace sous le titre */
  color: var(--white-color);
}

/* ==================== INTRO / MANIFESTO ==================== */
.intro {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.intro__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--mb-4);
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}

.intro__title {
  font-size: 52px;
  line-height: 55px;
  letter-spacing: -1.04px;
  margin: 0 auto var(--mb-2);
  font-weight: 400;
}

.intro__description {
  padding: 0 100px;
  font-size: 33px;
  font-weight: 600;
  margin: 25px auto var(--mb-5);
  font-family: "Sora", sans-serif;
  color: var(--black-color);
  letter-spacing: -1px;
}

.intro__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}
.intro__image-container img {
  width: 550px;
  height: 638px;
  display: block;
}

.intro__image-caption {
  font-family: "Marcellus", serif;
  font-size: 38px;
  letter-spacing: -0.76px;
  margin-bottom: var(--mb-2);
  color: var(--black-color);
}

/* ==================== EXPERTISE ==================== */
.expertise {
  padding-top: 6rem;
  overflow: hidden;
  position: relative; /* Indispensable pour positionner le texte en fond */
}

/* On ajoute position:relative pour que le texte en fond se positionne par rapport à lui */
.expertise .container {
  position: relative;
  top: 280px;
}

/* === C'EST ICI LA MODIFICATION PRINCIPALE === */
.expertise .section__bg-text {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 100px;
  transform: translateX(-10%);
  font-size: 21vw;
  font-family: "Marcellus", serif;
  color: rgba(10, 15, 21, 0.05);
  user-select: none;
  white-space: nowrap;
  text-align: center;
  width: 110%; /* On s'assure qu'il déborde bien */
}

.expertise .intro__breadcrumb {
  justify-content: flex-start; /* Aligne à gauche */
  margin-bottom: var(--mb-2);
  gap: 20px;
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}

/* Style pour l'en-tête aligné à gauche */
.section__header--left {
  text-align: left;
  margin-bottom: 220px;
  position: relative;
  z-index: 2;
  bottom: 145px;
}

.section__header--left .section__title {
  font-size: 56px;
  margin: 0 auto var(--mb-2);
  max-width: none;
}

.section__header--left .section__description {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: -10px;
  color: #282828;
  letter-spacing: -0.36px;
}

.expertise__scroller {
  width: 100%;
  overflow-x: scroll;
  cursor: grab;
  position: relative;
  user-select: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  transition: scroll-left 0.2s ease-out;
  -webkit-overflow-scrolling: touch;
}
.expertise__scroller::-webkit-scrollbar {
  display: none;
}

.expertise__scroller.active {
  cursor: grabbing;
}

.expertise__grid {
  display: flex;
  gap: 3px;
  padding-bottom: 1rem;
}

.expertise__scroller:hover .expertise__grid {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.expertise__card {
  position: relative;
  height: 534px;
  width: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

.expertise__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expertise__card-content {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  padding: 75px 45px;
  color: var(--white-color);
  z-index: 2;
  opacity: 0.6;
  transform: scale(1);
  transition: opacity 0.6s ease-in-out 0.2s, transform 0.6s ease-in-out 0.2s;
}

.expertise__card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background: linear-gradient(
    to top,
    rgba(10, 15, 21, 0.8) 20%,
    rgba(10, 15, 21, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
/* --- ANIMATION AU SURVOL --- */

.expertise__card:hover::before {
  opacity: 1; /* L'ombre apparaît */
}

.expertise__card:hover .expertise__card-content {
  opacity: 1; /* Le texte apparaît */
  transform: scale(1.05); /* Le texte s'agrandit légèrement (zoom sortant) */
}

.expertise__card-content h4 {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  line-height: 30px;
  color: var(--white-color);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: -1.12px;
}

.card__link {
  color: var(--white-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0.2px solid var(--white-color);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: rotate(-45deg);
}

.expertise__card:hover .arrow-icon {
  transform: rotate(0deg);
}

/* ==================== SECTEURS ==================== */
.sectors {
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.sectors .container {
  position: relative;
  z-index: 2; /* S'assure que le contenu est AU-DESSUS du texte en fond */
  margin-top: 4rem;
}
.sectors .section__header--left .section__title {
  font-size: 56px; /* Taille ajustée */
  margin: 0 auto var(--mb-2);
  max-width: none; /* Permet au titre de s'étendre sur toute la largeur */
}
.sectors .section__header--left .section__description {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: -30px;
  color: #282828;
  letter-spacing: -0.6px;
}

.sectors .section__header--left .intro__breadcrumb {
  justify-content: flex-start; /* Aligne à gauche */
  margin-bottom: var(--mb-2);
  gap: 20px;
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}
.sectors .section__header--left {
  text-align: left;
  margin-bottom: 240px;
  position: relative;
  z-index: 2;
  top: 150px;
}
/* Style pour le texte géant en fond (similaire à la section expertise) */
.sectors .section__bg-text {
  display: block;
  position: absolute;
  z-index: 1;
  top: 4rem;
  left: 0;
  transform: translateX(-8%);
  font-size: 22vw;
  font-family: "Marcellus", serif;
  color: rgba(10, 15, 21, 0.05);
  user-select: none;
  white-space: nowrap;
  text-align: center;
  width: 110%;
}
.highlight {
  color: var(--black-color);
  font-weight: 600;
}
/* Mise en page de la grille d'images */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
  gap: 10px; /* Espace entre les images */
}

/* Style de chaque carte d'image */
.sector__card {
  position: relative;
  overflow: hidden;
  cursor: pointer; /* Curseur "main" au survol */
}

.sector__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Style de la superposition qui apparaît au survol */
.sector__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 21, 0) 0%,
        rgba(10, 15, 21, 0.5) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1; /* Se place juste au-dessus de l'image */

    /* État par défaut : invisible et en haut */
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
                transform 2s cubic-bezier(0.25, 1, 0.5, 1);
}
/* .sector__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 21, 0) 0%,
    rgba(10, 15, 21, 0.5) 50%,
    rgba(10, 15, 21, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--white-color);
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
} */

.sector__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 45px;
    color: var(--white-color);
    z-index: 2; 
    opacity: 0;
    transition: opacity 0.8s ease-in-out;  
}

/* --- ANIMATION AU SURVOL --- */

.sector__card:hover::before {
    opacity: 1;
    transform: translateY(0); 
}

.sector__card:hover .sector__card-overlay {
    opacity: 1; 
}
.sector__card-overlay h4 {
  font-family: "Marcellus", serif;
  font-size: 23px;
  font-weight: normal;
  letter-spacing: -0.88px;
  color: var(--white-color);
  filter: contrast(0.85);
  margin-top: 1.5em;
  margin-bottom: 0.2rem;
}
/* La classe .arrow-icon est réutilisée de la section précédente */
.sectors .arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0.2px solid var(--white-color);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: rotate(0deg);
}

/* Conteneur du bouton "En savoir plus" */
.sectors__button-container {
  margin-top: 3rem;
}

/* ==================== CTA ==================== */
.cta {
  /* Pensez à remplacer par le chemin de votre nouvelle image */
  background-image: url("../images/cta/cta-1.webp");
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  margin-bottom: 50px;
}

.cta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; 
  text-align: center;
  padding-top: 50px;
  max-width: 684px;
  margin-right: 100px;
  
}

.cta__title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -1.44px;
  color: var(--white-color);
  margin-bottom: 36px;
  font-family: "Sora", sans-serif;
  font-weight: 500;

}


.cta__description {
  color: #ffffff; 
  font-size: 18px;
  letter-spacing: -0.36px;
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  margin-bottom: 40px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: url("../images/footer/bg-footer.webp");
  background-size: inherit;
  background-position: left;
  color: var(--light-grey-color);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

/* Mise en page principale en 2 blocs (gauche/droit) */
.footer__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Style pour les blocs gauche et droit */
.footer__left {
  flex: 1.5;
  max-width: 590px;
}

.footer__right {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Les colonnes internes du bloc droit */
  gap: 30px;
}

/* Colonne 1: Marque & Réseaux Sociaux */
.footer__logo img {
  height: 40px;
  margin-bottom: 40px;
}

.footer__description {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 23px;
  font-weight: 200;
  color: #fff;
  letter-spacing: -0.34px;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #484848;
  border: 1px solid var(--dark-grey-color);
  border-radius: 50%;
  color: var(--white-color);
  transition: background-color 0.3s, border-color 0.3s;
}

.footer__social-link:hover {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--black-color);
}

/* Titres des colonnes */
.footer__title {
  font-family: "Sora", sans-serif;
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: var(--mb-3);
}

/* Newsletter (dans le bloc de gauche) */
.footer__newsletter {
  margin-top: 2.5rem;
}

.footer__form {
  display: flex;
  background-color: var(--white-color);
  padding: 0.5rem;
  border-radius: 4px;
}

.footer__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.footer__input-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--dark-grey-color);
}

.footer__input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  padding-left: 2.5rem;
  color: var(--black-color);
}

.footer__button {
  background-color: #0a0f15;
  color: var(--white-color);
  border: 1px solid var(--black-color);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}

/* Liens & Contact (dans le bloc de droite) */
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: #a2aab0;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 200;
}

.footer__address {
  font-style: normal;
  font-size: 18px;
}

/* NOUVEAU: Style pour la case à cocher */
.footer__checkbox {
  /* Fait en sorte que l'élément s'étende sur les 2 colonnes de la grille parente (.footer__right) */
  grid-column: 1 / -1;
  margin-top: 10px; /* Espace au-dessus */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 20px;
}
.footer__checkbox input[type="checkbox"] {
  position: relative;
  transform: scale(1.2);
  width: 15px;
  height: 15px;
  cursor: pointer;
  border: 1px solid var(--dark-grey-color);
  -webkit-appearance: none;
  border-radius: 4px;
  background: #323232 !important;
}

.footer__checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 2px;
  height: 4px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.footer__checkbox label {
  font-weight: 200;
  font-size: 16px;
  color: #fff;
}

/* Barre de copyright */
.footer__bottom {
  border-top: 1px solid var(--dark-grey-color);
  text-align: center;
  padding: 1.5rem 1.5rem;
  font-size: 14px;
  font-weight: 200;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   PAGE: THE TOUCHÉ WAY
   ========================================================================== */

.page-hero {
  background-repeat: no-repeat;
  background-position: center; /* Positionne l'image au centre */
  background-size: cover;
  color: var(--white-color);
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  min-height: 635px;
}

.hero--touche-way {
  background-image: url("../images/touche-way/hero-touche-way.webp");
}

.hero-way__container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.hero-way__text-content {
  position: absolute;
  top: 350px;
  left: 25px;
  bottom: 0;
  z-index: 2;
  max-width: 60%;
}

.hero-way__title {
  font-family: "Marcellus", serif;
  font-size: 95px;
  letter-spacing: -1.9px;
  color: #fff;
  font-weight: 200;
}

.hero-way__description {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: -0.8px;
  color: #fffffff0;
  margin-bottom: 0;
}

.hero-way__icon {
  position: absolute;
  top: 135px;
  right: 50px;
  z-index: 2;
}

/* On réutilise l'animation de rotation de la page d'accueil */
.hero-way__icon img {
  width: 113px;
  height: 107px;
  animation: rotate-hero-icon 15s linear infinite;
}

/* ==========================================================================
   PAGE: THE TOUCHÉ WAY - SECTION MANIFESTO
   ========================================================================== */

.manifesto-content {
  background-color: var(--white-color);
  padding: 6rem 0;
}
.manifesto-content .intro__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--mb-4);
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}

.manifesto-content__title {
  text-align: center;
  font-size: 50px;
  letter-spacing: -1.04px;
  line-height: 55px;
}

.manifesto-content__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Colonne gauche plus petite que la droite */
  align-items: flex-start; /* Aligne les éléments en haut */
  gap: 3rem;
  margin-top: 80px;
}

.manifesto-content__text h3 {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -1.28px;
}

.manifesto-content__text p {
  color: #282828;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: -0.34px;
  margin-bottom: 30px;
}

/* Style pour le bloc avec le crochet décoratif */
.text-block {
  position: relative;
}

.manifesto-content__image {
  position: relative;
}

.manifesto-content__image img {
  width: 100%;
  margin-top: -55px;
  height: auto;
  display: block;
}
.manifesto-content__image::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0;
  width: 50px;
  height: 50px;
  border-top: 5px solid #000000;
  border-right: 5px solid #000000;
}

.manifesto-content__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   PAGE: THE TOUCHÉ WAY - SECTION PROCESS
   ========================================================================== */
.process-way {

  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.process-way .process-content {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem; 
  top: 0; 
}
.process-way .intro__breadcrumb {
  justify-content: flex-start;
  margin-bottom: var(--mb-2);
  gap: 20px;
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}

.process-content__title {
  text-align: left;
  font-size: 56px;
}

/* Grille des cartes du parcours */
.journey__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  position: relative;
  z-index: 2;
}

.journey__card {
  position: relative;
  height: 400px;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.journey__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    to top,
    rgba(10, 15, 21, 0.75) 20%, 
    rgba(10, 15, 21, 0) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.journey__card.white::after {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,     
    rgba(255, 255, 255, 0.95) 100% 
  );

}
.journey__card.white .journey__content h3,
.journey__card.white .journey__content p {
    color: var(--black-color); /* Le texte devient noir */
}
.journey__card.white .journey__content p {
    color: var(--dark-grey-color); /* Un gris foncé pour le paragraphe */
}
.journey__card:hover::after {
    opacity: 1; /* L'ombre (noire ou blanche) apparaît au survol */
}
/* Lettres SVG (T, O, U, C, H, É) */
.journey__letter {
  position: absolute;
  left: -20px;
  top: 250px;
  z-index: 3;
  opacity: 0.8;
  transform: translateY(-50%) scale(1);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.letter {
  height: 700px !important;
}
.journey__letter img {
  height: 400px;
  width: auto;
  filter: brightness(1) invert(0);
}

.journey__card.white .journey__letter img {
    filter: invert(0);
}

.journey__content {
  position: relative;
  flex-grow: 1;
  text-align: left;
  z-index: 4;
  color: var(--white-color);
  max-width: 47%;
  opacity: 0;
  margin-top: 70px;
  transform: scale(1);
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.2s;
  left: 195px;
  cursor: default;
}

/* --- ANIMATION AU SURVOL --- */

.journey__card:hover .journey__letter {
  opacity: 0.1; 
  transform: translateY(-50%) scale(0.95); /
}

.journey__card:hover .journey__content {
  opacity: 1; 
  transform: scale(1.05); 
}

.journey__card:hover::after {
  opacity: 1; /
}

.journey__content h3 {
  font-family: "Marcellus", serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white-color);
}

.journey__content p {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.6px;
  color: var(--white-color);
  font-weight: 200;
}

/* Animation au survol d'une carte */
.journey__card:hover .journey__letter {
  opacity: 0.1; /* Devient très translucide */
}

.journey__card:hover .journey__content {
  transform: translateX(0); /* Le texte glisse pour apparaître */
  opacity: 1;
}

/* Ajout d'une superposition sombre au survol pour améliorer la lisibilité */
.journey__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1; /* Sous les lettres et le texte */
}

.create h3,
.create p {
  color: #000000;
}

/* ==========================================================================
   PAGE: EXPERTISES - DÉTAILS DE LA SECTION
   ========================================================================== */
.hero--expertises {
  background-image: url("../images/expertises/hero-expertises.webp");
}

.expertise-details .intro__breadcrumb {
  justify-content: flex-start;
  margin-bottom: var(--mb-2);
  gap: 20px;
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}
.expertise-details {
  padding: 6rem 0;
}

.expertise-details .section__header--left {
  margin-bottom: 4rem; 
  top: 0; 
}

.expertise-details__title {
  font-family: "Marcellus", serif;
  font-size: 56px;
  font-weight: normal;
}
.expertise-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
}


.expertise-details__services {
  position: relative;
  padding-left: 3rem; 
  display: flex;
  flex-direction: column;
  gap: 2.5rem; 
}
.expertise-details__image-collage {
  position: relative;
}
.expertise-details__image-collage img {
  width: 100%;
  margin-top: -55px;
  padding-right: 50px;
  height: auto;
  display: block;
}
/* Crochet décoratif (réutilisation du style du manifeste) */
.expertise-details__image-collage::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0;
  width: 50px;
  height: 50px;
  border-top: 5px solid #000000;
  border-right: 5px solid #000000;
}

.service-item h3 {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: var(--mb-1);
  letter-spacing: -1.2px;
}

.service-item p {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  color: #282828;
  font-weight: 200;
  letter-spacing: -0.34px;
  line-height: 24px;
}

.autres-expertises__description {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #282828;
  margin-top: var(--mb-1);
  margin-bottom: 80px;
  font-weight: 200;
}

/* ==========================================================================
   PAGE: SECTEURS - LISTE DES SECTEURS
   ========================================================================== */

.hero--secteurs {
  background-image: url("../images/secteurs/hero-secteurs.webp");
}
.sector-list {
  padding-top: 0; 
}

.sector-list .section__header--left {
  top: 100px; 
  text-align: center;
}

.sector-list__container {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 3px; 
}
.sector-list .section__header--left .section__description {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: -30px;
  color: #282828;
  letter-spacing: -0.36px;
  line-height: 24px;
}
.sector-list__card {
  position: relative;
 
}

.sector-list__image-bg {
  display: block;
  width: 100%;
  height: auto;
}

/* Titre visible par défaut */
.sector-list__title-default {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 2;
  font-family: "Marcellus", serif; 
  font-size: 50px;
  line-height: 48px;
  color: var(--white-color);
  letter-spacing: -2px;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sector-list__card:hover .sector-list__title-default {
  opacity: 0;
 
}

.sector-list__content-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(
    to bottom,
  rgba(0, 0, 0, 0.5) 0%,
  rgba(0, 0, 0, 0.5) 100%   
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  cursor: default;
  opacity: 0; 
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.sector-list__card:hover .sector-list__content-hover {
  opacity: 1; 
}

.sector-list__title-hover {
  font-family: "Marcellus", serif; 
  font-size: 1.75rem; 
  color: var(--white-color);
  margin-bottom: var(--mb-2);
  font-weight: 400;
}

.sector-list__description {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--white-color);
  max-width: 60%;
  font-weight: 200;
}

.methodologie {
  position: relative; 
  overflow: hidden; 
}
.methodologie .intro__breadcrumb {
  justify-content: flex-start;
  margin-bottom: var(--mb-2);
  gap: 20px;
  font-family: "Sora", sans-serif;
  color: var(--dark-grey-color);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.8px;
}

.methodologie .section__bg-text {
  display: block;
  position: absolute;
  z-index: 1;
  top: 4rem;
  left: 0;
  transform: translateX(-11%);
  font-size: 20vw;
  font-family: "Marcellus", serif;
  color: rgba(10, 15, 21, 0.05);
  user-select: none;
  white-space: nowrap;
  text-align: center;
  width: 110%;
}

.methodologie .section__header--left {
  top: 240px; 
  position: relative;
  z-index: 2; 
}
.methodologie .section__header--left .section__description {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: -30px;
  color: #282828;
  letter-spacing: -0.36px;
  line-height: 24px;
} 
.principles {
  padding: 6rem 0;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: start;
}

.principles__header {
  position: relative;
  margin-bottom: 1.5rem;
}

.principles__header h2 {
  font-family: "Sora", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: -1.05px;
}

.principles__image-collage {
  position: relative;
}
.principles__image-collage img {
  width: 100%;
  margin-top: -70px;
  padding-right: 30px;
  height: auto;
  display: block;
}

/* On réutilise le style du crochet décoratif */
.principles__image-collage::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0;
  width: 50px;
  height: 50px;
  border-top: 5px solid #000000;
  border-right: 5px solid #000000;
}

/* Style de chaque élément de l'accordéon */
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion-item:first-of-type {
  border-top: 1px solid #e0e0e0;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: 100%;
}

.accordion-number {
  font-family: "Marcellus", serif;
  color: #0a0f15;
}

.accordion-title {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 200;
  color: #0a0f15;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: -0.48px;
}

.accordion-arrow {
  transition: transform 0.7s ease-in-out;
  height: 30px;
  width: 30px;
  flex-shrink: 0;
}

.accordion-arrow i {
  font-size: 24px;
  color: #0a0f15; 
}

.accordion-content {
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.7s ease-in-out, padding-bottom 0.7s ease-in-out;
}

.accordion-content p {
  color: #0a0f15;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: -0.36px;
  padding: 0 16px 0 50px; 
}


.accordion-item:hover .accordion-content {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.accordion-item:hover .accordion-arrow {
  transform: rotate(-45deg);
}

/* ==========================================================================
   PAGE: TEAM - LISTE DES MEMBRES DE L'ÉQUIPE
   ========================================================================== */
.hero--team {
  background-image: url("../images/team/hero-team.webp");
}

.hero--team .hero-way__title {
  font-size: 90px;
  letter-spacing: -1.8px;
}

.team-intro {
  position: relative;
  padding: 8rem 0;
  background-image: url("../images/team/1.webp");
  background-size: cover;
  background-position: center center;
  color: var(--white-color);
  right: 100px;
}

.team-intro.section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 0;
  padding-right: 0;
  margin-top: 100px;
}
.team-intro__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 5rem;
  top: 70px;
  margin-top: 80px;
  margin-left: 100px;
}
.team-intro .container {
  max-width: 1120px;
}
/* Adaptation du fil d'ariane pour le fond sombre */
.team-intro .intro__breadcrumb {
  justify-content: flex-start;
  margin-bottom: var(--mb-3);
  gap: 20px;
  font-family: "Sora", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  letter-spacing: -0.8px;
}

.team-intro__title {
  font-family: "Marcellus", serif;
  font-size: 56px;
  color: var(--white-color);
  margin-bottom: 4px;
  font-style: normal;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: -1.32px;
  
}

.team-intro__description {
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-weight: 200;
  line-height: 28px;
  letter-spacing: -0.36px;
  font-size: 18px;
}

/* ==========================================================================
   PAGE: TEAM - GRILLE DE L'ÉQUIPE
   ========================================================================== */

.team-grid {
  margin-top: 10px;
  padding: 6rem 0;
  background-color: var(--white-color);
}

.team-grid__container {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 50px 40px; 
  max-width: 1100px; 
  margin: 0 auto; 
}
.team-card {
  flex: 0 1 calc(50% - 40px);
}
.team-card__content {
  border-top: 1px solid rgba(0, 0, 0, 0.39);
  width: 100%;
}
.team-card__image {
  margin-bottom: 1.5rem;
  position: relative;
  cursor: pointer;
}

.team-card__image img {
  width: 100%;
  display: block;
}

.team-card__role {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Sora", sans-serif;
  margin: 20px 0 5px 0;
  color: #090909;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.role-icon-img {
  width: 16px;
  height: 16px;
}

.team-card__name {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: #080808;
  font-size: 28px;
  font-style: normal;
  line-height: 30px; /* 80% */
  letter-spacing: -1.4px;
}

/* ==========================================================================
   PAGE: TEAM - MODALE (POPUP)
   ========================================================================== */

/* Arrière-plan grisé */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* La modale elle-même */
.team-modal {
    position: fixed; /* CHANGEMENT CLÉ : position par rapport à la fenêtre */
    top: 45%; /* On la place à 50% du haut de la fenêtre */
    left: 13.3%; /* On centre par défaut horizontalement */
    transform: translate(-50%, -50%) scale(0.95); /* On la centre parfaitement avec transform */
    width: 100%;
    max-width: 1060px; 
    background-image: url('../images/team/pop-up-backround.webp'); 
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.team-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1); 
}
.modal-image {
    flex: 0 0 40%; /* L'image prend 30% de la largeur */
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-content {
    flex: 1; 
    padding: 5rem 4rem;
}
.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.modal-header-content {
    display: flex;
    flex-direction: column;
}
.modal-header img {
    width: 60px;
    height: 60px;
}
.modal-name {
    font-family: var(--tertiary-font);
    font-size: 2rem;
    font-weight: 700;
    color: #090909;
}
.modal-role {
    font-family: var(--tertiary-font);
    font-size: 1rem;
    font-weight: 200;
    color: #090909;

}
.modal-details {
    list-style: none;
    padding-left: 50px;
    font-family: "DM Sans", sans-serif;
    color: #282828;
    font-size: 23px;
    line-height: 26px;
    letter-spacing: -0.6px;
    font-weight: 200;
}
.modal-details li {
    position: relative;
    margin-bottom: 1rem;
}
.modal-details li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    font-size: 1.5rem;
    line-height: 1;
}

/* Bloque le défilement de la page lorsque la classe est appliquée au body */
body.modal-open {
    overflow: hidden;
}
/* --- Responsive pour les petits écrans --- */
@media screen and (max-width: 768px) {
  .team-grid__container {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PAGE: CASE STUDIES - CONTENU
   ========================================================================== */
   
.hero--case-studies {
  background-image: url("../images/case-studies/hero-case.webp"); /* <<< CHEMIN VERS L'IMAGE DE LA STATUE VR */
}

/* .case-study-content .container {
  max-width: 1120px;
} */
.case-study-content.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
/* --- Section Introduction --- */
.case-study__intro {
  text-align: center;

  margin: 0 auto 2rem auto;
}
.case-study__intro .intro__breadcrumb {
  justify-content: center; /* Centre le fil d'ariane */
}

.case-study__title {
  font-family: "Marcellus", serif;
  font-size: 47px;
  line-height: 48px;
  letter-spacing: -1.84px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.case-study__subtitle {
  font-size: 26px;
  color: var(--dark-grey-color);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -1.04px;
}

/* --- Section Challenge --- */
.case-study__challenge {
  text-align: center;
  margin: 0 auto 3rem auto;
}
.challenge__icon {
  width: 60px;
  margin: 0 auto 1rem auto;
}

.challenge__icon img {
  width: 41px; 
  height: 41px;
}
.case-study__challenge h2 {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  letter-spacing: -1.6px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.case-study__challenge p {
  font-size: 18px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  letter-spacing: -0.36px;
}

/* --- Grille Solution --- */
.case-study__solution-grid {
  display: flex;
  align-items: stretch;
  margin-bottom: 5rem;
  gap: 0;
}


.solution-swiper {
  position: relative;
  flex: 2;
  width: 685px;
  aspect-ratio: 16 / 10;
  overflow: hidden; 
}

.solution-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Centre l'image dans la slide */
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Contenu texte de la solution */
.solution__text-content {
    background: linear-gradient(90deg, #282828 0%, #0a0f15 100%);
    flex: 2; 
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .case-study-2 {
  padding: 9rem 6rem 9rem 6rem !important;
} */

.solution__text-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 50px;
  color: var(--white-color);
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: var(--mb-3);
}

.solution__text-content p {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 22px;
  margin-bottom: 10px;
}
/* NOUVEAU STYLE POUR LA LISTE */
.solution__text-content ul {
  list-style-type: none; 
  padding-left: 0;
}

.solution__text-content li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 10px 0;
  color: #fff;
  background: linear-gradient(
    to right,
    transparent 0 2rem,
    rgba(255,255,255,0.26) 2rem 100% 
  );
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 1px;
}

.solution__text-content span {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #ffffff;
  font-weight: 200;
  letter-spacing: -0.32px;
  line-height: 24px;
  padding-top: 10px;
}
/* Style de l'icône SVG utilisée comme puce */
.solution-list-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0; /* Empêche l'icône de se déformer */
  margin-top: 5px; /* Petit ajustement pour un alignement vertical parfait */
}

/* --- Section Résultats --- */
.case-study__results {
  text-align: center;
  margin: 0 auto;
}

.results__icon {
  width: 40px;
  margin: 0 auto 1.5rem auto;
}

.case-study__results h2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1.6px;
  margin-bottom: 2rem;
}

.results__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
}

.result-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.49);
  border-radius: 4px;
  padding: 100px 40px 100px 40px;
  text-align: center;
  flex: 1 1 280px;
  position: relative; 
  margin-top: 20px;
}

.result-card__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    width: 40px;
    height: 40px;
}

.results__icon img,
.result-card__icon img {
  width: 40px;
  height: 40px;
  display: inline-block;
  object-fit: contain;
}
.result-card p {
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 24px;
  color: #282828;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

/* ==========================================================================
   PAGE: CASE STUDIES - GALERIE PROJETS (Structure Statique)
   ========================================================================== */

.project-gallery {
    padding-top: 0;
    margin-top: 100px;
    margin-bottom: 5rem;
}

/* Style de base pour TOUTES les galeries */
.project-gallery__set {
    display: grid;
    gap: 3px; /* Augmenté pour un meilleur espacement */
    margin-bottom: 3rem;
}
.project-gallery__set img {
    width: 100%;
    height: 100%; /* Permet à l'image de remplir son conteneur de grille */
    object-fit: cover;
    display: block;
}

/* MODIFICATEUR pour la mise en page à 4 images (2x2) */
.project-gallery__set--layout-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* MODIFICATEUR pour la mise en page à 3 images (2 en haut, 1 en bas) */
.project-gallery__set--layout-3 {
    grid-template-columns: repeat(2, 1fr);
}
.project-gallery__set--layout-3 .span-two {
    grid-column: 1 / -1; /* Fait en sorte que l'image s'étende sur les deux colonnes */
}

/* --- Navigation des projets --- */
.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.project-nav__btn {
  background: none;
  border: none;
  font-family: "Sora", sans-serif;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -1.04px;
  color: var(--black-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 35px;
  transition: color 0.3s;
}

.project-nav__btn:hover {
  color: var(--dark-grey-color);
}
/* ==========================================================================
   PAGE: CASE STUDIES - AUTRES PROJETS
   ========================================================================== */

.other-projects .container {
  padding: 0 24px;
}
.other-projects .section__header--left {
  text-align: left;
  margin-top: 100px;
  position: relative;
  z-index: 2;
  margin-bottom: 0; /* Espace sous l'en-tête */
}

.other-projects__scroller {
  width: 100%;
  overflow-x: scroll;
  cursor: grab;
  user-select: none;
  padding: 1rem 0 2rem 0;
  margin-top: -85px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.other-projects__scroller::-webkit-scrollbar {
  display: none;
}
.other-projects__scroller.active {
  cursor: grabbing;
}

.other-projects__grid {
  display: flex;
  gap: 8px;
}

.other-projects__card {
  position: relative;
  display: block;
  width: 500px;
  height: 500px;
  flex-shrink: 0;

  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  text-decoration: none;
  transition: background-size 0.8s ease-in-out;
}

/* Superposition sombre et animation */
.other-projects__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 15, 21, 0.6);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.other-projects__card:hover::before {
  opacity: 1; /* L'ombre s'assombrit pour rendre le texte plus visible */
}

/* Contenu textuel */
.other-projects__card .card-content {
  position: absolute;
  bottom: 50px;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  opacity: 0.8;
  transform: scale(0.95);
  transition: opacity 0.6s ease-in-out 0.2s, transform 0.6s ease-in-out 0.2s;
}

.other-projects__card:hover .card-content {
  transform: scale(1.05);
  opacity: 1;
}

.card-category {
  display: block;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.6px;
  font-weight: 200;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.card-title {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.94px;
}

/* ==========================================================================
   PAGE: COLLABORATION - FORMULAIRE
   ========================================================================== */
.hero--collaboration {
  background-image: url("../images/collaboration/hero-collaboration.webp");
}

.collaboration-form__grid {
  display: flex;
  min-height: 100vh;
  margin: 1px 0;
}

.collaboration-form__image {
  flex: 2;
  min-width: 0;
}

.collaboration-form__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collaboration-form__content {
  flex: 2; /* Le formulaire prend 2 parts, il sera donc plus large */
  background: linear-gradient(108deg, #212121 -4.14%, #0a0f15 39.07%);
  color: var(--white-color);
  padding: 6rem 10rem; /* Espacement intérieur généreux */
  /* --- AJOUTS POUR LE CENTRAGE VERTICAL --- */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collaboration-form .intro__breadcrumb {
  margin-bottom: 5px; /* Réduit l'espace sous le fil d'ariane */
}

/* Adaptation du fil d'ariane pour le fond sombre */
.collaboration-form__content .intro__breadcrumb {
  color: #fff;
  justify-content: flex-start; /* Aligné à gauche */
}

.collaboration-form__title {
  font-family: "Marcellus", serif;
  font-size: 50px;
  color: var(--white-color);
  margin-bottom: 30px;
}

/* Style du formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Espace entre chaque champ */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea, .iti input {
  background-color: rgba(
    40,
    40,
    40,
    0.56
  ); /* Fond gris très foncé pour les champs */
  padding: 1rem;
  font-size: 18px;
  letter-spacing: -0.36px;
  font-weight: 200;
  color: white;
  font-family: "DM Sans", sans-serif;
  border: none;
  border-radius: 10px;
  width: 85%;
  resize: vertical; /* Permet de redimensionner verticalement les textarea */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6c6c6c;
}

/* Style spécifique pour le champ téléphone */
.phone-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #1c1c1c;
  border-radius: 4px;
  padding: 0 1rem;
}
.phone-input input {
  border: none;
  padding: 1rem 0;
  flex-grow: 1; 
}

.iti {
  display: block !important; 
}

/* Style du bouton */
.contact-form .button {
  align-self: flex-start; /* Aligne le bouton à gauche */
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Supprime l'encadré de focus sur tous les champs */
input:focus,
textarea:focus,
button:focus {
  outline: none;
}

/* ==========================================================================
   CORRECTIONS POUR LA BIBLIOTHÈQUE intl-tel-input
   ========================================================================== */

/* Force le texte des pays en noir dans la liste déroulante */
.iti__country-list .iti__country-name,
.iti__country-list .iti__dial-code {
  color: var(--black-color);
}

/* Améliore la lisibilité de l'élément survolé/sélectionné */
.iti__country-list .iti__highlight {
  background-color: #f0f0f0; /* Fond gris clair au lieu de blanc */
}

/* CTA */
.cta-way {
  /* Pensez à remplacer par le chemin de votre nouvelle image */
  background-image: url("../images/cta/cta-3.webp");
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  margin-bottom: 50px;
  margin-top: 50px;
}

.cta-expertises {
  /* Pensez à remplacer par le chemin de votre nouvelle image */
  background-image: url("../images/cta/cta-2.webp");
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  margin-bottom: 50px;
  margin-top: 50px;
}

.cta-secteurs {
  /* Pensez à remplacer par le chemin de votre nouvelle image */
  background-image: url("../images/cta/cta-4.webp");
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  margin-bottom: 50px;
  margin-top: 50px;
}

br .separator {
  display: block;
}

.mb-100 {
  margin-bottom: 100px !important;
}








