/* VARIABLES ET BASE */
:root {
    --bg-blue-light: #f0f4fa; /* Fond glacier omniprésent */
    --corporate-blue: #002244;
    --orange-dew: #fca311;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --turquoise-link: #319795;
}

* {
    box-shadow: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* CONTENEURS STRATÉGIQUES */
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* TITRES COMMONS */
.section-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--corporate-blue);
    text-align: center;
    margin-bottom: 30px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* 1. HEADER STYLE */
.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ==========================================================================
   NOUVEAU LOGO OFFICIEL DEW CONSTRUCTION
   ========================================================================== */
.logo-brand-wrapper {
    display: inline-block;
    height: 65px; /* Contrôle de manière stable la hauteur du logo dans le header */
    transition: transform 0.2s ease;
    text-decoration: none;
}

.logo-brand-wrapper:hover {
    transform: scale(1.02); /* Léger effet dynamique discret au survol */
}

.site-logo-img {
    height: 100%;
    width: auto; /* Garde les proportions parfaites du logo sans le déformer */
    display: block;
    object-fit: contain;
}

/* Ajustement spécifique pour le Footer */
.footer-logo-adjust {
    height: 75px; /* On peut se permettre de le mettre un poil plus grand dans le footer */
    margin-bottom: 20px;
}

