/* ========================================
   IMPORTS ET CONFIGURATION GLOBALE
   ======================================== */

/* Import de la police Inter depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Outil de debug - décommenter pour visualiser les boîtes */
/* * {
  outline: 1px solid red;
} */

/* Reset des marges par défaut du navigateur */
html, body {
  margin: 0;
  padding: 0;
}

/* Police globale par défaut */
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ========================================
   VARIABLES CSS GLOBALES
   ======================================== */
:root{
  --blue:#2a6ab0;       /* Bleu 2MF */
  --orange:#f08821;     /* Orange 2MF */
  /* Topbar background : version foncée dérivée de --blue */
  --topbar-bg:#22558d; /* dérivé plus foncé de #2a6ab0 */
  /*--topbar-fg:#ffffff;  /* Texte blanc */
  --topbar-fg:#ffffff;  /* Texte blanc pour contraste */
  --topbar-height:24px;
  --navbar-height:80px;         /* hauteur de la navbar */
  --container-max:1200px;       /* largeur max du contenu */
}

/* ========================================
   ANIMATIONS SWIPER HERO - Style épuré
   ======================================== */

/* Animation subtile pour la puce active */
.hero-swiper .swiper-pagination-bullet-active {
  animation: none;
}

/* Suppression du halo lumineux pour un style plus épuré */
.hero-swiper .swiper-pagination-bullet-active::after {
  display: none;
}

/* ========================================
   PUCES DE PAGINATION SWIPER - Style épuré
   ======================================== */
.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: rgba(255,255,255,0.5);
  border: none;
  box-shadow: none;
  opacity: 1;
  margin: 0 5px !important;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  position: relative;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 30px;
  transform: none;
  box-shadow: 0 2px 10px rgba(240,136,33,0.4);
}
.hero-swiper .swiper-pagination-bullet:hover {
  background: rgba(255,255,255,0.8);
  transform: none;
}
.hero-swiper .swiper-pagination-bullet-active:hover {
  background: var(--orange);
}

/* Swiper navigation buttons - Style discret et élégant */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 0;
  background: rgba(42, 106, 176, 0.7);
  color: #fff;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  opacity: 0.8;
  border: none;
  top: 50%;
  transform: translateY(-50%);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: none;
  transform: translateY(-50%);
  opacity: 1;
}
.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
  font-size: 1.1rem;
  font-weight: 700;
}


/* ========================================
   TOPBAR - Barre supérieure d'informations
   Affiche les informations de contact en haut de page
   ======================================== */
.topbar{
  background:var(--topbar-bg);     /* couleur définie dans les variables */
  color:var(--topbar-fg);
  font-size:.9rem; /* légèrement augmenté */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  width:100%;
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:0.75rem; /* espace entre les groupes */
  padding:0 1rem;
  height:var(--topbar-height);
  box-sizing:border-box;
  line-height:var(--topbar-height);
  max-width:1200px; /* centre le conteneur */
  margin:0 auto;
}

body{
  padding-top:calc(var(--topbar-height) + var(--navbar-height) + 8px);
}

.topbar__left,
.topbar__right{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:1.5rem; /* espace entre les groupes d'éléments pour détacher "Nos locaux" */
}

.topbar__link{
  color:var(--topbar-fg);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:0.85rem; /* légèrement augmenté */
  font-weight:700; /* plus gras */
  opacity:0.98; /* plus lisible */
}
.topbar__link:hover{ opacity:1; text-decoration:underline; }

.topbar__link i.bi-geo-alt {
  color: #ff9500;             /* Orange plus intense et enfoncé */
  font-size: 1.05rem;         /* légèrement plus grand */
  font-weight: 900;           /* poids maximum pour épaisseur */
  -webkit-text-stroke: 1.2px #ff7700; /* trait encore plus épais */
  paint-order: stroke fill;   /* assure l'ordre de rendu */
}
.topbar__link:hover i.bi-geo-alt {
  color: #ffb84d;             /* Orange clair au survol */
  -webkit-text-stroke: 1.2px #ff9500;
}

.topbar__icon{
  color:var(--topbar-fg);
  text-decoration:none;
  font-size:0.9rem; /* légèrement augmenté */
  font-weight:700; /* plus gras */
  opacity:0.98;
}
.topbar__icon:hover{ opacity:1; }

