:root{
  --text:#111;
  --text-muted:#444;
  --bg:#ffffff;
  --bg-soft:#f5f5f5;
  --card:#ffffff;
  --edge:#e0e0e0;

  --brand:#eeeeee;          /* noir élégant */
  --brand-contrast:#000000; /* texte clair */
  --brand-soft:#eeeeee;     /* gris clair pour hover */

  --link:#111;
  --visited:#555;

  /* tokens inchangés */
  --radius:16px;
  --radius-pill:999px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --container: min(1100px, 92vw);
  --max-text: 68ch;
  --max-hero: 780px;
}

/* ================== BASE / RESET LÉGER ================== */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; padding:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text); background:var(--bg);
  font-weight:600; line-height:1.55;
}
img {
  display: block;
  margin: 20px auto;   /* centre les images */
  width: 70%;          /* même largeur pour toutes */
  max-width: 500px;    /* limite pour éviter les images trop grandes */
  height: auto;        /* conserve les proportions */
  border-radius: 12px; /* coins arrondis comme avant */
}
/* ================== LIENS ================== */
a {
  text-decoration: none;
  color: var(--link);
}

a:hover {
  text-decoration: underline;
}
/* Confort de lecture des paragraphes & listes */
p, ul, ol{ max-width: var(--max-text); margin-inline:auto; }

/* Utils */
.container{ width:var(--container); margin-inline:auto; padding:2rem 1rem; }
.muted{ color:var(--text-muted); }
.small{ font-size:.92rem; color:var(--text-muted); }
.hr{ height:1px; background:var(--edge); border:0; margin:2rem 0; }

/* ================== TITRES (SEO lisible) ================= */
h1,h2,h3{ text-wrap:balance; text-align:center; margin:0 0 .8rem; }
h1{ font-size: clamp(2rem, 5vw, 3rem); line-height:1.15; font-weight:900; }
h2{ font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight:800; }
h3{ font-size: clamp(1.15rem, 2.4vw, 1.35rem); font-weight:800; }

/* ================= HEADER & NAVIGATION =================== */
.site-header{
  display:flex; align-items:center; justify-content:space-between;
  width:var(--container); margin:0 auto; padding:1rem 0;
}
.logo{ display:flex; align-items:center; gap:.6rem; font-weight:900; }
.logo img{ width:42px; height:auto; }

/* Nav (mobile‑first : cachée) */
.nav{ display:none; align-items:center; gap:1rem; }
.nav a{
  padding:.55rem .8rem; border-radius:var(--radius-pill); color:var(--text);
}
.nav a:hover{ background:var(--brand-soft); text-decoration:none; }
.nav a[aria-current="page"], .nav a.active{ background:#eaecef; }

/* Burger */
.burger{
  background:transparent; border:1px solid var(--edge);
  color:var(--text); border-radius:12px; padding:.45rem .65rem; cursor:pointer;
}

/* Desktop */
@media (min-width:860px){
  .burger{ display:none; }
  #main-nav{ display:flex; align-items:center; gap:.6rem; flex-wrap:nowrap; }
  #main-nav .nav-links{ display:flex; gap:.6rem; flex-wrap:nowrap; }
  #main-nav a{ white-space:nowrap; font-weight:600; padding:.55rem .75rem; }
  #main-nav .nav-cta-desktop{ display:flex; gap:.6rem; margin-left:auto; }
  #main-nav .nav-cta-mobile{ display:none; }
}
@media (min-width:1100px){
  #main-nav .nav-links{ gap:.9rem; }
  #main-nav a{ padding:.6rem .9rem; }
}

/* ===== Mobile overlay + CTA ===== */
@media (max-width:859px){
  /* Overlay du menu */
  #main-nav{
    display:none; position:fixed; inset:0;
    background:rgba(255,255,255,.98);
    backdrop-filter:saturate(1.2) blur(6px);
    flex-direction:column; align-items:center; gap:1rem;
    padding-top:6rem; z-index:2500; border-top:1px solid var(--edge);
  }
  #main-nav.open{ display:flex; }
  body.menu-open .site-header{ pointer-events:none; }
  body.menu-open .burger{ pointer-events:auto; }

  .nav-links{ display:flex; flex-direction:column; gap:.6rem; width:100%; padding:0 1rem; }
  #main-nav a{ font-size:1.1rem; padding:1rem; width:100%; text-align:center; }

  .nav-cta-desktop{ display:none; }
  .nav-cta-mobile{
    margin-top:auto; padding:1.5rem; width:100%;
    display:flex; flex-direction:column; gap:.8rem;
  }
  .nav-cta-mobile a{ width:100%; }

  /* CTA mobile = même couleur que le site */
  #main-nav .nav-cta-mobile .btn-primary{
    background: var(--brand);
    color: var(--brand-contrast);
    border-color: var(--brand);
  }
  #main-nav .nav-cta-mobile .btn-primary:hover{
    filter: brightness(0.92);
  }
  #main-nav .nav-cta-mobile .btn-outline{
    background: var(--brand-soft);
    border: 1px solid transparent;
    color: #0a7 ;
  }

  /* Bloque le scroll quand le menu est ouvert */
  body.menu-open{ overflow:hidden; }
}

