/* ============================================
   DAVRO RAMONAGE - Feuille de style globale v2
   Couleurs : Noir #1A1A1A | Orange #FF5703 | Blanc cassé #F9F7F4
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Lato:wght@300;400;700&display=swap');

/* ---- Variables globales ---- */
:root {
  --orange: #FF5703;
  --orange-dark: #d94800;
  --noir: #1A1A1A;
  --noir-doux: #2c2c2c;
  --blanc: #F9F7F4;
  --blanc-pur: #ffffff;
  --gris-clair: #f0eeeb;
  --gris-moyen: #e0ddd9;
  --gris-texte: #666;
  --font-titre: 'Barlow Condensed', sans-serif;
  --font-corps: 'Lato', sans-serif;
  --ombre: 0 4px 24px rgba(0,0,0,0.10);
  --ombre-forte: 0 8px 40px rgba(0,0,0,0.18);
  --rayon: 6px;
  --transition: all 0.28s ease;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-corps);
  background: var(--blanc);
  color: var(--noir);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Bandeau téléphone sticky ---- */
.topbar {
  background: var(--noir);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-family: var(--font-corps);
  letter-spacing: 0.02em;
}
.topbar a {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.topbar a:hover { color: #fff; }

/* ---- Header / Navigation ---- */
header {
  background: var(--blanc-pur);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
}

/* ✅ Logo header — 90px */
.logo img { height: 90px; width: auto; }

.logo-text {
  font-family: var(--font-titre);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--noir);
  letter-spacing: 0.03em;
  line-height: 1;
}
.logo-text span { color: var(--orange); }

nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
nav ul li a {
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--noir);
  padding: 8px 14px;
  border-radius: var(--rayon);
  transition: var(--transition);
}
nav ul li a:hover { color: var(--orange); }
nav ul li a.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
}
nav ul li a.nav-cta:hover { background: var(--orange-dark); color: #fff; }

/* Menu burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--noir);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--blanc-pur);
  border-top: 2px solid var(--gris-moyen);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid var(--gris-moyen);
  color: var(--noir);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--orange); padding-left: 8px; }
.nav-mobile a.nav-cta-mobile {
  background: var(--orange);
  color: #fff;
  text-align: center;
  border-radius: var(--rayon);
  padding: 14px;
  margin-top: 12px;
  border: none;
}

/* ---- Bouton flottant téléphone (mobile) ---- */
.btn-tel-flottant {
  display: none;
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 24px rgba(255,87,3,0.45);
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  direction: ltr !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.btn-tel-flottant:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 32px rgba(255,87,3,0.55);
}
.btn-tel-flottant svg { width: 20px; height: 20px; fill: #fff; }

/* ---- Utilitaires layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gris-clair); }
.section-dark { background: var(--noir); color: #fff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--noir);
  text-transform: uppercase;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--gris-texte);
  font-size: 1.05rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* Séparateur orange */
.divider {
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 15px 32px;
  border-radius: var(--rayon);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,87,3,0.30);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,87,3,0.40); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--noir);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c1500 60%, #1a1a1a 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="1" cy="1" r="1" fill="rgba(255,87,3,0.07)"/></svg>') repeat;
}
.hero-accent {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,3,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,87,3,0.15);
  border: 1px solid rgba(255,87,3,0.3);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 8px;
}
.hero-text h1 span { color: var(--orange); }
.hero-text .hero-sub {
  font-family: var(--font-titre);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.hero-tel .tel-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-tel .tel-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-tel .tel-number { font-family: var(--font-titre); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }

/* Carte hero */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
}
.hero-card h3 {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
}
.hero-card ul li:last-child { border-bottom: none; }
.hero-card ul li .check {
  width: 22px;
  height: 22px;
  background: rgba(255,87,3,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.75rem;
}
.costic-badge {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255,87,3,0.12);
  border: 1px solid rgba(255,87,3,0.25);
  border-radius: var(--rayon);
  display: flex;
  align-items: center;
  gap: 12px;
}
.costic-badge .costic-icon { font-size: 2rem; }
.costic-badge p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.costic-badge strong { color: var(--orange); }

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--blanc-pur);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--ombre);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,87,3,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-forte); border-top-color: var(--orange); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.5rem; margin-bottom: 18px; }
.service-card h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 12px;
}
.service-card p { color: var(--gris-texte); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.service-card .service-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card .service-link:hover { gap: 10px; }

/* ---- Arguments de confiance ---- */
.arguments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.argument-item { text-align: center; }
.argument-item .arg-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,87,3,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.argument-item:hover .arg-icon { background: var(--orange); }
.argument-item h3 {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.argument-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; }

/* ---- Avis clients ---- */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.avis-card {
  background: var(--blanc-pur);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--ombre);
  transition: var(--transition);
}
.avis-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-forte); }
.avis-etoiles { color: #f5a623; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.avis-card p { color: var(--gris-texte); font-size: 0.95rem; line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.avis-auteur { display: flex; align-items: center; gap: 12px; }
.avis-avatar {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-titre);
  flex-shrink: 0;
}
.avis-auteur strong { font-size: 0.92rem; display: block; color: var(--noir); }
.avis-auteur span { font-size: 0.8rem; color: var(--gris-texte); }