/* Icônes à l'intérieur des liens (ex: <i class="bi ...">) */
.topbar__link i{
  font-size:0.9rem; /* assure cohérence icône/texte */
}

/* Espacement spécifique pour les icônes sociaux */
.topbar__socials a{
  margin-left:0.9rem;
  display:inline-flex;
  align-items:center;
}
.topbar__icon:hover{ opacity:1; }

.topbar .sep{ opacity:.7; margin:0 .25rem; }

/* Version responsive compacte */
@media (max-width:576px){
  .topbar__inner{ flex-direction:column; height:auto; padding:.3rem .5rem; }
  .topbar__left, .topbar__right{ justify-content:center; gap:.5rem; }
}

/* ===== FIN TOPBAR ===== */

/* ========================================
   NAVBAR - Barre de navigation principale
   Navigation sticky avec logo et menu - Design épuré
   ======================================== */
.navbar{
  position: fixed;
  top: calc(var(--topbar-height) + 0px);
  left: 0; right: 0;
  height: var(--navbar-height);
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 990;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.navbar__inner{
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
  width: 100%;
}

/* Logo */
.navbar__logo{ height: 70px; width:auto; display:block; margin-left: 0px; }

/* Menu desktop */
.navbar__menu{
  margin: 0 0 0 auto; padding: 0;
  list-style: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.navbar__menu li{ display:flex; align-items:center; }

/* Séparateur discret entre les éléments du menu */
.navbar__menu li + li::before{
  content: '';
  display: inline-block;
  width: 1px;
  height: 18px;
  margin: 0 8px;
  background: rgba(42,106,176,0.15);
  opacity: 0.8;
}
@media (max-width: 768px){
  .navbar__menu li + li::before{ display:none; }
}

/* Liens de navigation - Style épuré */
.navbar__link{
  text-decoration: none;
  color: #1a365d;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
  letter-spacing: 0.02em;
}

.navbar__link::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.navbar__link:hover{
  color: var(--blue);
  background: transparent;
}

.navbar__link:hover::after{
  width: 100%;
}

.navbar__link.is-active{
  color: var(--blue);
  font-weight: 700;
}

.navbar__link.is-active::after{
  width: 100%;
  background: var(--orange);
}

/* Accessibilité focus */
.navbar__link:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Burger (mobile) */
.navbar__toggle{
  margin-left: auto;
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--blue);
  transition: color 0.3s ease;
}

.navbar__toggle:hover{
  color: var(--orange);
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .navbar__brand-text{ display:none; }
  .navbar__logo{ height: 60px; margin-left: 0; }
}
@media (max-width: 768px){
  .navbar__toggle{ display:block; }
  .navbar__logo{ height: 50px; margin-left: 0; }
  .navbar__menu{
    position: absolute;
    top: var(--navbar-height);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
  }
  .navbar__menu.is-open{ display:flex; }
  .navbar__link{ 
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .navbar__link::after{
    bottom: -1px;
    height: 2px;
  }
  .navbar__link:last-child{
    border-bottom: none;
  }
}
@media (max-width: 576px){
  .navbar__logo{ height: 45px; }
}

/* ========================================
   HERO CAROUSEL - Carrousel d'images en tête de page
   Utilise Swiper.js pour les slides
   ======================================== */
.hero-carousel {
  margin: 0;
  padding: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
}
.hero-slides { display: block; }
/* Slide individuel du carrousel */
.hero-slide {
  width: 100vw;
  height: 90vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

/* Overlay semi-transparent sur le slide pour améliorer la lisibilité du texte */
.hero-slide__overlay {
  position: absolute; inset: 0; z-index:1;
  background: linear-gradient(
    135deg,
    rgba(42, 106, 176, 0.45) 0%,
    rgba(30, 90, 143, 0.35) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
/* Conteneur du contenu texte du hero (centré verticalement et horizontalement) */
.hero-slide__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(1100px, 90vw);     /* Largeur maximale lisible */
  text-align: left;
  padding: 0 1rem;              /* Marges latérales */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;                    /* Espacement entre les éléments */
  opacity: 1;
  transition: opacity .6s ease, transform .6s ease;
}

/* Wrapper titre + sous-titre sur une ligne */
.hero-title-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* ========================================
   TITRE PRINCIPAL DU HERO
   Grande taille, fond semi-transparent pour lisibilité
   ======================================== */
.hero-title{
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
  line-height: 1.15;
  font-family: 'Inter', sans-serif;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Subtitle - Elegant & Clear - Inline with Orange Accent */
.hero-subtitle{
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Accent orange à gauche */
  padding: 0.5rem 1rem;
  border-left: 3px solid var(--orange);
  background: linear-gradient(90deg, rgba(240, 136, 33, 0.2) 0%, transparent 100%);
}

/* CTA Button - Style épuré */
.hero-cta { 
  margin: 0;
  display: flex;
  justify-content: flex-start;
}
.hero-cta .btn{ 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(240,136,33,0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-cta .btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: var(--blue);
  transition: width 0.3s ease;
  z-index: -1;
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,136,33,0.45);
  background: var(--blue);
}

.hero-cta .btn:hover::before { 
  width: 100%; 
}

.hero-cta .btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(240,136,33,0.3);
}

@media (max-width:768px){
  .hero-carousel {
    height: 70vh;
    min-height: 400px;
  }
  .hero-slide{ 
    height: 70vh;
    min-height: 400px; 
  }
  .hero-slide__content{ 
    padding: 0 1.5rem; 
    width: min(100%, 95vw);
  }
  .hero-title { 
    font-size: clamp(1.8rem, 5vw, 2.8rem); 
    margin-bottom: 0.6rem; 
  }
  .hero-subtitle { 
    font-size: clamp(0.95rem, 2.5vw, 1.2rem); 
    margin-bottom: 1.2rem; 
  }
  .hero-cta .btn { 
    padding: 0.85rem 2rem; 
    font-size: 0.95rem; 
  }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 38px;
    height: 38px;
  }
  .hero-swiper .swiper-button-next:after,
  .hero-swiper .swiper-button-prev:after {
    font-size: 0.9rem;
  }
  .hero-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

@media (max-width:576px){
  .hero-carousel {
    height: 60vh;
    min-height: 350px;
  }
  .hero-slide{ 
    height: 60vh;
    min-height: 350px; 
  }
  .hero-slide__content{ 
    padding: 0 1rem; 
  }
  .hero-title { 
    font-size: clamp(1.5rem, 6vw, 2rem); 
    margin-bottom: 0; 
  }
  .hero-subtitle { 
    font-size: clamp(0.85rem, 3vw, 1rem); 
    margin-bottom: 0; 
  }
  .hero-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .hero-cta .btn { 
    padding: 0.7rem 1.5rem; 
    font-size: 0.85rem; 
  }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  .hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .hero-swiper .swiper-pagination-bullet-active {
    width: 20px;
  }
}

/* ===== FIN HERO ===== */

/* ========================================
   SECTION À PROPOS - Design Split Screen Professionnel
   Inspiration: Layout côte à côte épuré
   ======================================== */

/* Classe de base pour toutes les sections */
.section {
  padding: 2.5rem 1rem;
  position: relative;
}

.section--about {
  background: #ffffff;
  overflow: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* En-tête de section - Design impactant avec couleurs de marque */
.section-header {
  text-align: left;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 0;
}

.section-kicker {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, rgba(240, 136, 33, 0.12), rgba(240, 136, 33, 0.06));
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--orange);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
  display: block;
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-top: 1rem;
  border-radius: 2px;
}

/* Container pour chaque ligne de contenu */
.about-row {
  margin-top: 2rem;
  width: 100%;
}

.about-row:first-of-type {
  margin-top: 2.5rem;
}

/* ========================================
   CARTE HORIZONTALE - Image à gauche ou droite
   Design épuré sans fond
   ======================================== */
.about-card-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: transparent;
  min-height: 400px;
}

/* Image à gauche, texte à droite */
.about-card-horizontal--image-left .about-card-horizontal__media {
  order: 1;
}

.about-card-horizontal--image-left .about-card-horizontal__content {
  order: 2;
  padding: 2rem 0 2rem 2.5rem;
  background: transparent;
  border-left: none;
}

/* Texte à gauche, image à droite */
.about-card-horizontal--image-right .about-card-horizontal__content {
  order: 1;
  padding: 2rem 2.5rem 2rem 0;
  background: transparent;
  border-right: none;
}

.about-card-horizontal--image-right .about-card-horizontal__media {
  order: 2;
}

.about-card-horizontal__media {
  height: 380px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(42, 106, 176, 0.12);
}

.about-card-horizontal__media .about-img {
  border-radius: 0;
}

.about-card-horizontal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========================================
   CARTE PLEINE LARGEUR - Notre équipe
   Design impactant - même bleu que Références
   ======================================== */
.about-card-full {
  /* Même fond bleu que la section Références */
  background: linear-gradient(135deg, var(--blue) 0%, #1e5a8f 100%);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.about-card-full__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

.about-card-full__media {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.about-card-full__content {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Textes adaptés pour fond bleu foncé */
.about-card-full__content .about-subtitle {
  background: rgba(255, 255, 255, 0.15);
  color: var(--orange);
  border-left-color: var(--orange);
}

.about-card-full__content .about-heading {
  color: #ffffff;
}

.about-card-full__content .about-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Badge décoratif sur l'image */
.about-icon-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(240, 136, 33, 0.4);
  border: 3px solid #fff;
}

.about-icon-badge i {
  font-size: 2rem;
  color: #fff;
}

/* Texte - Style éditorial avec couleurs de marque */
.about-subtitle {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.8rem 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  border: none;
  border-radius: 0;
}

.about-subtitle::before {
  display: none;
}

.about-heading {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
  font-family: 'Inter', sans-serif;
  position: relative;
  display: inline-block;
}

.about-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin-top: 0.6rem;
}

.about-text {
  color: #4a5568;
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 400;
}

.about-text p {
  margin: 0 0 1rem 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Listes à puces stylisées */
.about-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about-text ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.about-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Images - Full height cover */
.about-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
  object-fit: cover;
  box-shadow: none;
  transition: transform 0.6s ease, opacity 0.3s ease;
  opacity: 0.92;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: none;
  opacity: 1;
}

/* ========================================
   SECTION NOS VALEURS - Design compact et épuré
   ======================================== */
.about-values {
  margin-top: 1rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  position: relative;
}

.about-values .about-subtitle {
  display: block;
  padding: 0.3rem 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.8rem 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  border: none;
  border-radius: 0;
}

.about-values .about-subtitle::before {
  display: none;
}

.about-values .about-subtitle::after {
  display: none;
}

.about-values-title {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  position: relative;
}

.about-values-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin-top: 0.6rem;
}

/* Grille des valeurs */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

/* Carte individuelle de valeur */
.value-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  transition: all 0.3s ease;
  padding: 1.5rem;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(42, 106, 176, 0.08);
  position: relative;
  border: 1px solid rgba(42, 106, 176, 0.08);
  border-top: 6px solid var(--blue);
  border-radius: 0;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(240, 136, 33, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top-color: var(--orange);
  background: var(--orange);
}

.value-card:hover .value-icon,
.value-card:hover .value-title,
.value-card:hover .value-text,
.value-card:hover .value-text p {
  color: #ffffff;
}

.value-card__front,
.value-card__back {
  display: contents;
}

/* Numéro de valeur */
.value-icon {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

/* Nom de la valeur - Typographie impactante */
.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0.3rem 0 0 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-transform: none;
  transition: color 0.3s ease;
  position: relative;
}

.value-title::after {
  display: none;
}

.value-card:hover .value-title {
  color: var(--orange);
  transform: none;
  letter-spacing: 0.01em;
}

/* Description de la valeur */
.value-text {
  color: #5a6778;
  font-size: 0.85rem;
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
  display: block;
  padding-left: 0;
  overflow: visible;
}

.value-text p {
  margin: 0;
  color: inherit;
}

/* Responsive - Adaptation progressive */
@media (max-width: 992px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .about-row {
    margin-top: 2rem;
  }
  
  .about-card-horizontal {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
  }
  
  .about-card-horizontal--image-left .about-card-horizontal__media,
  .about-card-horizontal--image-right .about-card-horizontal__media {
    order: 1;
    height: 300px;
  }
  
  .about-card-horizontal--image-left .about-card-horizontal__content,
  .about-card-horizontal--image-right .about-card-horizontal__content {
    order: 2;
    padding: 1.5rem !important;
    border-left: 3px solid var(--orange);
    border-right: none;
  }
  
  .about-card-full__media {
    height: 400px;
  }
  
  .about-card-full__content {
    padding: 2.5rem 2rem;
  }
  
  .about-icon-badge {
    width: 60px;
    height: 60px;
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .about-icon-badge i {
    font-size: 1.7rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    padding: 0;
  }
  
  .value-card {
    flex: none;
  }
  
  .about-values {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0.8rem;
  }
  
  .section-header {
    margin-bottom: 0.8rem;
  }
  
  .about-row {
    margin-top: 1.5rem;
  }
  
  .about-card-horizontal__media {
    height: 300px;
  }
  
  .about-card-horizontal__content {
    padding: 2rem 1.5rem !important;
  }
  
  .about-card-full__media {
    height: 300px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
  }
  
  .about-card-full__content {
    padding: 2rem 1.5rem;
  }
  
  .about-heading {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .about-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .about-icon-badge {
    width: 50px;
    height: 50px;
    top: 1rem;
    right: 1rem;
  }
  
  .about-icon-badge i {
    font-size: 1.5rem;
  }
  
  .about-values {
    margin-top: 1.5rem;
    padding: 1.5rem 0.8rem;
  }
  
  .value-card {
    padding: 0.8rem 1rem;
  }
  
  .value-icon {
    font-size: 1.2rem;
  }
  
  .value-title {
    font-size: 0.8rem;
  }
  
  .value-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 2rem 0.5rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-title::after {
    width: 40px;
    height: 3px;
  }
  
  .about-card-horizontal__media {
    height: 220px;
  }
  
  .about-card-horizontal__content {
    padding: 1.5rem 1rem !important;
  }
  
  .about-heading {
    font-size: 1.15rem;
  }
  
  .about-heading::after {
    width: 40px;
    height: 2px;
  }
  
  .about-subtitle {
    font-size: 0.7rem;
  }
  
  .about-text {
    font-size: 0.85rem;
  }
  
  .about-card-full__media {
    height: 220px;
  }
  
  .about-card-full__content {
    padding: 1.5rem 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
  }
  
  .value-card {
    padding: 1rem;
    border-top-width: 4px;
  }
  
  .value-icon {
    font-size: 1.5rem;
  }
  
  .value-title {
    font-size: 0.9rem;
  }
  
  .value-text {
    font-size: 0.8rem;
  }
  
  .about-values-title {
    font-size: 1.3rem;
  }
  
  .about-values-title::after {
    width: 40px;
  }
}

/* ===== FIN SECTION À PROPOS ===== */

/* ========================================
   SECTION NOS SERVICES - Design Épuré Professionnel
   Style minimaliste cohérent avec la section À propos
   ======================================== */
.section--services {
  background: #ffffff;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

/* En-tête de section Services - Style impactant */
.section--services .section-header {
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 0;
}

/* Titre principal de la section Services */
.section--services .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
  display: block;
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
}

.section--services .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-top: 1rem;
  border-radius: 2px;
}

/* Sous-titre de la section Services */
.section--services .section-subtitle {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 650px;
  margin: 1.2rem 0 0 0;
  line-height: 1.7;
  font-weight: 400;
}

/* Grille des services - Style épuré avec espacement */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Carte de service - Design éditorial minimaliste */
.service-card {
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.service-card:nth-child(2) {
  background: #f5f5f5;
}

.service-card:nth-child(3) {
  background: #fafafa;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Image du service */
.service-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  transition: background 0.4s ease;
}

.service-card:hover .service-card__image::after {
  background: rgba(42, 106, 176, 0.05);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.92;
}

.service-card:hover .service-img {
  transform: scale(1.03);
  opacity: 1;
}

/* Badge icône - Style sobre */
.service-card__icon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(240, 136, 33, 0.35);
  border: 2px solid #fff;
  transition: all 0.4s ease;
  z-index: 10;
  color: #fff;
}

.service-card:hover .service-card__icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(240, 136, 33, 0.45);
}

/* Contenu de la carte */
.service-card__content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Titre du service - Design impactant avec fond bleu */
.service-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, #1e5a8f 100%);
  display: block;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  position: relative;
  border-bottom: 3px solid var(--orange);
}

.service-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--orange);
}