/* Responsive - On réduit légèrement la taille sur mobile pour que le menu respire */
@media (max-width: 768px) {
    .logo-brand-wrapper {
        height: 50px;
    }
}
.main-gear, .footer-gear { font-size: 2.5rem; color: #111; margin-bottom: 2px; }


.navigation-menu ul { display: flex; list-style: none; gap: 25px; }
.navigation-menu a { text-decoration: none; color: #333; font-weight: 600; font-size: 0.95rem; }
.navigation-menu a.active, .navigation-menu a:hover { color: #0056b3; }
.btn-consultation { background-color: var(--orange-dew); color: white; text-decoration: none; font-weight: 700; padding: 12px 24px; border-radius: 50px; font-size: 0.85rem; }

/* 2. HERO BANNER */
.hero-section {
    background-image: linear-gradient(rgba(255,255,255,0.1),
     rgba(255,255,255,0.1)),
      url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1920');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
   

}


/* ==========================================================================
   ++++. LOGO CENTRAL DEW CONSTRUCTION (PAGE LOG IN / MAINTENANCE)
   ========================================================================== */
.center-logo-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  background: none !important;
  box-shadow: none !important;
}

/* petit fond flou sous le logo */
.center-logo-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;              /* ajuste la position sous le logo */
  transform: translateX(-50%);
  width: 210px;               /* ajuste la largeur */
  height: 26px;              /* ajuste la hauteur */
  background: rgba(0, 0, 0, 0.50); /* couleur + intensité (à ajuster) */
  filter: blur(16px);        /* flou */
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

/* important: si ton logo doit rester au-dessus */
.center-logo-box > * {
  position: relative;
  z-index: 1;
}
/* Responsive - On réduit la taille sur smartphone pour éviter que ça ne prenne tout l'écran */
@media (max-width: 550px) {
    .center-logo-link {
        max-width: 280px; /* Plus compact sur petit écran */
    }
    .center-logo-box {
        margin-bottom: 25px;
    }
}
.center-logo-box {
    background-color: #f2f4f7;
    width: 280px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}
.main-gear-center { font-size: 4rem; color: #1a2c42; margin-bottom: 5px; }
.logo-text-center { font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: #000; }
.logo-sub-center { font-size: 0.45rem; color: #222; margin-top: 4px; }
.main-hero-title { font-size: 4.5rem; font-weight: 900; color: var(--orange-dew); letter-spacing: 2px; }

/* 3. PRESENTATION */
.section-presentation {
     background-color: var(--bg-blue-light);
     padding: 100px 0;
      text-align: center;
     }
.title-wrapper { 
    position: relative;
     display: inline-block; 
     margin-bottom: 30px; 
    }
.title-wrapper h2 { 
    font-size: 2.5rem;
     font-weight: 700; 
     color: var(--corporate-blue);
      position: relative; 
      z-index: 2;
     }
.title-overlay-icon { position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); font-size: 2.6rem; color: #121e31; z-index: 1; }
.desc-presentation { font-size: 1.25rem; color: var(--text-gray); line-height: 1.8; }

/* 4. OBJECTIFS */
.section-objectifs {
     background-color: var(--bg-blue-light); 
    padding: 0 0 100px 0; }


.objectifs-grid { 
    display: grid;
     grid-template-columns: repeat(4, 1fr);
      gap: 40px;
     }
.objectif-card {
     border-top: 1px solid #cbd5e0; 
     padding-top: 25px;
     }
.objectif-icon {
     font-size: 1.5rem;
     margin-bottom: 20px;
     }
.blue-check, .blue-folder {
     color: #007bff;
     }
.objectif-text { 
    font-size: 1.1rem; 
    font-weight: 500;
     color: var(--corporate-blue);
      line-height: 1.6; 
    }

/* 5 & 6. GRILLE SERVICES & REALISATIONS */
.section-services, .section-realisations { background-color: var(--bg-blue-light); padding: 40px 0 100px 0; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.content-card { display: flex; flex-direction: column; align-items: flex-start; border-top: 1px solid #cbd5e0; padding-top: 20px; }
.image-wrapper { width: 100%; height: 240px; overflow: hidden; border-top-left-radius: 40px; border-bottom-right-radius: 40px; margin-bottom: 20px; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--corporate-blue); margin-bottom: 15px; min-height: 45px; }
.btn-orange-click { background-color: var(--orange-dew); color: white; text-decoration: none; font-size: 0.75rem; font-weight: 600; padding: 8px 18px; border-radius: 50px; }
.card-text-bold { font-size: 1.05rem; font-weight: 600; color: var(--corporate-blue); line-height: 1.5; }

/* 7. TESTIMONIALS */
.section-temoignages { background-color: var(--bg-blue-light); padding: 5px 0 120px 0; }
.title-orange-caps { font-size: 1.1rem; font-weight: 700; color: var(--orange-dew); text-align: center; letter-spacing: 2px; margin-bottom: 60px; }
.carousel-container { display: flex; align-items: center; gap: 20px; }
.arrow-btn { background: none; border: none; font-size: 1.8rem; color: #718096; cursor: pointer; }
.temoignages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; flex-grow: 1; }
.testimonial-card { display: flex; flex-direction: column; align-items: flex-start; }
.testimonial-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.avatar { width: 85px; height: 85px; border-radius: 50%; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.grayscale-avatar img { filter: grayscale(100%); opacity: 0.8; }
.client-name { font-size: 1.1rem; font-weight: 700; color: #1a202c; }
.testimonial-text { font-size: 1.05rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; }
.btn-turquoise-voir { font-size: 0.85rem; font-weight: 700; color: var(--turquoise-link); text-decoration: none; letter-spacing: 1px; }

/* 8. FOOTER STYLE */
.site-footer { background-color: #f7fafc; padding: 80px 0 30px 0; border-top: 1px solid #eaeaea; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-col-brand, .footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo-box { width: 140px; height: 140px; margin-bottom: 20px; }
.footer-contacts p { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.footer-contacts a { text-decoration: none; color: inherit; }
.footer-col h3 { font-size: 0.85rem; font-weight: 700; color: var(--corporate-blue); margin-bottom: 25px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { text-decoration: none; color: var(--text-gray); font-size: 0.95rem; }
.social-links-row { display: flex; gap: 20px; margin-bottom: 40px; font-size: 1.2rem; }
.social-links-row a { color: #1a202c; }
.search-mini-box { display: flex; align-items: center; width: 100%; border-bottom: 1px solid #cbd5e0; padding-bottom: 5px; }
.search-mini-box input { border: none; background: transparent; width: 100%; outline: none; }
.footer-bottom-bar { margin-top: 60px; border-top: 1px solid #eaeaea; padding-top: 25px; }
.footer-bottom-flex { font-size: 0.75rem; font-weight: 600; color: #a0aec0; letter-spacing: 0.5px; }
.footer-bottom-flex .sep { margin: 0 10px; }

/* MODIFICATIONS MOBILE (RESPONSIVE) */
@media (max-width: 992px) {
    .objectifs-grid, .cards-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .temoignages-grid { grid-template-columns: 1fr; gap: 30px; }
    .main-hero-title { font-size: 2.5rem; }
    .navigation-menu { display: none; }
}
@media (max-width: 600px) {
    .objectifs-grid, .cards-grid, .footer-grid { grid-template-columns: 1fr; }
    .center-logo-box { width: 140px; height: 140px; }
    .main-hero-title { font-size: 2rem; }
}



/* ==========================================================================
   18. PAGE À PROPOS SPECIFIQUE
   ========================================================================== */
.section-page-propos {
    background-color: var(--bg-blue-light); /* Même fond bleu très clair */
    padding: 100px 0 140px 0;
}

.text-center {
    text-align: center;
}

/* Le petit texte bleu "A PROPOS" au-dessus */
.subtitle-blue-caps {
    font-size: 1.1rem;
    font-weight: 700;
    color: #007bff; /* Bleu vif de la capture */
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 35px;
}

/* Le gros titre noir/bleu nuit de la capture */
.main-propos-title {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #001a33; /* Bleu très sombre, presque noir */
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Adaptation pour les téléphones */
@media (max-width: 768px) {
    .main-propos-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    .section-page-propos {
        padding: 60px 0 80px 0;
    }
}


/* ==========================================================================
   19. ZONE PRÉSENTATION & STATS (SUITE PAGE PROPOS)
   ========================================================================== */
.section-propos-presentation {
    background-color: #ffffff; /* Fond blanc propre pour détacher du header bleu */
    padding: 80px 0 100px 0;
}

.propos-presentation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* La colonne de texte est plus large */
    gap: 80px;
    align-items: flex-start;
}

/* --- Alignements à gauche pour le texte --- */
.propos-content-left {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.propos-sub-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #002244; /* Bleu corporate */
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.propos-paragraph {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: #4a5568; /* Gris adouci identique au modèle */
    line-height: 1.8;
    margin-bottom: 25px;
}

/* --- Section Chiffres / Compteurs --- */
.propos-stats-row {
    display: flex;
    gap: 60px;
    margin-top: 20px;
    border-top: 1px solid #e2e8f0; /* Ligne fine au-dessus des stats */
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fca311; /* Jaune/Orange vif de la capture */
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #002244;
}

/* --- Grand bloc Logo (Côté droit) --- */
.propos-image-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.large-logo-rounded-box {
    /* background-color: #7ebbff; /* Fond bleu de ta charte graphique */
        background-color: #e7eaee; /* Fond bleu de ta charte graphique */

    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1; /* Rendu parfaitement carré */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px; /* Un peu plus d'espace pour que le logo respire */
    
    /* L'effet de découpe asymétrique signature de DEW Construction */
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* Style pour le logo à l'intérieur du grand bloc */
.about-large-logo-img {
    width: 90%; /* Prend la majeure partie du bloc carré */
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 34, 68, 0.08)); /* Optionnel : léger relief soft */
}

/* Ajustement Responsive */
@media (max-width: 768px) {
    .large-logo-rounded-box {
        max-width: 320px; /* Plus compact sur tablette et mobile */
        padding: 25px;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}

.large-gear {
    font-size: 6rem;
    color: #1a2c42;
    margin-bottom: 15px;
}

.large-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.1;
}

.large-logo-sub {
    font-size: 0.65rem;
    color: #222222;
    margin-top: 10px;
    max-width: 280px;
}

/* ==========================================================================
   RESPONSIVE - MODE SMARTPHONE ET TABLETTE
   ========================================================================== */
@media (max-width: 992px) {
    .propos-presentation-grid {
        grid-template-columns: 1fr; /* On empile les colonnes verticalement */
        gap: 50px;
    }
    
    .propos-image-right {
        justify-content: center; /* On centre le logo sur petit écran */
    }
    
    .large-logo-rounded-box {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .propos-sub-title {
        font-size: 1.4rem;
    }
    .propos-stats-row {
        flex-direction: column;
        gap: 30px;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}


/* ==========================================================================
   20. ZONE NOTRE MISSION (SUITE PAGE PROPOS)
   ========================================================================== */
.section-propos-mission {
    background-color: #ffffff;
    padding: 40px 0 120px 0; /* Un peu d'espace avant le footer */
}

.propos-mission-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Inversion des proportions : texte plus large à droite */
    gap: 80px;
    align-items: center; /* Aligne verticalement au centre l'image et le texte */
}

/* --- Bloc Image (Gauche) --- */
.mission-image-wrapper {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1; /* Reste carré comme le logo du dessus */
    overflow: hidden;
    
    /* Découpe asymétrique identique à l'identité visuelle de la marque */
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.mission-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Bloc Texte (Droite) --- */
.propos-mission-right {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mission-sub-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #002244; /* Bleu nuit corporate */
    margin-bottom: 30px;
}

/* L'encadré contenant la ligne verticale turquoise/bleue à gauche */
.mission-bordered-content {
    border-left: 3px solid #00a3c4; /* Ligne turquoise épaisse à gauche */
    padding-left: 30px; /* Décale le texte de la ligne */
}

.mission-intro, .mission-outro {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: #2d3748;
    line-height: 1.7;
}

.mission-intro {
    margin-bottom: 20px;
}

.mission-outro {
    margin-top: 20px;
}

/* --- Style de la Liste à Puces --- */
.mission-list {
    list-style-type: none; /* Supprime les puces par défaut */
    padding-left: 0;
}

.mission-list li {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px; /* Place pour la puce personnalisée */
}

/* Création d'une petite puce carrée ou ronde noire propre avant chaque élément */
.mission-list li::before {
    content: "•";
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ==========================================================================
   RESPONSIVE - MISSION
   ========================================================================== */
@media (max-width: 992px) {
    .propos-mission-grid {
        grid-template-columns: 1fr; /* Bascule sur une seule colonne sur tablette/mobile */
        gap: 40px;
    }
    
    .propos-mission-left {
        display: flex;
        justify-content: center; /* Centre l'image sur petit écran */
        order: 2; /* Optionnel : place l'image sous le texte en mobile */
    }
    
    .mission-image-wrapper {
        max-width: 350px;
    }
}

/* ==========================================================================
   21. ZONE NOS VALEURS (SUITE PAGE PROPOS)
   ========================================================================== */
.section-propos-valeurs {
    background-color: #ffffff;
    padding: 40px 0 120px 0; /* Bel espace aéré avant le footer final */
}

.propos-valeurs-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Texte un peu plus large à gauche, image à droite */
    gap: 80px;
    align-items: center;
}

/* --- Bloc Texte (Gauche) --- */
.propos-valeurs-left {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.valeurs-sub-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #002244; /* Même bleu corporate */
    margin-bottom: 30px;
}

.valeurs-intro, .valeurs-outro {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: #4a5568; /* Gris adouci textuel */
    line-height: 1.7;
}

.valeurs-intro {
    margin-bottom: 25px;
}

.valeurs-outro {
    margin-top: 25px;
}

/* --- Liste des valeurs --- */
.valeurs-list {
    list-style-type: none;
    padding-left: 0;
}

.valeurs-list li {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    padding-left: 20px;
}

/* La petite puce carrée/ronde noire */
.valeurs-list li::before {
    content: "•";
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* --- Bloc Image (Droite) --- */
.propos-valeurs-right {
    display: flex;
    justify-content: flex-end;
}

.valeurs-image-wrapper {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1; /* Format carré uniforme */
    overflow: hidden;
    
    /* Identique à la marque : arrondi haut-gauche et bas-droite */
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.valeurs-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   RESPONSIVE - VALEURS
   ========================================================================== */
@media (max-width: 992px) {
    .propos-valeurs-grid {
        grid-template-columns: 1fr; /* Passage sur une seule colonne */
        gap: 40px;
    }
    
    .propos-valeurs-right {
        justify-content: center; /* Centre l'image sur tablette et mobile */
    }
    
    .valeurs-image-wrapper {
        max-width: 350px;
    }
}

/* ==========================================================================
   22. ZONE FACTEURS DIFFÉRENCIANTS (SUITE PAGE PROPOS)
   ========================================================================== */
.section-propos-facteurs {
    background-color: #ffffff;
    padding: 60px 0 120px 0;
}

/* Grand titre orange centré */
.facteurs-main-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fca311; /* Orange/Jaune de la marque */
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
}

/* Grille principale : 3 colonnes */
.facteurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 60px;
}

/* Style de chaque élément de la grille */
.facteur-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    
    /* La ligne de séparation grise au-dessus */
    border-top: 1px solid #e2e8f0; 
    padding-top: 25px;
}

/* Icône bleue de la capture */
.facteur-icon {
    font-size: 1.4rem;
    color: #0066ff; /* Bleu vif */
    margin-bottom: 20px;
}

/* Titre du facteur */
.facteur-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #002244; /* Bleu nuit corporate */
    margin-bottom: 20px;
}

/* Texte descriptif */
.facteur-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: #4a5568; /* Gris adouci textuel */
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE - FACTEURS
   ========================================================================== */
@media (max-width: 992px) {
    .facteurs-grid {
        grid-template-columns: repeat(2, 1fr); /* Passe à 2 colonnes sur tablette */
        column-gap: 40px;
    }
    .facteurs-main-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .facteurs-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
        row-gap: 40px;
    }
    .facteurs-main-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   24. GRILLE ET BOUTONS DE FILTRES (SUITE PAGE ÉQUIPE)
   ========================================================================== */
.section-equipe-liste {
    background-color: var(--bg-blue-light); /* Reste sur le fond bleu clair uni */
    padding: 10px 0 120px 0;
}

/* Barre de navigation des boutons de filtres */
.equipe-filters-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

/* Style de base des boutons écrits */
.filter-btn {
    background: none;
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #002244; /* Bleu nuit corporate */
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn:hover {
    color: #0066ff;
}

/* Ligne sous le bouton actif (comme le bouton ALL de la capture) */
.filter-btn.active {
    color: #00a3c4; /* Couleur turquoise de focus */
}

.filter-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%; /* La barre ne prend pas toute la largeur, style minimaliste */
    left: 20%;
    height: 2px;
    background-color: #00a3c4;
}

/* Grille à 4 colonnes pour l'équipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 50px;
}

/* Structure d'une fiche membre */
.member-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Boîte de l'image avec l'arrondi asymétrique obligatoire de la marque */
.member-image-box {
    width: 100%;
    aspect-ratio: 0.82 / 1; /* Un peu plus haut que large pour correspondre à l'image */
    background-color: #e2e8f0; /* Fond gris clair de secours visible sur ta capture */
    overflow: hidden;
    margin-bottom: 25px;
    
    /* Coins asymétriques DEW Construction */
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.member-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Optionnel : tu peux ajouter un filtre pour adoucir ou matcher la couleur de fond grise */
    mix-blend-mode: multiply; 
    opacity: 0.9;
}

/* Nom du collaborateur */
.member-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 12px;
}

/* Rôle / Métier en turquoise */
.member-role {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #00a3c4; /* Bleu turquoise clair */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE - FILTRES & GRILLE ÉQUIPE
   ========================================================================== */
@media (max-width: 1024px) {
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr); /* Passe à deux colonnes sur tablette */
    }
    .equipe-filters-nav {
        gap: 10px;
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .equipe-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur smartphone */
    }
    .filter-btn {
        font-size: 0.75rem;
    }
}




/* ==========================================================================
   25. PAGE SERVICES SPECIFIQUE
   ========================================================================== */
.section-page-services {
    background-color: var(--bg-blue-light); /* Fond bleu glacier uniforme */
    padding: 100px 0 160px 0;
}

/* Le grand titre jaune orangé */
.main-services-title {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fca311; /* Jaune DEW Construction */
    max-width: 1000px;
    margin: 0 auto 50px auto;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Bloc centralisé de la liste textuelle 
.services-list-centered {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
} */
/* ==========================================================================
   34. REFONTE CLASSE ET MODERNE DE LA SECTION SERVICES
   ========================================================================== */
.section-page-services {
    background-color: var(--bg-blue-light); /* Fond bleu glacier signature */
    padding: 90px 0 120px 0;
}

.main-services-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #002244; /* Bleu nuit corporatif */
    margin: 10px auto 60px auto;
    max-width: 700px;
}

/* Grille flexible et asymétrique */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style "Luxury Corporate" pour chaque service */
.service-luxury-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Reprise subtile du thème asymétrique de DEW Construction */
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* Au survol : la carte s'élève et la bordure prend la couleur dorée/orangée */
.service-luxury-card:hover {
    transform: translateY(-6px);
    border-color: #fca311;
    box-shadow: 0 12px 30px rgba(0, 34, 68, 0.06);
}

/* Boite à icône minimaliste */
.service-icon-box {
    font-size: 1.8rem;
    color: #fca311; /* Orange doré DEW */
    background-color: rgba(252, 163, 17, 0.08); /* Petit halo orange très doux */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* Titres internes des cartes */
.service-luxury-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 12px;
}

/* Description textuelle */
.service-luxury-card p {
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    color: #5a6578;
    line-height: 1.6;
}

/* Ajustements tablettes et mobiles */
@media (max-width: 768px) {
    .main-services-title {
        font-size: 2rem;
    }
    .services-modern-grid {
        grid-template-columns: 1fr; /* Une seule colonne propre sur mobile */
        gap: 20px;
    }
}
/* Alignement et espacement de chaque ligne de service */
.services-list-centered p {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #002244; /* Bleu nuit corporate */
    line-height: 1.5;
    margin: 4px 0;
    letter-spacing: -0.2px;
}

/* Adaptation pour les écrans mobiles et tablettes */
@media (max-width: 768px) {
    .main-services-title {
        font-size: 2rem;
        padding: 0 15px;
        margin-bottom: 35px;
    }
    
    .services-list-centered p {
        font-size: 1.05rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .section-page-services {
        padding: 60px 0 100px 0;
    }
}



/* ==========================================================================
   26. GRILLE DE CARTES SERVICES (SUITE PAGE SERVICES)
   ========================================================================== */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes comme sur la capture */
    column-gap: 60px;
    row-gap: 80px;
    max-width: 1100px;
    margin: 80px auto 0 auto; /* Espace par rapport au bloc de texte du haut */
    text-align: left;
}

.service-card-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Le conteneur d'image avec l'arrondi asymétrique asymétrique signature */
.service-img-wrapper {
    width: 100%;
    aspect-ratio: 1.6 / 1; /* Format paysage rectangulaire */
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f7fafc;
    
    /* Coins asymétriques DEW Construction */
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-item:hover .service-img-wrapper img {
    transform: scale(1.04); /* Petit effet dynamique au survol */
}

/* Style spécifique pour la 4ème boîte si elle reste vide/icône */
.service-img-wrapper.empty-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.placeholder-service-icon {
    font-size: 3.5rem;
    color: #002244;
    opacity: 0.4;
}

/* Titre des cartes de services en bleu nuit */
.service-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #002244; /* Bleu foncé de la capture */
    margin-top: 5px;
    letter-spacing: -0.2px;
}

/* ==========================================================================
   RESPONSIVE - GRILLE SERVICES
   ========================================================================== */
@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr; /* Bascule sur 1 seule colonne sur mobile */
        row-gap: 45px;
        padding: 0 20px;
        margin-top: 50px;
    }
    
    .service-img-wrapper {
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}


/* ==========================================================================
   27. ZONE METHODOLOGIE DE TRAVAIL (SUITE PAGE SERVICES)
   ========================================================================== */
.section-services-methodo {
    background-color: #ffffff; /* Fond blanc propre sous les services */
    padding: 80px 0 120px 0;
}

/* Grand titre orange centré */
.methodo-main-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fca311; /* Orange signature DEW */
    text-align: center;
    margin-bottom: 60px;
}

/* Conteneur vertical de la liste */
.methodo-steps-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Un bloc d'étape complet */
.methodo-step-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

/* Chiffre jaune géant à gauche */
.methodo-number {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fca311;
    line-height: 1;
    min-width: 70px;
    margin-top: -5px;
}

/* Contenu textuel séparé par une ligne à gauche */
.methodo-content {
    border-left: 1px solid #cbd5e1; /* Ligne grise fine verticale */
    padding-left: 30px;
    width: 100%;
}

/* Titre de l'étape en bleu nuit */
.methodo-step-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 25px;
}

/* Liste des tâches de l'étape */
.methodo-sublist {
    list-style-type: none;
    padding-left: 0;
}

.methodo-sublist li {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: #64748b; /* Gris texte doux pour les sous-tâches */
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ==========================================================================
   RESPONSIVE - METHODOLOGIE
   ========================================================================== */
@media (max-width: 768px) {
    .methodo-main-title {
        font-size: 1.8rem;
    }
    .methodo-step-item {
        flex-direction: column; /* Le chiffre se met au-dessus sur mobile */
        gap: 15px;
    }
    .methodo-number {
        font-size: 2.5rem;
        min-width: auto;
    }
    .methodo-content {
        border-left: none; /* On retire la ligne verticale pour gagner de la place */
        border-top: 1px solid #e2e8f0; /* On met une ligne horizontale à la place */
        padding-left: 0;
        padding-top: 15px;
    }
    .methodo-step-title {
        margin-bottom: 15px;
    }
}


/* ==========================================================================
   35. STYLISATION CLASSE DE LA GRILLE DES PROJETS
   ========================================================================== */
.section-page-projets {
    background-color: #ffffff; /* Fond blanc épuré */
    padding: 90px 0 120px 0;
}

.main-projets-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #002244; /* Bleu nuit signature */
    margin: 10px auto 40px auto;
}

/* Zone des boutons de filtres */
.projets-filters-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-project-btn {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #5a6578;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Harmonisation avec la coupe asymétrique de DEW */
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.filter-project-btn:hover,
.filter-project-btn.active {
    background-color: #002244;
    color: #ffffff;
    border-color: #002244;
}

/* Grille de projets moderne et proportionnée */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Liens des cartes */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Structure de la carte Projet */
.project-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px;
    text-align: left;
    transition: all 0.3s ease;
    
    /* Même découpe asymétrique élégante que les services */
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Conteneur de l'image (évite que l'image devienne géante) */
.project-image-box {
    width: 100%;
    height: 240px; /* Hauteur fixe parfaite */
    overflow: hidden;
    margin-bottom: 20px;
    
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* L'image s'adapte sans se déformer */
.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recadre proprement l'image */
    transition: transform 0.5s ease;
}

/* Titre du projet */
.project-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #002244;
    margin: 5px 0 10px 5px;
    line-height: 1.4;
}

/* Badge de la catégorie */
.project-card-cat {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fca311; /* Orange doré DEW */
    background-color: rgba(252, 163, 17, 0.08);
    padding: 6px 14px;
    margin-left: 5px;
    letter-spacing: 0.5px;
    
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Effets au survol (Hover) */
.project-card-link:hover {
    transform: translateY(-6px);
}

.project-card-link:hover .project-card {
    border-color: #fca311;
    box-shadow: 0 12px 30px rgba(0, 34, 68, 0.06);
}

.project-card-link:hover .project-image-box img {
    transform: scale(1.05); /* Léger zoom sur l'image très chic */
}

/* Responsive mobile */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .project-image-box {
        height: 200px;
    }
}


/* ==========================================================================
   29. PAGE DÉTAIL DE PROJET DEW
   ========================================================================== */
/* Conteneur Hero avec image de fond */
.section-detail-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px; /* Grande hauteur immersive */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Effet de fondu transparent vers le blanc en bas de l'image (comme ta capture) */
.detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 60%, #ffffff 100%);
    z-index: 1;
}

/* Texte par-dessus le fondu */
.detail-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

/* Titre principal géant */
.detail-main-title {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #002244; /* Bleu nuit corporate */
    margin-top: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Section de texte descriptive */
.section-detail-body {
    background-color: #ffffff;
    padding: 20px 0 100px 0;
}

/* Layout resserré pour une lecture agréable des articles */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sous-titre orange du type de projet */
.detail-project-type {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fca311; /* Jaune orangé DEW */
    margin-bottom: 35px;
}

/* Paragraphes de description */
.detail-description-text p {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    color: #4a5568; /* Gris textuel qualitatif */
    line-height: 1.75;
    margin-bottom: 25px;
    text-align: left;
}

/* ==========================================================================
   RESPONSIVE - DETAIL PROJET
   ========================================================================== */
@media (max-width: 768px) {
    .section-detail-hero {
        height: 400px;
    }
    .detail-main-title {
        font-size: 2.2rem;
    }
    .detail-project-type {
        font-size: 1rem;
    }
}


/* ==========================================================================
   30. SUITE PAGE DETAIL (IMAGE & IMPACT)
   ========================================================================== */
.section-detail-impact {
    background-color: #ffffff;
    padding: 0 0 120px 0;
}

/* Grand conteneur d'image avec les coins de la charte graphique */
.detail-large-media-box {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    aspect-ratio: 2 / 1; /* Format très large panoramique */
    overflow: hidden;
    
    /* Coins asymétriques DEW Construction */
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.detail-large-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Disposition asymétrique : Titre à gauche, paragraphes à droite */
.detail-impact-layout {
    display: grid;
    grid-template-columns: 1.2fr 3fr; /* La colonne de droite est beaucoup plus large */
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* Titre "Impact" en bleu nuit */
.impact-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #002244;
    margin: 0;
}

/* Paragraphes de droite */
.impact-right-col p {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.impact-right-col p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE - IMPACT DETAIL
   ========================================================================== */
@media (max-width: 768px) {
    .detail-large-media-box {
        aspect-ratio: 1.5 / 1;
        border-top-left-radius: 25px;
        border-bottom-right-radius: 25px;
        margin-bottom: 40px;
    }
    
    .detail-impact-layout {
        grid-template-columns: 1fr; /* Tout passe sur une seule colonne sur mobile */
        gap: 20px;
        padding: 0 10px;
    }
    
    .impact-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   31. CARROUSEL DE PROJETS ASSOCIES (VERSION COMPACTE)
   ========================================================================== */
.section-detail-carousel {
    background-color: var(--bg-blue-light); 
    padding: 50px 0 70px 0; /* Volume réduit (anciennement 80px/100px) */
}

/* Conteneur principal du carrousel */
.carousel-wrapper {
    position: relative;
    max-width: 1050px; /* Largeur maximale réduite */
    margin: 25px auto 0 auto;
    display: flex;
    align-items: center;
    padding: 0 35px;
}

/* La piste de défilement horizontal */
.carousel-track {
    display: flex;
    gap: 20px; /* Espace réduit entre les cartes */
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 5px;
    scrollbar-width: none; 
}

.carousel-track::-webkit-scrollbar {
    display: none; 
}

/* Ajustement de la taille des cartes du carrousel */
.carousel-card-link {
    text-decoration: none;
    min-width: calc(25% - 15px); /* Garde 4 cartes mais resserrées */
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-card-link:hover {
    transform: translateY(-3px);
}

/* Boite image version réduite */
.carousel-card-link .project-image-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Format carré parfait et plus sage */
    margin-bottom: 12px; /* Moins d'espace sous l'image */
    
    /* Coins arrondis asymétriques adoucis pour la petite taille */
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* Titre du projet plus petit */
.carousel-card-link .project-card-title {
    font-size: 0.95rem; /* Texte plus fin et discret */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

/* Sous-catégorie plus petite */
.carousel-card-link .project-card-cat {
    font-size: 0.68rem;
    letter-spacing: 0.3px;
}

/* Boutons flèches ajustés par rapport à la nouvelle hauteur */
.carousel-nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #a0aec0;
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    transition: color 0.2s ease;
    z-index: 5;
    padding: 5px;
}

.carousel-nav-btn:hover {
    color: #002244;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }

/* ==========================================================================
   RESPONSIVE - CARROUSEL COMPACT
   ========================================================================== */
@media (max-width: 1024px) {
    .carousel-card-link {
        min-width: calc(50% - 10px); /* 2 cartes par ligne sur tablette */
    }
}

@media (max-width: 650px) {
    .carousel-wrapper {
        padding: 0;
    }
    .carousel-card-link {
        min-width: 75%; /* Laisse déborder la suite sur mobile */
    }
}



/* ==========================================================================
   32. PAGE CONTACT & FORMULAIRE DE DEMANDE
   ========================================================================== */
.section-page-contact {
    background-color: var(--bg-blue-light); /* Fond bleu glacier clair uniforme */
    padding: 100px 0 140px 0;
}

.main-contact-title {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fca311; /* Jaune orangé DEW */
    margin: 10px auto 70px auto;
}

/* Alignement parallèle Coordonnées / Formulaire */
.contact-two-columns-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    align-items: start;
}

/* --- COLONNE COORDONNÉES --- */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 10px;
}

.info-block-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Petites icônes indicatrices jaunes */
.info-icon-yellow {
    color: #fca311;
    font-size: 1.2rem;
    margin-top: 3px;
    width: 20px;
}

.info-texts h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 6px;
}

.info-texts h3 a {
    color: #002244;
    text-decoration: none;
}

.info-texts p {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* Boutons réseaux sociaux encadrés en carrés */
.contact-social-boxes {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #fca311; /* Bordure orange dorée */
    background: none;
    color: #fca311;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.social-box-btn:hover {
    background-color: #fca311;
    color: #ffffff;
}

/* --- COLONNE FORMULAIRE (CARTE BLANCHE ACCUEILLANTE) --- */
.form-white-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 4px 20px rgba(0, 34, 68, 0.02);
}

.form-white-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fca311;
    margin-bottom: 20px;
}

.form-instructions {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Éléments de saisie internes */
.dew-main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row-two-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.form-group label {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #002244;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 12px 14px;
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    color: #002244;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #00a3c4; /* Focus clair turquoise */
}

/* Grand bouton d'envoi de formulaire orange */
.btn-submit-form-orange {
    background-color: #fca311;
    color: #ffffff;
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px;
    border-radius: 30px; /* Bouton très arrondi comme sur la capture */
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn-submit-form-orange:hover {
    background-color: #e59209;
}




/* ==========================================================================
   RESPONSIVE - CONTACT
   ========================================================================== */
@media (max-width: 992px) {
    .contact-two-columns-layout {
        grid-template-columns: 1fr; /* Une seule colonne sur tablette */
        gap: 60px;
    }
    .main-contact-title {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
}

@media (max-width: 550px) {
    .form-row-two-inputs {
        grid-template-columns: 1fr; /* Les inputs se superposent sur mini smartphone */
    }
    .form-white-card {
        padding: 30px 20px;
    }
}