
:root{--card:#fff;--ink:#0f172a;--muted:#0f172a;--brand:#20a3e4;--brand-2:#22c55e}
*{box-sizing:border-box}html,body{margin:0;padding:0}
body{font-family:Poppins,Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:#f6f8fb}
.container{width:min(1100px,92%);margin:0 auto}
.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.75);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid #e5eaf1}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 0}
.brand{display:flex;align-items:center;text-decoration:none;color:inherit}
.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-title{font-weight:700;font-size:28px;letter-spacing:2px}
.brand-sub{font-weight:400;font-size:13px;color:var(--muted);margin-top:2px}
.nav{display:flex;gap:20px}.nav a{color:#0f172a;text-decoration:none;font-weight:500}.nav a:hover{color:var(--brand)}
.nav-toggle{display:none;background:none;border:1px solid #cbd5e1;border-radius:8px;padding:6px 10px;font-size:18px}





.hero{position:relative;min-height:78vh;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:saturate(1.1) contrast(1.05)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,.35))}
.hero-content{position:relative;color:#fff;text-align:center;padding:64px 0}
.display{font-size:clamp(28px,4vw,44px);margin:0 0 12px 0;font-weight:700}
.lead{font-size:clamp(16px,2.2vw,20px);opacity:.95;margin:0 auto 20px auto;max-width:820px}
.cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn{display:inline-block;padding:12px 20px;border-radius:12px;text-decoration:none;font-weight:600;border:1px solid transparent}
.btn-primary{background:linear-gradient(135deg,var(--brand),var(--brand-2));color:#fff}
.btn-ghost{background:#ffffff14;color:#fff;border-color:#ffffff3a}
.kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:22px}
.kpi{background:#ffffff14;border:1px solid #ffffff3a;border-radius:12px;padding:12px}
.kpi strong{display:block;font-size:22px}.kpi span{font-size:13px;opacity:.9}
@media (max-width:680px){.kpis{grid-template-columns:repeat(2,1fr)}}
.section{padding:60px 0}.section.alt{background:#f0f5ff}
.h1{font-size:32px;margin:0 0 8px 0}.h2{font-size:26px;margin:0 0 16px 0}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media (max-width:900px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.cards{grid-template-columns:1fr}}
.card{background:var(--card);border:1px solid #e5eaf1;border-radius:16px;padding:16px}
.card img{width:100%;height:auto;border-radius:12px;border:1px solid #e5eaf1;margin-bottom:10px}
.grid-2{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media (max-width:900px){.grid-2,.grid-3{grid-template-columns:1fr}}
.rounded{border-radius:16px}.shadow{box-shadow:0 8px 30px rgba(2,8,20,.08)}.mt{margin-top:16px}
.checklist{list-style:none;padding-left:0}.checklist li{padding-left:26px;position:relative;margin:10px 0}
.checklist li:before{content:"✓";position:absolute;left:0;top:0.1rem;color:#16a34a;font-weight:700}
.info-box{background:var(--card);border:1px solid #e5eaf1;border-radius:16px;padding:16px}
.testimonials{display:grid;gap:12px}
.t-item, .testimonials blockquote{margin:0;background:var(--card);border:1px solid #e5eaf1;border-radius:16px;padding:16px}
.testimonials blockquote span{display:block;color:var(--muted);margin-top:8px}



/* Footer général moderne */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 3rem 1rem;
  font-family: Poppins, sans-serif;
  line-height: 1.6;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Grille du footer */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Chaque colonne */
.footer-grid > div {
  flex: 1 1 250px;
  min-width: 200px;
}

/* Logo responsive avec effet léger */
.brand-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.3s;
}

.brand-logo img:hover {
  transform: scale(1.05);
}

/* Titres et listes */
.footer-grid h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: #0ea5e9;
  text-transform: uppercase;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Liens modernes */
.footer-grid ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer-grid ul li a:hover {
  color: #22c55e;
  transform: translateX(3px);
  text-decoration: underline;
}

/* Texte bas du footer */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* Responsive pour écrans moyens */
@media (max-width: 900px) {
  .footer-grid {
    gap: 1.5rem;
  }
}

/* Responsive pour mobiles */
@media (max-width: 300px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-grid > div {
    flex: 1 1 100%;
  }

  .footer-grid h4 {
    font-size: 1.1rem;
  }

  .footer-grid ul li {
    font-size: 0.95rem;
  }
}








.fade-in{opacity:0;transform:translateY(12px);transition:all .6s ease}.fade-in.visible{opacity:1;transform:translateY(0)}
.form{display:grid;gap:12px}.form input,.form select,.form textarea{width:100%;padding:10px;border:1px solid #d0d7e2;border-radius:10px;font:inherit}.form button{cursor:pointer}
.consent{display:flex;gap:8px;align-items:center}


/* ...existing code... */
.site-footer .list a {
  color: #f0f1f0; /* Choisis la couleur que tu veux */
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .list a:hover {
  color: #0faeb9; /* Couleur au survol */
}
/* ...existing code... */


:root {
  --primary-color: #0077cc;
  --secondary-color: #1da2d6;
  --text-color: #333333;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
}



.site-footer .footer-grid h4 {
  text-decoration: underline;
}





#nos-valeurs .checklist li {
  text-transform: uppercase; /* tout en majuscules */
  font-weight: bold;
}

#nos-valeurs .checklist li::first-letter {
  color: #09379b; /* couleur différente pour la première lettre */
  font-size: 1.2em; /* (optionnel) un peu plus grande */
}





/* Bloc formulaire */
#contactForm {
  position: relative;              /* nécessaire pour positionner l'image */
  overflow: hidden;                /* évite que l'image dépasse */
  padding: 2rem;
  border-radius: 12px;
  background: rgba(131, 126, 126, 0.9); /* légère transparence */
  z-index: 1;
}

/* Image de fond transparente avec fondu */
#contactForm::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("assets/images/image6.jpg") no-repeat center/cover;
  opacity: 0.2;                    /* transparence de l’image */
  z-index: -1;                     /* place l’image derrière le contenu */
  filter: blur(1px);               /* optionnel : léger fondu/flou */
}





.brand-text img {
  max-width: 100%;
  height: auto;
  display: block;
}






.nav a.active {
  font-weight: bold;
  color: #062635; /* bleu clair */
  border-bottom: 2px solid #0077cc; /* souligné */
}




/* Style pour les images responsives */  

img.responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centre l'image */
}

/* Optionnel : pour limiter la taille maximale */
@media (min-width: 768px) {
    img.responsive {
        max-width: 80%;
    }
}

@media (min-width: 1200px) {
    img.responsive {
        max-width: 60%;
    }
}















/* Messages du formulaire */
#formMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Style du bouton pendant le chargement */
.btn-loading {
    display: none;
}

/* Validation des champs */
input:invalid, textarea:invalid, select:invalid {
    border-color: #dc3545;
}

input:valid, textarea:valid, select:valid {
    border-color: #28a745;
}



















































/* --------------------
   Base
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* --------------------
   Header
-------------------- */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}





.brand-logo img {
  height: 110px; /* taille augmentée */
  border-radius: 30px;
  transition: transform 0.3s ease, height 0.3s ease;
}

/* Optionnel : effet au survol */
.brand-logo img:hover {
  transform: scale(1.05);
}

/* Ajustement sur mobile */
@media (max-width: 768px) {
  .brand-logo img {
    height: 70px;
  }
}






.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #0066cc;
}

/* --------------------
   Sections (contenu)
-------------------- */


h2 {
  color: #0c0c0c;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  font-weight: 500;
  border-left: 4px solid #0066cc;
  padding-left: 0.5rem;
}

p, li {
  margin-bottom: 1rem;
}

section, .content-block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------
   Footer
-------------------- */
.site-footer {
  background: #05276eaf;
  color: #ccc;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.site-footer .list {
  list-style: none;
}

.site-footer .list li {
  margin-bottom: 0.5rem;
  color: #fdfdfdce;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

/* --------------------
   Responsive
-------------------- */
@media (max-width: 768px) {
 /* .nav {
    display: none; /* prévoir un menu burger si besoin */
 /* }*/
  
  .nav-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
}


/* Menu mobile */
.nav {
  display: flex;
  gap: 1.5rem;
}



@media (max-width: 768px) {
  /*.nav {
    display: none; /* Masqué par défaut */
  /*}*/

  .nav-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
  }
}




















/* ===== Animations de base ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Hero section ===== */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
  animation: gradientShift 8s ease infinite alternate;
}
@keyframes gradientShift {
  from { background-position: left; }
  to { background-position: right; }
}

/* ===== Navigation ===== */
.nav a {
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px;
  width: 0%;
  background: #7a97b8;
  transition: width 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
}

/* ===== Boutons modernes ===== */
.btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #0077ff, #00d4ff);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ===== Cartes ===== */
.card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}







/* 🎬 Animation d'apparition du logo */
.brand-logo img {
  opacity: 0;
  transform: translateY(-10px);
  animation: logoFadeIn 1.2s ease-out forwards;
}

/* 🌀 Effet de pulsation douce au survol */
.brand-logo img:hover {
  transform: scale(1.05) rotate(2deg);
  transition: transform 0.4s ease-in-out;
}

/* Animation d'entrée */
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo du footer : fade-in plus doux */
footer .brand-logo img {
  opacity: 0;
  animation: logoFadeInFooter 1.5s ease forwards;
}

@keyframes logoFadeInFooter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}





.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.values-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
}

.values-list li:last-child {
  border-bottom: none;
}

.value-letter {
  color: #0872b8;
  font-weight: bold;
  margin-right: 0.5rem;
}




















.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  text-align: left;
}