.service-card:hover .service-title {
  background: linear-gradient(135deg, var(--orange) 0%, #d97518 100%);
  border-bottom-color: var(--blue);
}

.service-card:hover .service-title::before {
  background: var(--blue);
}

/* Description - Style éditorial */
.service-description {
  color: #5a5a5a;
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
  font-weight: 400;
  padding: 1.5rem 1.5rem 0;
}

.service-description p {
  margin: 0 0 0.8rem 0;
}

.service-description p:last-child {
  margin-bottom: 0;
}

/* Listes stylisées dans les services */
.service-description ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.service-description ul li {
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.88rem;
}

.service-description ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

/* CTA du service - Style discret */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}

.service-cta:hover {
  color: var(--blue);
  gap: 0.7rem;
}

.service-cta__arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-cta:hover .service-cta__arrow {
  transform: translateX(4px);
}

.services-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #5a5a5a;
}

/* Responsive - Tablette */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-card__content {
    padding: 1.6rem 1.5rem 1.8rem;
  }
  
  .service-card__image {
    height: 200px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .section--services {
    padding: 3rem 1rem;
  }
  
  .section--services .section-header {
    text-align: center;
    padding-left: 0;
  }
  
  .section--services .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .service-card__image {
    height: 180px;
  }
  
  .service-card__content {
    padding: 1.5rem 1.2rem 1.6rem;
  }
  
  .service-title {
    font-size: 0.95rem;
  }
  
  .service-description {
    font-size: 0.88rem;
  }
}

