:root {
    --dark-blue: #072D50;
    --brand-yellow: #D59A02;
    --brand-navy: #072D50;
    --floens-text : #5C6972;
    --text-gray: #5C6972;
    --input-border: #e2e8f0;
    --footer-border: rgba(255, 255, 255, 0.15);
    --footer-orange: #dca31e; /* La couleur jaune/orange exacte du footer */
    --footer-text: #ffffff;
    --footer-muted: #e0e0e0;
    --footer-line: rgba(255, 255, 255, 0.2);
}
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: #D59A02;
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #072D50;
  font-weight: bold;
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--floens-text, #7A736A);
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}





/* Alignement du logo */
.logo-container {
    width: 250px; /* Ajustez selon la taille réelle de votre logo */
    min-height: 120px;
    background-color: #fff;
}

/* Barre supérieure */
.top-bar {
    background-color: var(--dark-blue);
    height: 80px;
}

.icon-circle {
    background-color: var(--brand-yellow);
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}
.contact-info {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-right: 15px;
}
.btn-rdv {
    font-family: "Noto Sans", sans-serif;
    background-color: var(--brand-yellow);
    color: white;
    font-weight: bold;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    white-space: nowrap;
}
.support-info {
    font-family: "Noto Sans", sans-serif;
}
/* Navigation */
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark-blue) !important;
    font-weight: 600;
    padding: 20px 15px !important; /* Pour donner de la hauteur à la barre blanche */
}

.active-custom {
    background-color: var(--brand-yellow) !important;
    color: white !important;
}

/* Assistance */
.icon-circle-large {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 18px;
}