.hero-right {
  text-align: left;
  background: rgba(0,0,0,0.4);
  padding: 1.5rem;
  border-radius: 8px;
}




















/* Effet de fade-in + slide-up au scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation hover sur les cartes */
.cards .card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cards .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Témoignages */
.testimonials blockquote {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}
.testimonials blockquote.visible {
  opacity: 1;
  transform: translateY(0);
}














.about-img {
  width: 100%;
  border-radius: 20px; /* arrondit les coins */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* belle ombre douce */
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.about-img:hover {
  transform: scale(1) rotate(-1deg); /* zoom léger et effet dynamique */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}







.about-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-img-container img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,82,204,0.4), rgba(0,0,0,0.2));
}

.about-img-container:hover img {
  transform: scale(1.05);
}





.values-list {
  list-style: none;          /* enlève les puces */
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;    /* items en colonne */
  align-items: center;       /* CENTRAGE horizontal */
  justify-content: center;   /* CENTRAGE vertical (si hauteur définie) */
  text-align: center;        /* texte centré */
}









.about-img {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 1s ease-out;
}

.about-img.visible {
  opacity: 1;
  transform: none;
}

















.member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member img {
  width: 120px;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  border-radius: 50%;
}




















/* === CARROUSEL D’IMAGES SANS FOND === */
.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0; /* plus de bordure */
  background: none; /* fond transparent */
  box-shadow: none; /* supprime toute ombre */
}