/* ======================== HERO ========================== */
.hero{
  background:var(--bg-soft);
  border:1px solid var(--edge);
  border-radius:var(--radius);
  width:var(--container); margin:1rem auto;
  padding:clamp(1.25rem, 4vw, 3rem);
  box-shadow:var(--shadow);
  text-align:center;
}
.hero .hero-content{ max-width:var(--max-hero); margin-inline:auto; }
.hero p{ color:var(--text-muted); margin:0 0 1.1rem; }
.cta-row{ display:flex; gap:.8rem; flex-wrap:wrap; justify-content:center; }

/* Héros : sécurité de centrage */
.hero .hero-content{ text-align:center; }
.hero .cta-row{ justify-content:center; }

/* ====================== SECTIONS ======================== */
section{ margin:2.5rem 0; }
.section-intro{ color:var(--text-muted); margin-bottom:1rem; text-align:center; }

/* Alternance douce pour respirer */
.section-alt{
  background:var(--bg-soft);
  border:1px solid var(--edge);
  border-radius:var(--radius);
  padding:1.5rem;
}

/* ==================== GRILLES & CARTES ================== */
.grid-2, .grid-3{ display:grid; gap:1rem; }
.grid-2{ grid-template-columns:1fr; }
.grid-3{ grid-template-columns:1fr; }
@media (min-width:720px){
  .grid-2{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:900px){
  .grid-3{ grid-template-columns:repeat(3,1fr); }
}
.card{
  background:var(--card);
  border:1px solid var(--edge);
  border-radius:var(--radius);
  padding:1.1rem;
  box-shadow:var(--shadow);
  text-align:center;
}
.card h3{ margin:.2rem 0 .45rem; font-size:1.15rem; font-weight:800; }
.card p{ margin:0; color:var(--text-muted); }

/* ======================= TABLEAUX ======================= */
.table-scroll{ overflow:auto; }
.table{
  width:100%; border-collapse:collapse; background:var(--card);
  border:1px solid var(--edge); border-radius:12px;
}
.table th, .table td{ padding:1rem; border-bottom:1px solid var(--edge); text-align:center; }
.table th{ background:#f3f4f6; }

/* ===================== FORMULAIRES ====================== */
form{ display:grid; gap:1rem; }
fieldset{
  border:1px solid var(--edge);
  border-radius:12px;
  padding:1rem;
  background:#fff;
  max-width: var(--max-text);
  margin-inline:auto;
}
legend{ padding:0 .4rem; font-weight:800; }
label{ display:grid; gap:.4rem; font-weight:700; text-align:left; }
input, textarea, select{
  appearance:none; width:100%;
  padding:.8rem 1rem; border:1px solid var(--edge); border-radius:12px;
  background:#ffffff; color:var(--text); font-weight:600;
}
input::placeholder, textarea::placeholder{ color:#9aa0a6; }
input:focus, textarea:focus, select:focus{
  outline:none; border-color:var(--brand);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}
.checkbox{ display:flex; align-items:center; gap:.6rem; }
.actions{ display:flex; gap:.6rem; flex-wrap:wrap; justify-content:center; }

/* ======================== BOUTONS ======================= */
.btn-primary, .btn-outline{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.25rem; border-radius:var(--radius-pill);
  font-weight:800; border:2px solid transparent; line-height:1; cursor:pointer;
  transition:transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary{ background:var(--brand); color:var(--brand-contrast); }
.btn-primary:hover{ transform:translateY(-1px); }
.btn-outline{ background:var(--brand-soft); color:var(--text); }
.btn-outline:hover{ background:color-mix(in srgb, var(--brand-soft) 85%, #000 15%); }

/* CTA large sur très petits écrans */
@media (max-width:420px){
  .cta-row a{ width:100%; text-align:center; }
}

/* ======================== FOOTER ======================== */
.site-footer{
  width:100%;
  min-height:220px; /* hauteur fixe du footer avec image */
  border-top:1px solid var(--edge);
  text-align:center;

  /* image de fond + voile sombre */
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/footer.png") center/cover no-repeat;

  /* centrage du contenu */
  display: flex;
  flex-direction: column;   /* empile les <p> verticalement */
  justify-content: center;  /* centre vertical */
  align-items: center;      /* centre horizontal */
  padding: 1rem;            /* petite respiration interne */

  color:#fff;
}

/* Texte */
.site-footer p,
.site-footer a,
.site-footer small{
  color:#fff;
  margin:.3rem 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.35); /* lisibilité sur la carte */
}

/* Version mobile : voile plus fort si besoin */
@media (max-width: 600px) {
  .site-footer {
    padding: 0.6rem;
    background: 
      linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("../img/footer.png") center/cover no-repeat;  }
}

/* ====================== ACCESSIBILITÉ ==================== */
:focus-visible{ outline:none; box-shadow:0 0 0 3px color-mix(in srgb, var(--brand) 30%, transparent); border-radius:8px; }
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:8px; top:8px; width:auto; height:auto; padding:.6rem .8rem;
  background:#fff; border:2px solid var(--brand); border-radius:10px; z-index:1001;
}

/* ================== ANTI-DÉBORDEMENT ==================== */
html, body{ overflow-x:hidden; }

/* ===== Uniformisation du rendu “centré propre” ===== */
.container, .features, .highlight,
.container > section, .container > h2,
.features h2, .highlight h2 { text-align:center; }
.grid-2, .grid-3 { place-items:center; }

/* Formulaire : le contenu reste lisible à gauche */
form, form *{ text-align:center; }
form section[aria-label="Contact direct"],
form section[aria-label="Informations utiles"]{ text-align:center; }
form section[aria-label="Informations utiles"] ul{
  list-style-position: inside; padding-left:0; margin:0 auto; text-align:left;
}

/* ===== Menu desktop compact (évite 2 lignes) ===== */
@media (min-width: 860px){
  #main-nav{ flex-wrap: nowrap; gap: .6rem; }
  #main-nav .nav-links{ flex-wrap: nowrap; gap: .6rem; }
  #main-nav a{ white-space: nowrap; font-size: .95rem; padding: .45rem .65rem; }
}
@media (min-width: 1100px){
  #main-nav .nav-links{ gap: 1rem; }
  #main-nav a{ font-size: 1rem; padding: .5rem .75rem; }
}

.hero-fallback {
  display: block;
  margin: 20px auto; /* centre l'image */
  max-width: 80%;    /* s'adapte aux petits écrans */
  height: auto;      /* garde les proportions */
}

/* Centrage de la section "Infos utiles" */
section[aria-label="Informations utiles"] {
  text-align: center; /* centre le titre */
  margin-top: 2rem;
}

section[aria-label="Informations utiles"] ul {
  list-style-position: inside; /* les puces restent propres */
  display: inline-block;       /* permet de centrer le bloc UL */
  text-align: left;            /* texte aligné à gauche (lisibilité) */
  padding: 0;
  margin: 0 auto;
}

@media (min-width:860px){
  header.site-header{ position:fixed; top:0; left:0; right:0; z-index:1500; background:var(--bg); border-bottom:1px solid var(--edge); }
  main{ padding-top:80px; } /* ajuste selon la hauteur réelle du header */
}






/* Sous-menu - base */
.has-submenu{ position:relative; display:inline-block; }
.submenu{ display:none; }

/* Afficher quand .open est présent (mobile + desktop) */
.has-submenu.open > .submenu{ display:block; }

/* Style du bouton comme un lien de nav */
.submenu-toggle{
  background:transparent; border:0; cursor:pointer;
  padding:.55rem .8rem; border-radius:var(--radius-pill);
  font:inherit; color:var(--text); font-weight:600;
}
.submenu-toggle:hover{ background:var(--brand-soft); }

/* Liens du sous-menu */
.submenu{ list-style:none; margin:.3rem 0 0; padding:.25rem; }
.submenu a{
  display:block; padding:.55rem .8rem; border-radius:12px; text-decoration:none;
}
.submenu a:hover{ background:var(--brand-soft); }

/* Desktop : dropdown flottant */
@media (min-width:860px){
  .submenu{
    position:absolute; top:100%; left:0; min-width:240px;
    background:#fff; border:1px solid var(--edge); border-radius:12px;
    box-shadow:var(--shadow); z-index:1200;
  }
  /* Ouverture aussi au survol en desktop */
  .has-submenu:hover > .submenu{ display:block; }
}

/* Mobile : “accordéon” plein largeur */
@media (max-width:859px){
  .has-submenu{ display:block; width:100%; }
  .submenu{ padding:.25rem .5rem; }
  .submenu a{ width:100%; text-align:center; }
}

/* --- SOUS-MENU : corrige le flicker au survol --- */
.has-submenu{ position: relative; display: inline-block; padding-bottom: .25rem; } /* étend la zone hover */
.submenu{ display: none; list-style: none; margin: 0; padding: .25rem; }            /* pas de margin-top */

/* Afficher quand clic (classe .open) */
.has-submenu.open > .submenu{ display: block; }

/* Desktop : dropdown flottant, sans “trou” entre bouton et menu */
@media (min-width: 860px){
  .submenu{
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: #fff; border: 1px solid var(--edge); border-radius: 12px;
    box-shadow: var(--shadow); z-index: 2000;   /* passe devant tout */
  }
  /* Ouverture au survol (en plus du clic) */
  .has-submenu:hover > .submenu{ display: block; }
}

/* Liens du sous-menu (inchangé, mais je redonne pour clarté) */
.submenu a{
  display: block; padding: .55rem .8rem; border-radius: 12px; text-decoration: none;
}
.submenu a:hover{ background: var(--brand-soft); }

/* --- MOBILE : aligne le bouton comme les autres liens --- */
@media (max-width: 859px){
  .has-submenu{ display: block; width: 100%; }
  #main-nav .submenu-toggle{
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    background: transparent;
    border: 0;
    border-radius: var(--radius-pill);
    color: var(--text);
    font-weight: 600;
  }
  #main-nav .submenu-toggle:hover{ background: var(--brand-soft); }
  .submenu{ padding: .25rem .5rem; }
  .submenu a{ width: 100%; text-align: center; }
}

/* FIX: menu mobile cliquable */
@media (max-width:859px){
  body.menu-open .site-header{ pointer-events:auto; } /* réactive les clics */
  #main-nav{ z-index:3000; } /* s’assure que le menu est devant tout */
} 

@media (max-width: 859px){
  .mobile-cta{
    position: fixed; 
    bottom: 0; left: 0; right: 0;
    display: flex; 
    gap: .5rem;
    justify-content: space-around;
    padding: .5rem;
    z-index: 4000;
    background: #111;             /* barre noire élégante */
    border-top: 1px solid #f5d142;
  }

  .mobile-cta a{
    flex: 1;                      /* occupe la place équitablement */
    text-align: center;
    padding: .6rem .7rem;         
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;

    background: #ffffff;          /* fond or */
    color: #111;                  /* texte noir */
    border: 1px solid #ffffff;
  }

  .mobile-cta a:hover{
    background: #000000;          /* or plus clair au hover */
    color: #ffffff;
  }

  /* Ajuster le bas de page pour ne pas masquer le footer */
  body{
    padding-bottom: 70px;         /* espace sous la barre */
  }
}


/* ================= LOGO ================= */

/* Logo par défaut (desktop) */
.logo img {
  width: 42px;   /* petit, aligné avec le menu */
  height: auto;
}

/* Logo mobile : centré et plus grand */
.logo-mobile img {
  width: 140px;   /* plus grand que desktop */
  height: auto;
}

.logo-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}

/* Masquer le logo mobile en desktop */
@media (min-width: 860px) {
  .logo-mobile { display: none; }
}

/* Masquer le logo desktop en mobile */
@media (max-width: 859px) {
  .logo { display: none; }
}

.hero-logo {
  text-align: center;
  margin: 5px 0;
}

.hero-logo img {
  max-width: 500px;
  height: auto;
}

.hero {
  margin-top: 0; /* évite un gros trou sous le logo */
}

/* Résumé compact, centré */
.quote-summary--compact{
  text-align:center;
  background:#f6f8ff;
  border:1px solid #e2e7ff;
  border-radius:14px;
  padding:18px;
}
.quote-summary--compact .total-label{
  font-size:1rem;
  opacity:.75;
  margin-bottom:8px;
}
.quote-summary--compact .total-value{
  font-size:2rem;
  font-weight:800;
  letter-spacing:.3px;
}
.quote-summary--compact .total-note{
  margin-top:8px;
  font-size:.9rem;
  opacity:.7;
}
#calc-status{ text-align:center; width:100%; }


/* Résumé compact, centré (si pas déjà ajouté) */
.quote-summary--compact{ text-align:center; background:#f6f8ff; border:1px solid #e2e7ff; border-radius:14px; padding:18px; }
.quote-summary--compact .total-label{ font-size:1rem; opacity:.75; margin-bottom:8px; }
.quote-summary--compact .total-value{ font-size:2rem; font-weight:800; letter-spacing:.3px; }
.quote-summary--compact .total-note{ margin-top:8px; font-size:.9rem; opacity:.7; }

/* Centrer le message de statut */
#calc-status{ display:block; text-align:center; width:100%; margin-top:6px; }

/* ---- Sélecteur Devis / Réservation ---- */
.mode-switch{
  margin:8px 0 14px; padding:12px;
  border:1px solid #eee; border-radius:12px;
  display:flex; gap:16px; align-items:center; justify-content:center; flex-wrap:wrap;
}
.mode-title{ margin-right:6px; }

.mode-option{ position:relative; display:inline-flex; }
.mode-option input{
  position:absolute; inset:0;
  opacity:0; pointer-events:none; /* masque le radio natif */
}
.mode-option span{
  display:inline-block; padding:10px 18px; border-radius:9999px;
  border:1px solid #ddd; background:#fff; font-weight:700;
  transition:all .15s ease;
}
.mode-option input:checked + span{
  background:#0a7; color:#fff; border-color:#0a7;
  box-shadow:0 6px 18px rgba(10,167,0,.25);
}
.mode-option input:focus-visible + span{
  outline:3px solid rgba(0,120,255,.35); outline-offset:2px;
}

/* Centrage des boutons de calcul */
.calc-actions{
  display:flex;
  justify-content:center;   /* centre horizontalement */
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
#calc-status{
  display:block;
  text-align:center;
  width:100%;
  margin-top:6px;
}



/* Champs du formulaire en colonne */
#booking-form label {
  display: block;
  margin-bottom: 18px; /* espace entre les champs */
}

#booking-form input,
#booking-form select,
#booking-form textarea {
  width: 100%;
  display: block;
}

/* Sélecteur Devis / Réservation en vertical */
.mode-switch {
  display: flex;
  flex-direction: column;  /* pile en colonne */
  align-items: center; /* aligner à gauche */
  gap: 10px;
}

.mode-title {
  margin-bottom: 8px;
}

.mode-option span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 9999px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 700;
  transition: all .15s ease;
}
.mode-option input:checked + span {
  background: #0a7;
  color: #fff;
  border-color: #0a7;
  box-shadow: 0 6px 18px rgba(10,167,0,.25);
}