/* ---- Zone d'intervention ---- */
.zone-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.zone-dept { margin-bottom: 32px; }
.zone-dept h3 {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.zone-villes { display: flex; flex-wrap: wrap; gap: 8px; }
.ville-tag {
  background: var(--gris-clair);
  border: 1px solid var(--gris-moyen);
  color: var(--noir);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.ville-tag:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.zone-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ombre-forte);
  height: 400px;
}
.zone-map iframe { width: 100%; height: 100%; border: none; }

/* ---- CTA banner ---- */
.cta-banner {
  background: var(--orange);
  padding: 64px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--orange);
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 40px;
  border-radius: var(--rayon);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-banner .btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

/* ============================================
   ✅ FOOTER — Fond blanc
   ============================================ */
footer {
  background: var(--blanc-pur);
  color: var(--gris-texte);
  padding: 64px 0 0;
  border-top: 3px solid var(--gris-moyen);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  color: var(--gris-texte);
  margin-top: 8px;
}
.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--noir);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gris-moyen);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gris-texte);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--gris-texte);
}
.footer-contact-item .icon { color: var(--orange); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--gris-texte); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid var(--gris-moyen);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--gris-texte);
}
.footer-bottom a { color: var(--gris-texte); transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  /* Menu burger des 1024px : 6 entrees + bouton devis ne tiennent plus */
  nav ul { display: none; }
  .burger { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .zone-wrapper { grid-template-columns: 1fr; }
  .zone-map { height: 300px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto !important; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; padding: 25px 24px; }
  .hero-card { display: none; }
  .hero-text h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-tel-flottant { display: flex; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-container { height: 80px; }
  .logo img { height: 65px; }

  /* ✅ Option D — Cards condensées sur mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-top: none;
    border-left: 4px solid var(--gris-moyen);
    border-radius: 10px;
  }
  .service-card:hover {
    border-left-color: var(--orange);
    transform: none;
    box-shadow: var(--ombre);
  }
  .service-card .service-icon {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-card .service-icon-svg {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-card .icon-rock {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-card p { display: none; }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
  .service-card .service-link { font-size: 0.8rem; }

  /* Arguments — alignés horizontalement sur mobile */
  .arguments-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .argument-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .argument-item .arg-icon {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  /* Avis — 1 colonne */
  .avis-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-container { height: 70px; }
  .logo img { height: 55px; }
  .hero-text h1 { font-size: 2.4rem; }
}

/* === Cartes cliquables (services accueil + blog) === */
.service-card-link,
.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card-link .service-card,
.article-card-link .article-card {
  cursor: pointer;
  height: 100%;
}
.service-card-link:hover .service-card {
  transform: translateY(-6px);
  box-shadow: var(--ombre-forte);
  border-top-color: var(--orange);
}
.service-card-link:hover .service-link {
  gap: 14px;
}

/* === Hero-tel cliquable === */
a.hero-tel {
  text-decoration: none;
  cursor: pointer;
}
a.hero-tel:hover .tel-icon {
  background: var(--orange-dark);
  transform: scale(1.05);
}
a.hero-tel .tel-number {
  color: var(--orange);
  font-weight: 700;
}

/* ========================================
   RESPONSIVE — Topbar : 2 versions
   ======================================== */
.topbar-desktop { display: inline; }
.topbar-mobile { display: none; }

@media (max-width: 768px) {
  .topbar-desktop { display: none; }
  .topbar-mobile { display: inline; }
}

/* ========================================
   RESPONSIVE — Espacement sections mobile
   ======================================== */
@media (max-width: 768px) {
  .section { padding: 25px 0 !important; }
}

/* ========================================
   RESPONSIVE — Engagements (arguments) mobile
   ======================================== */
@media (max-width: 768px) {
  .arguments-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .argument-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px 18px !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--orange);
    border-radius: 12px;
    transition: var(--transition);
  }
  .argument-item:hover {
    background: rgba(255, 87, 3, 0.08);
    border-left-width: 4px;
    transform: translateX(2px);
  }
  .argument-item .arg-icon {
    margin: 0;
    flex-shrink: 0;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
    background: rgba(255, 87, 3, 0.15) !important;
    border: 1px solid rgba(255, 87, 3, 0.3);
  }
  .argument-item h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.04em;
  }
  .argument-item p { display: none; }
}