.testimonial-track {
  display: flex;
  width: 300%;
  animation: slidePhotos 12s infinite ease-in-out;
}

.testimonial-photo {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-photo img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.testimonial-photo img:hover {
  transform: scale(1.05);
}

/* Animation automatique */
@keyframes slidePhotos {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(0%); }
  40%  { transform: translateX(-100%); }
  73%  { transform: translateX(-100%); }
  80%  { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

/* Pause au survol */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-photo img {
    max-height: 220px;
  }
}

















/* Boutons navigation */
.nav-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-buttons button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-buttons button.active {
  background: #0052cc;
}











.slider {
  display: flex;
  transition: transform 8s ease-in-out; /* avant 0.6s → maintenant 1s */
  width: 300%;
}










.slider {
  position: relative;
  height: auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}
































/* --- Témoignages simples et professionnels --- */
.testimonials-simple {
  background: #f9fbff;
  padding: 4rem 2rem;
  border-top: 1px solid #e0e6f0;
  border-bottom: 1px solid #e0e6f0;
  text-align: center;
}

.testimonials-simple h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: #ffffff;
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.author {
  font-weight: 600;
  color: #0052cc;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-simple {
    padding: 3rem 1.5rem;
  }

  .testimonials-simple h2 {
    font-size: 1.6rem;
  }

  .quote {
    font-size: 1rem;
  }
}





