/* Champ avec bouton à droite */
.input-with-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-with-button input {
  flex: 1;
}

.input-with-button button {
  height: 56px;            /* même hauteur que l’input */
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f6f8ff;
  cursor: pointer;
  font-size: 1.2rem;
}

.input-with-button button:hover {
  background: #e2e7ff;
}


/* Bouton fixe en bas (mobile only) */
.cta-call-mobile {
  display: none; /* caché par défaut */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;             /* occupe toute la largeur */
  text-align: center;      /* texte centré */
  background: #0a7;        /* vert taxi */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 0;        /* pas de coins arrondis */
  box-shadow: 0 -2px 8px rgba(0,0,0,.25);
  text-decoration: none;
  z-index: 1000;
  transition: transform .3s ease, opacity .3s ease;
}

.cta-call-mobile:hover {
  background: #085;
}

/* Visible seulement sur mobile */
@media (max-width: 768px) {
  .cta-call-mobile {
    display: block;
  }
}

/* Bouton burger pleine largeur en haut */
.burger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;             /* pleine largeur */
  text-align: center;      /* texte centré */
  background: #0a7;        /* vert taxi */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 0;         /* espace vertical */
  border: none;
  border-radius: 0;        /* pas d’arrondi */
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  cursor: pointer;
  z-index: 2000;
  transition: transform .3s ease, opacity .3s ease, background .2s ease;
  display: flex;               /* flex pour centrer */
  justify-content: center;     /* centre horizontalement */
  align-items: center;         /* centre verticalement */
  gap: 8px;                    /* espace entre icône et texte */
}