@media (max-width: 576px) {
  .section--services {
    padding: 2rem 0.5rem;
  }
  
  .section--services .section-title {
    font-size: 1.4rem;
  }
  
  .service-card__image {
    height: 160px;
  }
  
  .service-card__content {
    padding: 1.2rem 1rem;
  }
  
  .service-title {
    font-size: 0.9rem;
  }
  
  .service-description {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  
  .service-card__icon {
    width: 40px;
    height: 40px;
  }
  
  .service-card__icon i {
    font-size: 1rem;
  }
}

/* ========================================
   SECTION RÉFÉRENCES (PARTENAIRES)
   Carrousel de logos de partenaires avec animations
   ======================================== */
.section--references {
  background: linear-gradient(135deg, var(--blue) 0%, #1e5a8f 100%);
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.section--references::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240,136,33,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section--references .section-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-align: left;
  padding-left: 0;
}

.section--references .section-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
  display: block;
}

.section--references .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-top: 1rem;
  border-radius: 2px;
}

.section--references .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 650px;
}

/* Conteneur du carrousel de partenaires avec fond semi-transparent */
.partners-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Piste contenant les logos des partenaires en grille */
.partners-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.partner-item {
  width: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInOutCycle 8s ease-in-out infinite;
}

.partner-item:nth-child(1) { animation-delay: 0s; }
.partner-item:nth-child(2) { animation-delay: 0.4s; }
.partner-item:nth-child(3) { animation-delay: 0.8s; }
.partner-item:nth-child(4) { animation-delay: 1.2s; }
.partner-item:nth-child(5) { animation-delay: 1.6s; }
.partner-item:nth-child(6) { animation-delay: 2s; }
.partner-item:nth-child(7) { animation-delay: 2.4s; }
.partner-item:nth-child(8) { animation-delay: 2.8s; }
.partner-item:nth-child(9) { animation-delay: 3.2s; }
.partner-item:nth-child(10) { animation-delay: 3.6s; }