.testimonials {
  text-align: center;
  padding: 60px 20px;
  background-color: #eaf0f8;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: 60px auto;
}

.testimonials h2 {
  color: #0b3d91;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.testimonials h2::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  width: 4px;
  height: 40px;
  background-color: #0052cc;
  transform: translateY(-50%);
  border-radius: 2px;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  overflow: visible;
}

/* Style des cartes */
.testimonial-card {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(219, 219, 219, 0.08);
  padding: 20px 25px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.15);
}

.quote {
  font-style: italic;
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.author {
  color: #333;
  font-weight: 500;
}

.author span {
  color: #0052cc;
  font-weight: 600;
}

/* ✅ Version responsive sans coupure */
@media (max-width: 992px) {
  .testimonials-container {
    flex-wrap: wrap; /* permet de repasser à la ligne sur petits écrans */
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 400px;
  }
}














.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 55px;
  flex-wrap: wrap;
}













@media screen and (orientation: landscape) and (max-height: 500px) {
  .site-header {
    display: none;
  }
}





/* --- Correction pour forcer l'affichage du header, logo et langue en paysage --- */
@media screen and (orientation: landscape) {
  .site-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Logo toujours visible */
  .site-header .brand-logo img {
    display: block !important;
    height: 45px;
    width: auto;
  }

  /* Langue toujours visible et bien alignée */
  .lang-switcher {
    display: block !important;
    margin-left: auto;
    margin-right: 10px;
  }

  /* Ajuster le contenu principal pour éviter qu’il soit caché sous le header */
  body {
    padding-top: 90px;
  }

  /* Optionnel : réduire légèrement la taille du texte du menu pour petits écrans en paysage */
  .nav a {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
body {
  padding-top: 80px;
}











.nav-menu {
  display: none;
  transition: all 0.3s ease;
}

.nav-menu.active {
  display: block;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



























































































/* ============================
   ✅ Correction visibilité menu burger
   ============================ */

/* Par défaut — sur mobile */
.nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1d66b9; /* Rouge visible sur fond clair */
  cursor: pointer;
  margin-left: 1rem;
  z-index: 10000;
}

/* Cache le menu complet sur mobile */
.nav {
  display: none;
  flex-direction: column;
  background: #ebedf0;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: 1rem;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
}

 .nav.nav-open {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
  }

/* ============================
   ✅ Version bureau (large écran)
   ============================ */
@media (min-width: 840px) {
  .nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
  }

  /* 👇 C’est cette règle qui corrige ton problème */
  .nav-toggle {
    display: none !important;
  }


  @keyframes fadeIn { from {opacity:0; transform:translateY(-6px);} to {opacity:1; transform:none;} }
}






























/* 🚀 Correction définitive texte hero coupé sur mobile */
@media screen and (max-width: 768px) {
  p.lead {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    padding: 0 12px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* supprime les contraintes de la section hero si présentes */
  .hero-content {
    display: block !important;
    text-align: center !important;
    padding: 40px 0 !important;
  }
}


























/* --- RGPD Consent Block --- */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.consent:hover {
  background: #eef4ff;
  border-color: #93c5fd;
  box-shadow: 0 0 10px rgba(147, 197, 253, 0.3);
}

.consent input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.2);
  accent-color: #0077cc; /* couleur du thème */
  cursor: pointer;
}

.rgpd-container {
  display: flex;
  flex-direction: column;
}

.rgpd-text {
  font-size: 0.9rem;
  color: #1e293b;
  margin: 0;
  line-height: 1.5;
}