/* Texte + icônes à l’intérieur */
.burger-label {
  font-size: 1.2rem;
  margin-left: 8px;
}

.icon-burger, .icon-close {
  font-size: 1.4rem;
}



/* === Cacher le bouton burger en desktop === */
@media (min-width: 860px) {
  .burger {
    display: none !important; /* priorité forte */
  }
}


/* === Menu Desktop : liens actifs en noir === */
@media (min-width: 860px) {
  #main-nav a {
    color: var(--text); /* par défaut noir */
  }
  #main-nav a[aria-current="page"], 
  #main-nav a.active {
    color: var(--text);        /* noir forcé */
    background: #0a7;       /* fond gris clair */
  }
}


/* === Bandeau haut (☰ Menu) ultra-fin === */
.burger {
  padding: 6px 0;       /* réduit la hauteur */
  font-size: 0.9rem;    /* texte plus fin */
  min-height: 40px;     /* garde un minimum accessible au doigt */
}

/* === Bandeau bas (📞 Appeler) ultra-fin === */
.cta-call-mobile {
  padding: 6px 0;       /* réduit la hauteur */
  font-size: 0.9rem;    /* texte plus fin */
  min-height: 40px;     /* garde un minimum accessible au doigt */
}

/* Ultra-fin mais lisible */
.burger,
.cta-call-mobile {
  padding: 4px 0;        /* réduit encore plus la hauteur */
  font-size: 0.85rem;    /* texte légèrement plus petit */
  font-weight: 600;      /* moins gras que 700 */
  min-height: 36px;      /* limite tactile iOS (minimum ~36-40px) */
}