/* Correction pour mobile */
@media (max-width: 992px) {
    .logo-container { width: 150px; }
    .top-bar { display: none !important; }
}
/* **
//**
//////*

/////////////**/
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--floens-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--floens-white, #ffffff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--floens-black, #000000);
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--floens-black2, #2B1E16);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--floens-white, #ffffff);
  cursor: pointer;
  transition: all 400ms ease;
}
.mobile-nav__close:hover {
  color: #D59A02;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--floens-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--floens-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--floens-white, #ffffff);
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li ul li a {
  font-size: 14px;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: #D59A02;
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: #D59A02;
  border: none;
  outline: none;
  color: var(--floens-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--floens-white, #ffffff);
  color: #D59A02;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--floens-white, #ffffff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 22px;
}
.mobile-nav__social a:hover {
  color: #D59A02;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 25px;
}
.mobile-nav__contact li {
  color: var(--floens-white, #ffffff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: #D59A02;
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #D59A02;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--floens-white, #ffffff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}
.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 992px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--floens-black, #000000);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
/* ### */

/* Style de la section gauche avec motif de grille subtil */
.hero-left-panel {
    background-color: #e7f9eeaf;
    background-size: 80px 80px;
    position: relative;
    overflow: hidden;
}
.hero-left-panel img {
    position: absolute;
    top: 90px;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
/* Style du Badge (Étiquette orange en haut) */
.custom-badge {
    background-color: var(--brand-yellow);
    color: white;
    padding: 6px 16px;
    border-radius: 20px; /* Bords très arrondis */
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Style du Titre */
.hero-title {
    color: #072D50;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Style du Paragraphe */
.hero-text {
    color: #072D50;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Bouton principal d'action */
.btn-custom {
    background-color: var(--brand-yellow);
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px; /* Forme de pilule */
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-custom:hover {
    background-color: #b9841b; /* Couleur plus foncée au survol */
    color: white;
}

/* Style de l'image à droite */
.hero-img-container {
    min-height: 500px; /* Hauteur minimale sur mobile */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre tout l'espace sans se déformer */
}
























/* Grille personnalisée pour les 3 images */
.image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image de gauche un peu plus large */
    grid-gap: 15px;
    
    height: 100%;
}

.img-main {
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  min-height: 400px;
  object-fit: cover;
}

.img-sub {
    width: 100%;
    height: 100%;
    min-height: 192px;
    object-fit: cover;
}

  /* Sous-titre avec la petite ligne */
  .subtitle-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--brand-yellow);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 1rem;
  }

.subtitle-line {
    width: 30px;
    height: 2px;
    background-color: var(--brand-yellow);
}

.subtitle-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-yellow);
    margin-left: -13px; /* Superpose le point sur la ligne */
}

/* Titres et textes */
.section-title {
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.points-forts-title {
    color: var(--brand-navy);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Liste des points forts */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list i {
    color: var(--brand-yellow);
    font-size: 1.1rem;
}

/* Bouton */
.btn-custom {
    background-color: var(--brand-yellow);
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.btn-custom:hover {
    background-color: #b9841b;
    color: white;
}

/* --- Section Bas : Statistiques --- */
.stats-container {
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
    padding-top: 3rem;
}

/* Lignes séparatrices avec le petit carré orange */
.stat-divider {
    position: relative;
}
        
/* Uniquement sur desktop pour séparer les colonnes */
@media (min-width: 768px) {
    .stat-divider::before {
        content: '';
        position: absolute;
        left: 0;
        top: -3rem; /* Remonte jusqu'à la bordure supérieure */
        width: 1px;
        height: 100%;
        background-color: #e0e0e0;
    }
    .stat-divider::after {
        content: '';
        position: absolute;
        left: -4px;
        top: -3rem;
        width: 8px;
        height: 8px;
        background-color: var(--brand-yellow);
        transform: rotate(45deg); /* Fait un losange/carré incliné */
    }
}

.stat-number {
    color: var(--brand-navy);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0;
}

.stat-label {
    color: var(--brand-yellow);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsif : ajustement de la grille d'image sur mobile */
@media (max-width: 767px) {
    .image-grid {
        grid-template-columns: 1fr; /* Images empilées sur mobile */
    }
    .img-main, .img-sub {
        min-height: 250px;
    }
    .stats-container {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    .stat-divider {
        border-top: 1px solid #e0e0e0;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* *******
#################################################################################################################
**************************section  solution********************************************************************** 
#################################################################################################################
*/
/* --- Cartes de services --- */
.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Ombre douce */
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px); /* Petit effet au survol */
}

/* Conteneur d'image */
.card-img-wrapper {
    position: relative;
    height: 320px;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icon-circle-sos {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-light);
}
.icon-circle-sos img {
    width: 35px;
    height: fit-content;
}
.card-body-custom {
    padding: 50px 30px 30px;
    text-align: center;
    flex-grow: 1;
}
.card-title {
    color: var(--brand-navy);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.card-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.card-footer-custom {
    padding: 20px 30px;
    background-color: white;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}
.card-link {
    color: var(--brand-navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.card-link:hover {
    color: var(--brand-yellow);
}
.card-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}
.card-link:hover i {
    transform: translateX(5px);
}
/* 
######################################
**************************section  solution**********************************************************************
######################################
 */
/* --- Cartes Produits (Carousel) --- */
/* Padding en haut pour laisser de la place aux icônes qui débordent */
/* --- Section Globale --- */
.section-produits {
    background-color: #E7F9EE;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.bg-worker {
    position: absolute;
    bottom: 0;
    right: 0;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 1  ;
}
.section-produits .container {
    position: relative;
    z-index: 2;
}
.section-produits .owl-stage-outer {
    padding-top: 40px; 
    padding-bottom: 20px;
}
.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 45px 30px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 20px;
}
.icon-box {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--brand-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-box img {
    width: 50px !important;
    height: auto; 
    max-height: 50px !important;
}
.product-title {
    color: var(--brand-navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.product-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.install-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f0f0f0;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    text-decoration: none;
    color: var(--brand-navy);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.install-btn:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}
.install-btn .arrow-circle {
    background-color: var(--brand-navy);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.install-btn:hover .arrow-circle {
    transform: scale(1.05);
    background-color: var(--brand-yellow);
}
.custom-nav-btn {
  padding: 10px 20px;
  border-radius: 13px;
  background-color: #fff;
  color: #000000;

  border: 1px solid  #D7D7D7;
}
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .bg-worker { display: none; }
}
/* 
################ partenaire 
*/
.section-partners {
    padding: 4rem 0;
    background-color: #ffffff;
}
.partners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.partners-line {
    height: 1px;
    background-color: #d1d5db;
    flex-grow: 1;
    max-width: 150px;
}
.partners-title {
    color: var(--brand-navy);
    font-size: 0.95rem;
    margin: 0 20px;
    font-weight: 500;
    text-align: center;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 15px;
}
.partner-logo img {
    max-height: 50px;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.partner-logo:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .partners-line {
        max-width: 50px; 
    }
}
/* 
#########################################################################partenaire 
*/
.contact-images-wrapper {
    display: flex;
    gap: 20px;
    height: 100%;
    min-height: 500px;
}
.contact-img {
    width: 50%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.form-label {
    color: var(--brand-navy);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #495057;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 0.2rem rgba(213, 154, 34, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* --- Bouton de soumission --- */
.btn-custom {
    background-color: var(--brand-yellow);
    color: white;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.btn-custom:hover {
    background-color: #b9841b;
    color: white;
    transform: translateY(-2px);
}

/* Ajustements responsives */
@media (max-width: 991px) {
    .contact-images-wrapper {
        min-height: 350px;
        margin-bottom: 3rem;
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
}
/* footer here  */

/* --- Section Principale du Footer --- */
.site-footer {
    position: relative;
    background-color: #000;
    color: var(--footer-text);
    padding-top: 4rem;
}

/* Arrière-plan (Image + Calque sombre) */
.footer-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Dégradé sombre par-dessus l'image pour la lisibilité */
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.95)), url('../image/footer/bg-footer-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

/* --- Lignes Séparatrices --- */
.footer-divider {
    border: none;
    border-top: 1px solid var(--footer-border);
    margin: 0;
    width: 100%;
}

/* --- En-tête (CTA) --- */
.footer-cta {
    padding-bottom: 3.5rem;
}
.cta-subtitle {
    color: var(--brand-yellow);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}
.btn-footer {
    background-color: var(--brand-yellow);
    color: #fff;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-footer:hover {
    background-color: #c08e1a;
    color: #fff;
}

/* --- Widgets (Colonnes) --- */
.footer-widgets {
    padding: 4rem 0;
}
.widget-title {
    color: var(--brand-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Textes et Liens */
.footer-text {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--brand-yellow);
}

/* Bloc Contact (Icône + Texte) */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.contact-item i {
    color: var(--brand-yellow);
    margin-top: 3px;
    font-size: 0.9rem;
}

/* Bloc Assistance (Colonne 1) */
.assistance-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
}
.assistance-icon {
    width: 40px; height: 40px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.assistance-icon i {
    color: #fff;
    font-size: 1.1rem;
}
.assistance-info .label {
    color: var(--brand-yellow);
    font-size: 0.8rem;
    margin-bottom: 0;
}
.assistance-info .phone {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* --- Newsletter --- */
.newsletter-form {
    position: relative;
    margin-top: 1rem;
}
.newsletter-input {
    width: 100%;
    background-color: rgba(25, 30, 40, 0.8); /* Fond très sombre et bleuté */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 50px 12px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
}
.newsletter-input::placeholder {
    color: #a0a0a0;
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--brand-yellow);
}
.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 36px;
    height: 36px;
    background-color: var(--brand-yellow);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.newsletter-btn:hover {
    background-color: #c08e1a;
}
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--footer-muted);
}
@media (max-width: 991px) {
    .footer-widgets .col-md-6 { margin-bottom: 2rem; }
    .cta-title { font-size: 1.8rem; }
}
.space-top {
  margin-top: 115px;
}
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #D59A02;
    box-shadow: inset 0 0 0 3px #e2e8f0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap i {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    color: white;
    z-index: 2;
    transition: transform 0.2s ease;
}

.progress-wrap:hover i {
    transform: translateY(-3px);
}
.progress-wrap svg.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
    transform: rotate(-90deg);
}
.progress-wrap svg path {
    fill: none;
    stroke: #072D50; 
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}
/* header page section */
.entete-page-specifique {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #eaf3fa; /* Fond bleu très clair rappelant le ciel */
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
.couche-image-artisan {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    z-index: 1;
}
.masque-fondu-gauche {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #eaf3fa 40%, rgba(234, 243, 250, 0) 100%);
    z-index: 2;
}
.boite-alignement-contenu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}
.gros-titre-bleu {
    color: #002b5c;
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}
.chemin-navigation-liens {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.element-lien-chemin {
    color: #6c757d;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.element-lien-chemin:hover {
    color: #d59a22;
}
.separateur-chevron {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #a0aab2;
    border-bottom: 2px solid #a0aab2;
    transform: rotate(-45deg);
    margin-bottom: 2px;
}
.page-actuelle-chemin {
    color: #d59a22;
    text-transform: uppercase;
}
/* ========================================================
           NOUVELLES CLASSES UNIQUES (Aucun conflit avec les autres codes)
           ======================================================== */
           
.nv-section-discussion {
    padding: 5rem 0;
    background-color: #f8fbf9; /* Fond très clair légèrement teinté */
    font-family: 'Montserrat', sans-serif;
}

/* --- BLOC GAUCHE (Image + Panneau Marine) --- */
.nv-carte-coordonnees {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 43, 92, 0.1);
    height: 100%;
    min-height: 450px;
}

.nv-moitie-image {
    width: 35%;
    background-size: cover;
    background-position: center left;
}

.nv-moitie-marine {
    width: 65%;
    background-color: #002b5c; /* Votre Bleu Marine */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
}

.nv-ligne-info {
    display: flex;
    align-items: center;
}

/* L'icône orange qui chevauche légèrement l'image */
.nv-carre-icone {
    width: 55px;
    height: 55px;
    background-color: #d59a22; /* Votre Orange */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-left: -55px; /* Tire l'icône vers la gauche au-dessus de l'image */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 5;
}

.nv-texte-info {
    padding-left: 20px;
    color: white;
}

.nv-titre-info {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.nv-desc-info {
    font-size: 0.85rem;
    color: #d1d5db;
    margin-bottom: 0;
    line-height: 1.5;
}


/* ****************************
**************************************
************************************************
*********************************************************** */

.msf-conteneur-global {
    max-width: 800px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 43, 92, 0.08);
    padding: 40px;
}

/* --- En-tête du formulaire --- */
.msf-titre-principal {
    color: #002b5c; /* Bleu marine */
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

/* --- Barre de progression --- */
.msf-barre-progression {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    padding: 0 20px;
}

.msf-barre-progression::before {
    content: '';
    background-color: #e2e8f0;
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    transform: translateY(-50%);
    height: 4px;
    z-index: 1;
}

.msf-etape-indicateur {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.msf-etape-indicateur.active {
    background-color: #d59a22; /* Orange */
    color: white;
    box-shadow: 0 0 0 5px rgba(213, 154, 34, 0.2);
}

.msf-etape-indicateur.completed {
    background-color: #002b5c; /* Bleu marine pour les étapes terminées */
    color: white;
}

/* --- Contenu des étapes --- */
.msf-etape-contenu {
    display: none; /* Caché par défaut */
    animation: fadeIn 0.5s;
}

.msf-etape-contenu.active {
    display: block; /* Affiché si actif */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.msf-sous-titre {
    color: #002b5c;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

/* --- Champs et Inputs --- */
.msf-label {
    font-weight: 600;
    color: #002b5c;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.msf-input, .msf-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.msf-input:focus, .msf-select:focus {
    outline: none;
    border-color: #d59a22;
}

/* Message d'erreur de validation */
.msf-erreur-msg {
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

.msf-input.erreur {
    border-color: #dc3545;
    background-color: #fff8f8;
}

/* Radio Buttons personnalisés (Style Cartes) */
.msf-radio-groupe {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.msf-radio-carte {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.msf-radio-carte input[type="radio"] {
    display: none;
}

.msf-radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.msf-radio-label i {
    font-size: 2rem;
    color: #002b5c;
    margin-bottom: 10px;
}

.msf-radio-carte input[type="radio"]:checked + .msf-radio-label {
    border-color: #d59a22;
    background-color: rgba(213, 154, 34, 0.05);
}

.msf-radio-carte input[type="radio"]:checked + .msf-radio-label i {
    color: #d59a22;
}

/* --- Boutons de navigation --- */
.msf-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.msf-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.msf-btn-retour {
    background-color: #e2e8f0;
    color: #495057;
}

.msf-btn-retour:hover {
    background-color: #cbd5e1;
}

.msf-btn-suivant {
    background-color: #d59a22;
    color: white;
    margin-left: auto;
}

.msf-btn-suivant:hover {
    background-color: #b8841a;
}

.msf-btn-valider {
    background-color: #002b5c;
    color: white;
    margin-left: auto;
    display: none; /* Affiché uniquement à la fin */
}
.msf-btn-valider:hover { background-color: #001a38; }

/* Écran de succès */
.msf-succes {
    text-align: center;
    padding: 40px 0;
}
.msf-succes i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}


/* ****************************
**************************************
************************************************
*********************************************************** */


/* Ajustements responsives */
@media (max-width: 991px) {
    .hero-left-panel {
        min-height: auto;
        padding: 4rem 2rem !important;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .nv-carte-coordonnees {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .nv-moitie-image {
        width: 100%;
        height: 200px;
    }
    .nv-moitie-marine {
        width: 100%;
        padding: 30px;
    }
    .nv-carre-icone {
        margin-left: 0; /* Annule le chevauchement sur mobile */
    }
}
@media (max-width: 1400px) {
    .nav-link {
        font-size: 14px;
        font-weight: 600;
        padding: 20px 10px !important;
    }
    .logo-container { width: 195px; }
    .phone-number {  font-size: 14px;  }
}
@media (max-width: 1400px) {
    .assistance-block {
        display: none !important;
    }
}
@media (max-width: 992px) {
    .mob-flx {
      display: flex;
      align-items: center;
      justify-content: end;
    }
}
@media (max-width: 768px) {
    .space-top {
      margin-top: 65px;
    }
    .gros-titre-bleu {
        font-size: 2.2rem;
    }
    .couche-image-artisan {
        width: 100%;
    }
    .masque-fondu-gauche {
        background: linear-gradient(to right, #eaf3fa 60%, rgba(234, 243, 250, 0.4) 100%);
    }
}