/* ========================================
   RESPONSIVE — Avis : carrousel horizontal mobile
   ======================================== */
@media (max-width: 768px) {
  .avis-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .avis-grid > * {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .avis-grid::-webkit-scrollbar { height: 6px; }
  .avis-grid::-webkit-scrollbar-track { background: var(--gris-clair); border-radius: 3px; }
  .avis-grid::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
}

/* ========================================
   RESPONSIVE — Zone tags : toggle "Voir tout"
   ======================================== */
.toggle-villes-btn { display: none; }
@media (max-width: 768px) {
  .zone-villes .ville-tag.ville-extra { display: none; }
  .zone-villes.expanded .ville-tag.ville-extra { display: inline-block; }
  .toggle-villes-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-family: var(--font-titre);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
  }
  .toggle-villes-btn:hover { background: var(--orange); color: #fff; }
  .toggle-villes-btn .arrow { transition: transform 0.3s; }
  .toggle-villes-btn.active .arrow { transform: rotate(180deg); }
}

/* ========================================
   RESPONSIVE — Hero : masquer 2e phrase descriptive sur mobile
   ======================================== */
@media (max-width: 768px) {
  .hero-extra { display: none; }
}

/* ========================================
   RESPONSIVE — Services mobile
   ======================================== */
.toggle-services-wrap { display: none; }

@media (max-width: 768px) {
  /* Masquer "En savoir plus →" */
  .service-card .service-link { display: none !important; }

  /* Masquer 2 services par défaut */
  .services-grid .service-extra { display: none; }
  .services-grid.expanded .service-extra { display: block; }

  /* Bouton toggle visible */
  .toggle-services-wrap {
    display: block;
    text-align: center;
    margin-top: 16px;
  }
  .toggle-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-family: var(--font-titre);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
  }
  .toggle-services-btn:hover { background: var(--orange); color: #fff; }
  .toggle-services-btn .arrow { transition: transform 0.3s; }
  .toggle-services-btn.active .arrow { transform: rotate(180deg); }
}

/* ========================================
   RESPONSIVE — CTA banner orange mobile
   ======================================== */
@media (max-width: 768px) {
  .cta-banner { padding: 25px 24px !important; }
  .cta-banner h2 { font-size: 1.6rem !important; margin-bottom: 6px; }
  .cta-banner p { font-size: 0.95rem !important; margin-bottom: 18px !important; }
  .cta-banner .btn-white { padding: 14px 20px !important; font-size: 1rem !important; }
}

/* ========================================
   SMART HEADER (accueil uniquement)
   Le header se cache en descendant, réapparaît en remontant
   ======================================== */
.smart-header {
  position: sticky;
  top: 0;
  transition: transform 0.35s ease;
  will-change: transform;
}
.smart-header.header-hidden {
  transform: translateY(-150%);
}

/* ========================================
   TEXTES JUSTIFIÉS (paragraphes de contenu)
   ======================================== */
.service-desc,
.histoire-text p,
.costic-content p,
.costic-intro p,
.dept-intro,
.dept-description,
.seo-ville-card p,
.article-content p,
.article-body p,
.valeur-card p,
.multi-services-content p,
.attestation-text p,
.section-intro,
.about-text p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Libelles du menu sur une seule ligne (evite les retours entre 1024 et 1200px) */
nav ul li a { white-space: nowrap; }