/* Transparence élégante sur les CTA bas */
@media (max-width: 768px) {
  .cta-call-mobile,
  .cta-whatsapp-mobile {
    opacity: 0.90;                /* 92% opaque */
    backdrop-filter: blur(4px);   /* flou léger derrière (effet iOS) */
    transition: opacity 0.3s ease, transform 0.2s ease;
  }

  /* Au survol / au toucher → plus visibles */
  .cta-call-mobile:hover,
  .cta-whatsapp-mobile:hover {
    opacity: 1;                   /* 100% opaque au hover */
    transform: translateY(-1px);  /* petit effet de soulèvement */
  }
}


/* Numéro téléphone desktop dans le menu */
.nav-cta-desktop a {
  color: #0a7 !important;        /* vert maître */
  border-color: #0a7;            /* bordure verte */
}

.nav-cta-desktop a:hover {
  background: #0a7;              /* fond vert au hover */
  color: #fff !important;        /* texte blanc au hover */
}


/* === CTA FIXE MOBILE (Appeler / WhatsApp) === */
.mobile-cta-bar {
  position: fixed;
  bottom: -70px; /* caché au départ */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 999999;
  height: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Quand visible, slide vers le haut */
.mobile-cta-bar.visible {
  transform: translateY(0);
  bottom: 0;
  opacity: 1;
}

/* Boutons */
.cta-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  transition: transform 0.2s ease, filter 0.2s ease;
  font-size: 16px;
  line-height: 1;
}

/* Bouton "Appeler" */
.cta-call {
  background: var(--main-color, #2e9b72);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Bouton "WhatsApp" */
.cta-whatsapp {
  background: #25d366;
}

/* Effet tactile */
.cta-btn:active {
  transform: scale(0.96);
  filter: brightness(0.9);
}

/* Masqué sur desktop */
@media (min-width: 1024px) {
  .mobile-cta-bar {
    display: none;
  }
}