.privacy-link {
  color: #0077cc;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.privacy-link:hover {
  color: #0052cc;
  border-bottom: 1px dashed #0052cc;
}

/* ✅ Responsive */
@media (max-width: 640px) {
  .consent {
    flex-direction: row;
    align-items: center;
    padding: 10px;
  }

  .rgpd-text {
    font-size: 0.85rem;
  }
}


























/* === SECTION DEVIS RAPIDE ULTRA-MODERNE === */
.devis-rapide {
  position: relative;
  background: linear-gradient(135deg, #f1f2f3 0%, #2167a0 50%, #f0f2f7 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  overflow: hidden;
  text-align: center;
}

/* effet animé du fond */
.devis-rapide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 70%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08), transparent 70%);
  animation: float-bg 10s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes float-bg {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}

.devis-wrapper {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  padding: 3rem 2rem;
}

/* En-tête contact */
.devis-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-contact {
  background: #f5f4f2;
  color: #0f172a;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-contact:hover {
  background: #f5f4ef;
  transform: scale(1.05);
}

.info p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
.info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.3rem 0 0;
  color: #f3f3f1;
}

/* Titre principal */
.devis-rapide h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.devis-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* --- Champs avec label flottant --- */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.devis-form input,
.devis-form textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 1rem;
  color: #111;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.devis-form input:focus,
.devis-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.4);
}

.devis-form label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #666;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.devis-form input:focus + label,
.devis-form input:not(:placeholder-shown) + label,
.devis-form textarea:focus + label,
.devis-form textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 1rem;
  font-size: 0.8rem;
  color: #facc15;
  background: #aeb2b6;
  padding: 0 0.4rem;
  border-radius: 4px;
}

/* Bouton envoyer */
.btn-submit {
  background: linear-gradient(135deg, #0873ff, #c2c5cc);
  color: #fdfdfd;
  font-weight: 700;
  border: none;
  padding: 1rem 2rem;
  border-radius: 40px;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(250,204,21,0.3);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .devis-wrapper {
    padding: 2.2rem 1.5rem;
  }
  .devis-rapide h2 {
    font-size: 1.7rem;
  }
  .info h3 {
    font-size: 1.2rem;
  }
}
































/* Cache toutes les bannières et déclarations Cookiebot */
#CybotCookiebotDialog,
#CybotCookiebotDialogBody,
#CybotCookiebotDialogFooter,
#CybotCookiebotDialogPoweredByText,
#CybotCookiebotDialogDetailBody,
#CybotCookiebotDialogDetail,
#CybotCookiebotDialogDetailBodyContent,
#CookiebotDialog,
#CookieDeclaration,
div[id^="Cybot"],
iframe[src*="cookiebot"],
iframe[id*="Cybot"],
iframe[name*="Cybot"],
section[id*="Cookiebot"],
div[data-cookieconsent],
div[class*="Cookiebot"],
















































/* ✅ Supprime toute bordure et ombre du logo du footer */
.site-footer .brand-logo img,
img[alt="Plan"].rounded.shadow.mt {
  border: none !important;
  box-shadow: none !important;
}











.nav-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #104cd6;
  transition: transform 0.3s ease;
}

.nav-toggle:active {
  transform: scale(0.9);
}





























/* ✅ Correction uniquement pour la page clients */
body.page-clients {
  padding-top: 100px;
}

body.page-clients h1[data-i18n="clients_header"] {
  margin-top: 30px;
}





















































/* ===== Menu déroulant (style élégant) ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  font-weight: 600;
  color: #2f6fc2;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.3s;
}

.dropbtn:hover {
  color: #0077cc;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 10px 0;
  z-index: 1000;
  top: 100%;
  left: 0;
  animation: fadeIn 0.3s ease;
}

.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background-color: #f2f6fa;
  color: #0077cc;
}



/* Petite animation d'apparition */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



















/* ✅ Logo responsive et centré */
.site-header .brand-logo img {
  height: auto !important;
  width: auto !important;
  max-height: 200px !important; /* taille max sur grand écran */
  max-width: 220%;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out !important;
  object-fit: contain; /* empêche la déformation */
}