@keyframes fadeInOutCycle {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  15% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  85% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
}

.partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

a.partner-link:hover {
  transform: translateY(-6px);
}

.partner-logo {
  width: 200px;
  height: 110px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

a.partner-link:hover .partner-logo {
  box-shadow: 0 8px 28px rgba(240, 136, 33, 0.35);
  transform: scale(1.08);
  border-color: var(--orange);
  background: #fff;
}

.partner-name {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .section--references {
    padding: 2.5rem 1rem;
  }
  
  .partners-track {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
  }
  
  .partner-item {
    width: 160px;
  }
  
  .partner-logo {
    width: 160px;
    height: 95px;
    padding: 0.8rem;
  }
  
  .partner-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .section--references {
    padding: 2rem 0.8rem;
  }
  
  .partners-track {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
  }
  
  .partner-item {
    width: 140px;
  }
  
  .partner-logo {
    width: 140px;
    height: 85px;
    padding: 0.7rem;
  }
  
  .partner-name {
    font-size: 0.75rem;
  }
}

/* ===== FIN SECTION RÉFÉRENCES ===== */

/* ========================================
   SECTION CONTACT
   Formulaire de contact et coordonnées de l'entreprise
   Layout en deux colonnes : infos à gauche, formulaire à droite
   ======================================== */
.section--contact {
  background: #ffffff;
  padding: 2.5rem 1rem;
}

/* En-tête de section Contact - Style impactant */
.section--contact .section-header {
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 0;
}

.section--contact .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
  display: block;
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
}