/* 📱 Ajustement sur mobile */
@media (max-width: 768px) {
  .site-header .brand-logo img {
    max-height: 100px !important; /* légèrement plus petit */
  }
}


.header-inner {
  display: flex;
  align-items: center;
}


.site-header .brand-logo img:hover {
  transform: scale(1.05);
}

































/* Cartes Prestations cliquables et visibles */
.cards-services .service {
  display: block;
  padding: 0; /* on laisse la carte pleine largeur */
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  border: 1px solid #eef2f6;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cards-services .service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #dbe6ff;
}

.cards-services .service h3 {
  margin: .6rem 1rem .2rem;
  font-size: 1.05rem;
}

.cards-services .service p {
  margin: 0 1rem 1rem;
}

.cards-services .badge {
  margin: .75rem 1rem 0;
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #eef2f6;
}

/* Sécurité : si reveal est présent, on force l'affichage */
#prestations.reveal { opacity: 1 !important; transform: none !important; }





:root { --bg-alt: #eef1f6; }





















/* ✅ Correction alignement du menu (Accueil et autres) */
.header-inner {
  display: flex;
  align-items: center; /* aligne verticalement tous les éléments du header */
}

.nav a {
  display: flex;
  align-items: center;
  padding-top: 6px; /* petit ajustement vertical uniforme */
}

/* ✅ Réduction légère du décalage causé par le logo plus grand */
.brand-logo img {
  vertical-align: middle;
  margin-bottom: 0;
}















ul {
  list-style-type: disc;
  color: var(--ink);
  margin-left: 1.2rem;
}

ul li {
  line-height: 1.6;
  font-weight: 400;
  color: #0f172a; /* texte plus contrasté */
}

ul li::marker {
  color: #003B8E; /* couleur des puces bleues Abiji */
  font-size: 1.2em;
}














/* Harmonisation du bouton "Demandez votre devis" */
.devis-rapide .btn.btn-primary {
  background: linear-gradient(135deg, #84a9dd, #1585ee);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 1.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,59,142,0.25);
}

.devis-rapide .btn.btn-primary:hover {
  background: linear-gradient(135deg, #1253b3, #003B8E);
  transform: translateY(-2px);
}












.breadcrumbs {
    font-size: .9rem;
    margin: .75rem 0 1.25rem;
    opacity: .8;
    color: #475569; /* même teinte que sur les autres pages */
  }

  .breadcrumbs a {
    color: #8639aa; /* garde la même teinte que le texte */
    text-decoration: underline;
  }

  .breadcrumbs a:hover {
    text-decoration: underline;
    opacity: 1;
    color: #e4754a;
  }
























  /* === Réduction réelle de la bande du header === */
.site-header {
  padding: 70px 0 !important;       /* Réduit l’espace haut/bas */
  height: 70px !important;         /* Fixe une hauteur raisonnable */
  background-color: white;         /* Garde la couleur d’origine */
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

/* === Logo plus compact === */
.site-header .brand-logo img {
  max-height: 125px !important;     /* Taille du logo réduite */
  width: auto;
  transition: all 0.3s ease;
}

/* === Menu compact === */
.nav a {
  padding: 4px 8px !important;
  font-size: 0.95rem !important;
}

/* === Selecteur de langue aligné plus bas === */
.lang-switcher select {
  padding: 3px 6px !important;
  font-size: 0.9rem;
}













/* === Logo footer plus compact === */
.site-footer .brand-logo img {
  max-height: 125px !important;     /* Taille du logo réduite */
  width: auto;
  transition: all 0.3s ease;
}



























.map-legend {
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}




























































.client-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}


/* Couleurs par enseigne */
.badge.mcdonalds { background: #058135; }   /* rouge McDo */
.badge.burgerking { background: #f5a623; } /* orange BK */
.badge.autogrill { background: #e20808; }  /* bleu Autogrill */


























/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #003b8e;
  color: #ffffff;
  padding: 16px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.btn-accept {
  background: #00c853;
  color: #fff;
}

.btn-refuse {
  background: #e53935;
  color: #fff;
}

.cookie-link {
  color: #bfd4f2;
  text-decoration: underline;
  font-size: 13px;
}






































/* ===============================
   DROPDOWN ACCUEIL
================================ */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  
}

.dropdown.open .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Mobile */
@media (max-width: 768px) {
  .dropdown-content {
    padding-left: 15px;
  }

 
}

















/* ===============================
   MENU BURGER MOBILE — VERSION FINALE
================================ */

@media (max-width: 768px) {

  .nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }
}






















/* =========================================================
   🔥 MENU BURGER — CORRECTION DÉFINITIVE
========================================================= */

@media (max-width: 768px) {

  /* Force l'affichage au-dessus du header */
  .nav {
    display: none !important;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 20000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }

  .nav.nav-open {
    display: flex !important;
  }

  .nav-toggle {
    display: block !important;
    z-index: 30000;
  }

  /* Désactive complètement le hover desktop */
  .dropdown:hover .dropdown-content {
    display: none !important;
  }
}














/* =========================================================
   🔥 MENU MOBILE – FORÇAGE TOTAL
========================================================= */

@media (max-width: 768px) {

  .mobile-nav {
    display: none !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    flex-direction: column !important;
    padding: 1rem !important;
    z-index: 999999 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  }

  .mobile-nav.nav-open {
    display: flex !important;
  }

  .nav-toggle {
    display: block !important;
    z-index: 1000000 !important;
  }

  /* Désactive TOUT hover desktop */
  .dropdown:hover .dropdown-content {
    display: none !important;
  }
}





/* =====================================================
   🔥 MENU MOBILE – VERSION QUI FONCTIONNE
===================================================== */

@media (max-width: 768px) {

  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  .nav-toggle {
    display: block !important;
    z-index: 10000;
  }

  .mobile-nav {
    display: none !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    flex-direction: column !important;
    padding: 1rem !important;
    z-index: 9998 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
  }

  .mobile-nav.nav-open {
    display: flex !important;
  }

  /* Désactive totalement le hover desktop */
  .dropdown:hover .dropdown-content {
    display: none !important;
  }

  .dropdown-content {
    position: static !important;
    box-shadow: none !important;
  }
}















/* ================================
   HEADER & MENU – CLEAN VERSION
================================ */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* ===============================
   LOGO HEADER – RÈGLE UNIQUE
================================ */

.logo {
  height: 80px;          /* 🔥 taille par défaut (desktop) */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}


@media (max-width: 768px) {
  .logo {
    height: 55px;
  }
}



/* ===== MENU ===== */

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Dropdown desktop */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.dropdown.open .dropdown-menu {
  display: block;
}

/* ===== MOBILE ===== */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
}

















.lang-switcher select {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}




























/* =====================================
   FIX MENU BURGER – GLOBAL (TOUTES PAGES)
===================================== */

@media (max-width: 768px) {
  .nav.open,
  .nav.nav-open {
    display: flex !important;
    flex-direction: column;
  }
}







/* Sous-menu mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
}





































/* ===== Sous-menu Accueil (mobile & JS) ===== */
.dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
}

/* Mobile : affichage via JS */
@media (max-width: 768px) {
  .dropdown.open > .dropdown-menu {
    display: flex;
  }
}

/* Desktop : hover */
@media (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1000;
  }
}








/* Supprimer les puces du sous-menu */
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}





















































/* =====================================================
   LOGO HEADER – OPTION A : TRÈS VISIBLE
===================================================== */

.site-header {
  height: 120px;                 /* header assumé */
  padding: 0;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Logo principal */
.logo {
  height: 120px;                  /* 🔥 LOGO BIEN VISIBLE */
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

/* Effet subtil au survol */
.logo:hover {
  transform: scale(1.05);
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .site-header {
    height: 120px;
  }

  .logo {
    height: 70px;                /* gros logo mobile, lisible */
    max-width: 260px;
  }
}