.section--contact .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-top: 1rem;
  border-radius: 2px;
}

.section--contact .section-subtitle {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 650px;
  margin: 1.2rem 0 0 0;
  line-height: 1.7;
  font-weight: 400;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

/* Informations de contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.contact-details {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  border-left: 4px solid var(--orange);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-details > div:first-child {
  flex: 1;
}

.contact-details__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 1.5rem 0;
  font-family: 'Inter', sans-serif;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148,163,184,0.15);
}

.contact-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  width: 30px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}

.contact-item a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-social {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148,163,184,0.15);
}

.contact-social strong {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-social__links {
  display: flex;
  gap: 1rem;
}

.contact-social__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social__links a:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240,136,33,0.3);
}

/* Google Maps */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* Formulaire de contact */
.contact-form-wrapper {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  border-left: 4px solid var(--blue);
}

.contact-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 1.5rem 0;
  font-family: 'Inter', sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group textarea {
  padding: 0.6rem 0.9rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42,106,176,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-contact {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact i {
  font-size: 1.1rem;
}

.btn-contact:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section--contact {
    padding: 3rem 1rem;
  }
  
  .contact-details,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .section--contact {
    padding: 2rem 0.5rem;
  }
  
  .section--contact .section-title {
    font-size: 1.4rem;
  }
  
  .contact-details,
  .contact-form-wrapper {
    padding: 1rem;
  }
  
  .contact-details__title {
    font-size: 1rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .contact-map iframe {
    height: 250px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-contact {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Messages d'alerte */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

/* ===== FIN SECTION CONTACT ===== */


/* ========================================
   FOOTER - Design harmonisé avec le reste du site
   ======================================== */

.footer {
  background: linear-gradient(135deg, #1a365d 0%, #234e7a 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.footer__top {
  padding: 4rem 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

/* Colonne À propos */
.footer__col--about {
  max-width: 320px;
}

.footer__logo {
  height: 55px;
  margin-bottom: 1.5rem;
}

.footer__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 136, 33, 0.4);
  border-color: var(--orange);
}

/* Colonnes génériques - Titres harmonisés */
.footer__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__links a::before {
  content: '→';
  color: var(--orange);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer__links a:hover {
  color: #ffffff;
  padding-left: 0;
}

.footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Colonne Contact */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  align-items: flex-start;
  line-height: 1.5;
}

.footer__contact i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: var(--orange);
}

/* Barre du bas */
.footer__bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 1rem;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
}

.footer__copyright strong {
  color: var(--orange);
  font-weight: 700;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--orange);
}

.footer__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__col--about {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer__top {
    padding: 3rem 1rem 2rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__col--about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer__text {
    text-align: center;
  }
  
  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__links,
  .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer__links a::before {
    display: none;
  }
  
  .footer__contact li {
    justify-content: center;
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
  
  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer__top {
    padding: 2rem 0.8rem 1.5rem;
  }
  
  .footer__logo {
    height: 50px;
  }
  
  .footer__text {
    font-size: 0.85rem;
  }
  
  .footer__title {
    font-size: 1rem;
  }
  
  .footer__links a,
  .footer__contact li {
    font-size: 0.85rem;
  }
  
  .footer__social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .footer__bottom {
    padding: 1rem 0.8rem;
  }
  
  .footer__copyright {
    font-size: 0.75rem;
  }
  
  .footer__legal {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

/* ===== FIN FOOTER ===== */
