/* =============================================
   ANNUAIRE BATIMENT — Mystique-Inspired Design
   Blue (#1d4ed8) & Orange (#f97316)
   ============================================= */

/* --- Tokens --- */
:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --blue-light: #60a5fa;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-light: #fdba74;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --green-50: #ecfdf5;
  --green-600: #059669;
  --green-700: #047857;
  --dark: #0f172a;
  --dark-card: #1e293b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --text-on-dark: rgba(255,255,255,0.75);
  --border-light: #e2e8f0;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --r: 12px;
  --r-lg: 16px;
  --max: 1120px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.hero-stats {
  color: var(--terracotta-500);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER — Dark elegant with blur
   ============================================= */
.site-header {
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 68px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}
.site-header .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo:hover { text-decoration: none; opacity: .9; }
.logo img { height: 40px; width: auto; }
.logo-text {
  font-weight: 700;
  color: var(--dark);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.main-nav { display: flex; align-items: center; gap: 24px; position: absolute; left: 50%; transform: translateX(-50%); }
.main-nav a {
  color: var(--slate-600);
  font-size: .88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--dark); text-decoration: none; }
.btn-contact {
  padding: 10px 20px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff !important;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-contact:hover {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  display: block;
}
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.mobile-drawer-overlay.active { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  z-index: 201;
  transition: right .3s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,.3);
  border-left: 1px solid rgba(59,130,246,0.15);
}
.mobile-drawer.active { right: 0; }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-drawer-logo {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
}
.mobile-drawer-close:hover { color: var(--white); }
.mobile-drawer-nav {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer-link {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: .95rem;
  transition: color 0.2s;
}
.mobile-drawer-link:hover { color: var(--white); }
.mobile-drawer-cta {
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--dark);
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  display: block;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.breadcrumbs .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; font-size: .78rem; gap: 0; }
.breadcrumb-item { color: var(--text-muted); display: flex; align-items: center; }
.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.breadcrumb-item a { color: var(--text-light); }
.breadcrumb-item a:hover { color: var(--blue-600); text-decoration: none; }
.breadcrumb-item.active { color: var(--text); font-weight: 600; }

/* =============================================
   PAGE TITLE (Hero) — Pattern + gradients
   ============================================= */
.page-title {
  background: var(--dark);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(29,78,216,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(59,130,246,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.page-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
/* Hero lightning bolts */
.hero-bolts { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.bolt { position: absolute; }
.bolt-1 { width: 56px; top: 8%; left: 6%; transform: rotate(-15deg); opacity: 0.3; }
.bolt-2 { width: 32px; top: 55%; left: 1%; transform: rotate(22deg); opacity: 0.22; }
.bolt-3 { width: 44px; top: 15%; right: 4%; transform: rotate(-28deg); opacity: 0.28; }
.bolt-4 { width: 26px; top: 65%; right: 8%; transform: rotate(12deg); opacity: 0.2; }
.bolt-5 { width: 36px; bottom: 6%; left: 42%; transform: rotate(-10deg); opacity: 0.22; }
.bolt-7 { width: 38px; top: 80%; right: 20%; transform: rotate(-18deg); opacity: 0.2; }
.bolt-8 { width: 22px; top: 5%; left: 30%; transform: rotate(5deg); opacity: 0.16; }
.bolt-9 { width: 28px; top: 45%; right: 2%; transform: rotate(-35deg); opacity: 0.24; }
@media (max-width: 768px) { .hero-bolts { display: none; } }

.page-title .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.page-title h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-title h1 span { color: var(--orange-500); }
.page-title .subtitle {
  color: var(--text-on-dark);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}
.page-title .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
  margin-top: 16px;
}
.page-title .hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--blue-light);
}
.page-title .hero-stat svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
/* Hero rating badge */
.hero-badge-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.hero-stars { display: inline-flex; gap: 2px; }
.hero-stars svg { width: 16px; height: 16px; }
.hero-rating-text { font-size: .88rem; font-weight: 700; color: var(--orange-400); }
.hero-rating-sep { color: rgba(255,255,255,0.3); }
.hero-rating-projects { font-size: .82rem; color: rgba(255,255,255,0.65); font-weight: 500; }

.hero-subtitle-orange {
  color: var(--orange-500);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 12px 0 10px;
}

.page-title .page-cta { margin-top: 28px; }

/* Hero two-column layout: text left, iframe right */
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left { }
.hero-right {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.hero-right-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}
.hero-right-sub {
  font-size: .82rem;
  color: var(--orange-400);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-iframe-wrap {
  border-radius: 10px;
  background: #fff;
  margin-bottom: 16px;
}
.hero-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 438px;
  border: none;
}

/* Hero CTA box (offre de bienvenue) */
.hero-right-cta { background: none; border: none; backdrop-filter: none; padding: 0; }
.hero-cta-box {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(249,115,22,0.75);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-cta-tag {
  display: inline-block;
  background: var(--orange-500);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-cta-sub {
  display: block;
  font-size: .65em;
  font-weight: 500;
  color: #0d0909;
  margin-top: -9px;
  text-transform: none;
  letter-spacing: 0;
}
.hero-cta-offer {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-cta-offer span {
  display: block;
  font-size: 1rem;
  color: #fbbf24;
  font-weight: 700;
  letter-spacing: 3px;
}
.hero-cta-desc {
  font-size: .88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 12px 0 20px;
}
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  transition: .2s;
}
.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
}
.btn-cta-hero svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,0.5);
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.hero-benefits li svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange-400);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hero-cols { grid-template-columns: 1fr; gap: 24px; }
  .hero-right { order: 1; }
}
@media (max-width: 520px) {
  .hero-right { padding: 1px; }
  .hero-cta-box { padding: 13px 13px; }
  .hero-iframe-wrap iframe { height: 280px; }
}

/* =============================================
   BUTTONS — Gradient CTAs with glow
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
  border: none;
  transition: all .25s;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue-600);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--white);
}

.btn-devis {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(249,115,22,0.3),
              0 2px 8px rgba(249,115,22,0.15);
  position: relative;
  overflow: hidden;
}
.btn-devis::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 3s infinite;
}
.btn-devis:hover {
  box-shadow: 0 8px 28px rgba(249,115,22,0.4),
              0 4px 12px rgba(249,115,22,0.2);
  color: #fff;
  transform: translateY(-1px);
}

/* Hero CTA - bigger, with pulse */
.btn-devis-hero {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 8px 35px rgba(249,115,22,0.4),
              0 2px 10px rgba(249,115,22,0.2),
              inset 0 1px 0 rgba(255,255,255,0.3);
  border: 1px solid var(--orange-600);
  animation: heroPulse 2.5s ease-in-out infinite;
}
.btn-devis-hero:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(249,115,22,0.5),
              0 4px 15px rgba(249,115,22,0.3),
              inset 0 1px 0 rgba(255,255,255,0.4);
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 8px 35px rgba(249,115,22,0.4),
                0 2px 10px rgba(249,115,22,0.2),
                inset 0 1px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 12px 50px rgba(249,115,22,0.6),
                0 4px 20px rgba(249,115,22,0.3),
                inset 0 1px 0 rgba(255,255,255,0.4);
    transform: scale(1.02);
  }
}
@keyframes shimmer {
  0% { transform: translateX(-200%) translateY(-200%) rotate(45deg); }
  100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); color: #fff; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: .8rem; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

/* Hero urgency line */
.hero-urgency {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,0.45);
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--blue-900);
  padding: 18px 0;
  border-bottom: 1px solid rgba(59,130,246,0.15);
}
.trust-bar .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.trust-item strong { color: var(--orange-400); }

/* =============================================
   SECTIONS — Well-spaced, alternating
   ============================================= */
.section {
  padding: 44px 0;
}
.section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-alt { background: var(--white); }
.section-bg { background: var(--white); }

.section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue-600);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-desc {
  font-size: .95rem;
  color: var(--text-light);
  max-width: 100%;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* =============================================
   LOCATION GRID — Regions, departments
   ============================================= */
.loc-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-3 { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }

.loc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  transition: all .25s;
  text-decoration: none;
}
.loc-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 6px 24px var(--blue-glow);
  transform: translateY(-3px);
  text-decoration: none;
}
.loc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.loc-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}
.loc-card-body { flex: 1; min-width: 0; }
.loc-card-name { font-size: .92rem; font-weight: 600; color: var(--text); }
.loc-card-meta { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }
.loc-card-arrow {
  color: var(--slate-300);
  font-size: 1.3rem;
  font-weight: 300;
  transition: all .25s;
  flex-shrink: 0;
}
.loc-card:hover .loc-card-arrow { color: var(--blue-600); transform: translateX(4px); }

/* Pills for cities - Nearby style */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all .25s;
}
.pill:hover {
  background: rgba(29,78,216,0.06);
  border-color: var(--blue-400);
  color: var(--blue-700);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--blue-glow);
}
.pill .pill-distance {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(59,130,246,0.06);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* =============================================
   VOYANTE-STYLE LISTINGS (Mystique pattern)
   ============================================= */
.voyantes-online { padding: 70px 0; background: var(--off-white); }
.voyantes-online .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.voyantes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.voyante-row {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 22px 24px; transition: all .3s;
}
.voyante-row:hover {
  border-color: var(--blue-400);
  box-shadow: 0 6px 24px var(--blue-glow);
  transform: translateY(-3px);
}
.voyante-row-info { flex: 1; min-width: 0; }
.voyante-row-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.voyante-row-name { font-size: 1.1rem; font-weight: 700; color: var(--text); text-decoration: none; transition: color .2s; }
.voyante-row-name:hover { color: var(--blue-600); text-decoration: none; }
.voyante-row-spec {
  font-size: .68rem; font-weight: 700; color: var(--blue-600);
  background: rgba(29,78,216,0.08); padding: 3px 10px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .5px;
}
.voyante-row-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.voyante-row-rating .stars { display: inline-flex; gap: 1px; }
.voyante-row-rating span { font-size: .82rem; font-weight: 600; color: var(--text); }
.voyante-row-rating small { font-size: .75rem; color: var(--text-light); }
.voyante-row-details { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; margin-bottom: 8px; }
.detail-item { display: flex; align-items: flex-start; gap: 6px; font-size: .83rem; color: var(--text-light); }
.detail-item svg { width: 15px; height: 15px; stroke: var(--blue-400); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.detail-item a { color: var(--blue-600); font-weight: 600; }
.detail-item a:hover { text-decoration: underline; }
.voyante-row-review {
  background: rgba(29,78,216,0.04);
  border-left: 3px solid var(--blue-400);
  padding: 10px 14px; border-radius: 0 8px 8px 0; margin-top: 10px;
}
.voyante-row-review p { font-size: .83rem; color: var(--text-light); font-style: italic; line-height: 1.6; margin: 0; }
.voyante-row-review .review-author {
  font-size: .75rem; color: var(--blue-600); font-weight: 600;
  font-style: normal; margin-top: 4px; display: block;
}

.no-cabinets {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 32px; text-align: center;
}
.no-cabinets p { font-size: .95rem; color: var(--text-light); line-height: 1.7; }

/* Cabinets guide + nearby (inside section) */
.cabinets-guide {
  margin-top: 20px; padding: 18px 22px;
  background: linear-gradient(135deg, rgba(29,78,216,0.04), rgba(249,115,22,0.03));
  border-left: 3px solid var(--blue-400);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.cabinets-guide h3 { font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.cabinets-guide p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin: 0; }
.cabinets-guide strong { color: var(--blue-700); }

/* City services */
.city-services {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 24px;
  margin-top: 32px;
}
.city-services h3 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.city-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.city-service-group h4 { font-size: .82rem; font-weight: 600; color: var(--blue-600); margin-bottom: 8px; }
.city-service-group ul { list-style: none; padding: 0; margin: 0; }
.city-service-group li {
  font-size: .82rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 6px;
}
.city-service-group li:last-child { border-bottom: none; }
.city-service-group li::before { content: ""; width: 5px; height: 5px; background: var(--blue-400); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 768px) { .city-services-grid { grid-template-columns: 1fr; } }

/* City FAQ */
.city-faq {
  margin-top: 32px;
}
.city-faq h3 { font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: var(--text); }

/* Map section */
.city-map-section {
  margin-top: 40px;
}
.city-map {
  width: 100%;
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  z-index: 1;
  position: relative;
}
@media (max-width: 520px) {
  .city-map { height: 280px; border-radius: 10px; }
}

.cabinets-nearby { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.cabinets-nearby h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.nearby-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: rgba(29,78,216,0.04);
  border: 1px solid rgba(29,78,216,0.12); border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.nearby-card:hover { background: rgba(29,78,216,0.08); border-color: rgba(29,78,216,0.25); text-decoration: none; }
.nearby-name { font-size: .84rem; font-weight: 500; color: var(--text); }
.nearby-distance {
  font-size: .72rem; font-weight: 600; color: var(--text-muted);
  background: rgba(29,78,216,0.06); padding: 2px 8px; border-radius: 20px; white-space: nowrap; margin-left: 8px;
}

@media (max-width: 960px) {
  .voyantes-grid { grid-template-columns: repeat(2, 1fr); }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .voyantes-online { padding: 40px 0; }
  .voyantes-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .voyante-row { padding: 16px; }
  .voyante-row-name { font-size: 1rem; }
  .cabinets-guide { padding: 18px; }
  .cabinets-guide h3 { font-size: .92rem; }
  .cabinets-guide p { font-size: .84rem; }
}

/* =============================================
   ARTISAN CARDS — Featured review, SVG icons
   ============================================= */
.artisan-list { display: flex; flex-direction: column; gap: 16px; }

.artisan-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all .3s;
}
.artisan-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: var(--blue-400);
}

.artisan-card-top {
  display: flex;
  gap: 16px;
  padding: 22px 24px 0;
}
.artisan-card-rank {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
  color: var(--white);
  background: var(--slate-400);
}
.artisan-card-rank[data-rank="1"] { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: var(--dark); }
.artisan-card-rank[data-rank="2"] { background: linear-gradient(135deg, #a1a1aa, #71717a); }
.artisan-card-rank[data-rank="3"] { background: linear-gradient(135deg, #d97706, #92400e); }
.artisan-card-info { flex: 1; min-width: 0; }

.artisan-card-name-link { text-decoration: none; }
.artisan-card-name-link:hover { text-decoration: none; }
.artisan-card-name { font-size: 1.1rem; font-weight: 700; color: var(--text); transition: color 0.2s; }
.artisan-card-name-link:hover .artisan-card-name { color: var(--blue-600); }

.artisan-card-rating { display: flex; align-items: center; gap: 6px; margin-top: 5px; }

.stars-rating { display: inline-flex; gap: 1px; }
.star { font-size: .95rem; line-height: 1; }
.star-full { color: var(--amber-500); }
.star-half { color: var(--amber-400); }
.star-empty { color: var(--slate-200); }
.rating-text { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.artisan-card-address {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.artisan-card-address svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Featured review inside card */
.artisan-card-review {
  margin: 12px 24px 0;
  background: rgba(29,78,216,0.04);
  border-left: 3px solid var(--blue-400);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
}
.artisan-card-review p {
  font-size: .84rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.artisan-card-review .review-author {
  font-size: .75rem;
  color: var(--blue-600);
  font-weight: 600;
  font-style: normal;
  margin-top: 4px;
  display: block;
}

.artisan-card-body { padding: 16px 24px 22px; }
.artisan-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.artisan-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--green-600);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  transition: all .2s;
}
.artisan-phone svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.artisan-phone:hover { background: var(--green-700); color: #fff; text-decoration: none; transform: translateY(-1px); }

.artisan-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 10px;
  font-weight: 600;
  font-size: .84rem;
  transition: all .2s;
}
.artisan-website svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}
.artisan-website:hover { background: var(--blue-100); color: var(--blue-700); text-decoration: none; }

.artisan-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: .82rem;
  transition: all .2s;
}
.artisan-gmaps svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}
.artisan-gmaps:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  text-decoration: none;
}
.artisan-gmaps:hover svg { stroke: var(--blue-600); }

.artisan-card-hours {
  padding: 14px 24px 16px;
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.artisan-card-hours summary {
  font-size: .82rem;
  color: var(--text-light);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.artisan-card-hours summary svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}
.artisan-card-hours .hours-list {
  margin-top: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   GUIDE SECTION (How to choose)
   ============================================= */
.guide-section {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(29,78,216,0.04), rgba(249,115,22,0.03));
  border-left: 3px solid var(--blue-400);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.guide-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.guide-section p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 8px;
}
.guide-section p:last-child { margin-bottom: 0; }
.guide-section strong { color: var(--blue-700); }
.guide-section ul {
  margin: 8px 0 8px 20px;
  list-style: disc;
}
.guide-section li {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-header {
  background: var(--dark);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.profile-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(29,78,216,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(249,115,22,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.profile-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.profile-header .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.profile-header h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.profile-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.profile-header-meta .rating-text { color: var(--text-on-dark); }
.profile-header-address {
  font-size: .88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-header-address svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  stroke-width: 2;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
}
.profile-main { display: flex; flex-direction: column; gap: 20px; }
.profile-sidebar {
  position: sticky;
  top: 86px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px;
}
.profile-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--slate-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-card h2 svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}

/* Profile about grid */
.profile-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.profile-about-item { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.profile-about-item strong { font-size: .72rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: .3px; margin-bottom: 2px; }
.profile-about-item span { font-size: .88rem; color: var(--text); }
.profile-about-item a { color: var(--blue-600); }

/* Profile hours */
.profile-hours-line { font-size: .86rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; }
.profile-hours-line:last-child { border-bottom: none; }

.profile-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profile-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: var(--r);
  border: 1px solid var(--slate-100);
  transition: all 0.2s;
}
.profile-info-item:hover {
  border-color: var(--blue-200);
  background: var(--blue-50);
}
.profile-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}
.profile-info-label {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.profile-info-value {
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  margin-top: 3px;
}
.profile-info-value a { color: var(--blue-600); }
.profile-info-value a:hover { text-decoration: underline; }

/* Reviews */
.review-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: var(--r);
  margin-bottom: 20px;
}
.review-summary-score {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.review-summary-count { font-size: .85rem; color: var(--text-light); margin-top: 4px; }

.review-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--slate-100);
}
.review-card:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.review-author { font-weight: 700; color: var(--text); font-size: .9rem; }
.review-date { font-size: .76rem; color: var(--text-muted); }
.review-source { font-size: .7rem; color: var(--blue-600); margin-left: auto; }
.review-text { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border: 2px solid var(--blue-400);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}
.sidebar-cta-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
  border: 1px solid #bbf7d0;
}
.sidebar-cta-tag {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sidebar-cta h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.55;
}
.sidebar-cta-devis { background: linear-gradient(135deg, #eff6ff, #f0fdf4); border: 1px solid var(--blue-200); }
.sidebar-cta-devis::before { display: none; }
.sidebar-cta-list { list-style: none; padding: 0; margin: 0 0 16px; }
.sidebar-cta-list li { font-size: .84rem; color: var(--text); padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.sidebar-cta-list svg { width: 16px; height: 16px; stroke: #22c55e; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* =============================================
   MAILLAGE
   ============================================= */
.maillage-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px;
}
.maillage-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

/* =============================================
   SERVICES TABS
   ============================================= */
.services-section { padding: 70px 0; background: var(--white); }
.services-section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.tabs-nav { display: flex; gap: 6px; margin-bottom: 28px; overflow-x: auto; padding-bottom: 4px; }
.tab-btn {
  padding: 10px 20px; border: 1px solid var(--border-light); border-radius: 8px;
  background: var(--white); color: var(--text-light); font-size: .82rem; font-weight: 600;
  white-space: nowrap; transition: all .2s; cursor: pointer; font-family: var(--font);
}
.tab-btn:hover { border-color: var(--blue-400); color: var(--blue-600); }
.tab-btn.active { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-heading { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.tab-intro { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list__item {
  padding: 16px 20px; background: var(--slate-50);
  border: 1px solid var(--slate-100); border-radius: var(--r);
  font-size: .88rem; color: var(--text-light); line-height: 1.7;
}
.service-list__item strong { color: var(--text); }
.service-list__duration { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.service-list__price { font-size: .85rem; color: var(--orange-500); font-weight: 700; }
.service-list__description { margin-top: 6px; font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   CERTIFICATIONS ACCORDION
   ============================================= */
.expertise-section { padding: 70px 0; background: var(--off-white); }
.expertise-section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.accordion-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: all .25s;
}
.accordion-item:hover { border-color: var(--blue-400); box-shadow: 0 4px 16px var(--blue-glow); }
.accordion-header {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font); font-size: .95rem; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.accordion-header:hover { color: var(--blue-600); }
.accordion-title-wrapper { display: flex; align-items: center; gap: 12px; }
.accordion-title-wrapper svg { stroke: var(--blue-400); flex-shrink: 0; }
.accordion-chevron { transition: transform .3s; color: var(--blue-400); flex-shrink: 0; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height .3s ease-out;
}
.accordion-content p, .accordion-content ul {
  padding: 0 22px; font-size: .88rem; color: var(--text-light); line-height: 1.8; margin-bottom: 10px;
}
.accordion-content ul { padding-left: 42px; }
.accordion-content li { margin-bottom: 4px; }
.accordion-content p:first-child { padding-top: 0; border-top: 1px solid var(--slate-100); margin-top: -1px; padding-top: 16px; }
.accordion-content p:last-child, .accordion-content ul:last-child { padding-bottom: 18px; margin-bottom: 0; }
.accordion-content strong { color: var(--text); }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { padding: 70px 0; background: var(--white); }
.faq-section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.faq-container { max-width: 800px; }
.faq-section .accordion-header span { flex: 1; }

@media (max-width: 520px) {
  .tabs-nav { gap: 4px; }
  .tab-btn { padding: 8px 14px; font-size: .75rem; }
  .services-section, .expertise-section, .faq-section { padding: 40px 0; }
}

/* =============================================
   EMPTY STATE + SEO
   ============================================= */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}
.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}
.empty-state-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto;
}
.empty-state h3 { font-size: 1.05rem; color: var(--text-light); margin-bottom: 8px; }

.seo-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-light);
}
.seo-block h2 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
}
.seo-block p { margin-bottom: 14px; }
.seo-block p:last-child { margin-bottom: 0; }

/* =============================================
   CTA FINAL SECTION
   ============================================= */
.cta-final {
  padding: 90px 0;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(29,78,216,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(249,115,22,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 2; }
.cta-offer-box {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(29,78,216,0.15), rgba(249,115,22,0.06));
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 48px 40px;
}
.cta-offer-tag {
  display: inline-block;
  background: var(--orange-500);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-final h2 { font-size: 2rem; margin-bottom: 12px; line-height: 1.2; }
.cta-offer-desc { font-size: .95rem; color: var(--text-on-dark); margin-bottom: 24px; line-height: 1.6; }
.cta-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-trust-badges span {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cta-trust-badges span svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange-400);
  fill: none;
  stroke-width: 2;
}
.cta-final .small-text {
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   MODAL DEVIS
   ============================================= */
.devis-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.devis-modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
  border-top: 4px solid var(--orange-500);
}
.devis-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.devis-modal-close:hover { color: var(--text); }
.devis-modal-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #bbf7d0;
}
.devis-modal-box h2 { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.devis-modal-artisan { font-size: .92rem; font-weight: 600; color: var(--blue-600); margin-bottom: 12px; }
.devis-modal-desc { font-size: .86rem; color: var(--text-light); line-height: 1.6; margin-bottom: 22px; }
.devis-modal-info { font-size: .82rem; color: var(--text-muted); margin-bottom: 16px; text-align: center; }
.devis-modal-cta { width: 100%; }
.devis-modal-legal { font-size: .7rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* =============================================
   FOOTER — Dark, organized
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 50px 0 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.footer-brand p { font-size: .84rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.45);
  padding: 5px 0;
  font-size: .85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-regions {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  margin-bottom: 24px;
}
.footer-regions h4 {
  color: rgba(255,255,255,.25);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.footer-regions-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-regions-links a {
  padding: 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  transition: all 0.2s;
}
.footer-regions-links a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}

.footer-disclosure {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  text-align: center;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
  margin-top: 16px;
  font-size: .74rem;
  color: rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-card);
  color: #fff;
  padding: 16px;
  z-index: 300;
  border-top: 1px solid rgba(59,130,246,0.15);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: .82rem; margin: 0; }
.cookie-content a { color: var(--orange-400); }
.cookie-actions { display: flex; gap: 8px; }
.btn-small { padding: 7px 14px; font-size: .78rem; border-radius: 8px; }
.btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  font-weight: 600;
  font-size: .78rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }

/* =============================================
   FLOATING CTA — desktop bottom-right / mobile full-width bottom
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,99,235,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.55), 0 4px 12px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}
.floating-cta a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ===== TABLET <=960px ===== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .btn-contact { display: none; }
  .mobile-menu-toggle { display: flex; }
  .site-header { height: 56px; }

  .page-title { padding: 48px 0 40px; }
  .page-title h1 { font-size: 2.2rem; }

  .loc-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }

  .profile-layout { grid-template-columns: 1fr; padding: 16px 0; gap: 14px; }
  .profile-card { padding: 16px; }
  .profile-sidebar { position: static; }
  .profile-sidebar { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .trust-bar-inner { gap: 20px; }
  .trust-item { font-size: .82rem; gap: 8px; }
  .trust-item svg { width: 16px; height: 16px; }

  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: 1.7rem; }
  .cta-offer-box { padding: 36px 28px; }

  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .floating-cta a {
    border-radius: 0;
    justify-content: center;
    padding: 16px 24px;
    font-size: .9rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  }
  .floating-cta a:hover {
    transform: none;
  }
}

/* ===== MOBILE <=520px ===== */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .site-header { height: 50px; }
  .site-header .container { padding: 0 16px; }

  .page-title { padding: 32px 0 28px; }
  .page-title h1 { font-size: 2.2rem; text-align: center; }
  .page-title .subtitle { font-size: .84rem; }
  .hero-badge-rating { display: flex; justify-content: center; }
  .hero-subtitle-orange { text-align: left; font-size: 1.2rem; }
  .hero-benefits { align-items: flex-start; }
  .site-header .logo { position: absolute; left: 50%; transform: translateX(-50%); }

  .trust-bar { display: none; }

  .section { padding: 36px 0; }
  .section-label { font-size: .65rem; }
  .section-title { font-size: 1.25rem; }
  .section-desc { font-size: .84rem; margin-bottom: 24px; }

  .loc-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .loc-card { gap: 8px; padding: 12px 10px; }
  .loc-card-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    flex-shrink: 0;
  }
  .loc-card-icon svg { width: 14px; height: 14px; }
  .loc-card-name { font-size: .8rem; }
  .loc-card-meta { font-size: .68rem; }
  .loc-card-arrow { display: none; }

  .artisan-card-top { flex-direction: column; gap: 10px; }
  .artisan-card-actions { flex-direction: column; align-items: stretch; }

  .profile-info-grid { grid-template-columns: 1fr; }
  .profile-header h1 { font-size: 1.6rem; }
  .profile-header { padding: 36px 0 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .cookie-content { flex-direction: column; text-align: center; }
  .devis-modal-box { padding: 28px 22px; margin: 10px; }

  .cta-final { padding: 44px 0; }
  .cta-final h2 { font-size: 1.3rem; }
  .cta-offer-box { padding: 24px 18px; border-radius: 14px; }
  .cta-trust-badges span { font-size: .68rem; padding: 5px 10px; }

  .btn-devis-hero { padding: 14px 24px; font-size: .92rem; }
  .btn-lg { padding: 14px 24px; font-size: .92rem; }

  .guide-section { padding: 20px; }
  .guide-section h3 { font-size: .95rem; }
  .guide-section p { font-size: .84rem; }

  .floating-cta a { padding: 14px 20px; font-size: .85rem; }
}

/* ===== CATEGORY TABS ===== */
.category-tabs { background: var(--white); border-bottom: 1px solid var(--border-light); }
.cat-tabs-inner { display: flex; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 10px 0; }
.cat-tab { padding: 8px 20px; border-radius: 30px; font-size: .85rem; font-weight: 600; color: var(--text-muted); background: var(--bg-light); text-decoration: none; white-space: nowrap; transition: all .2s; border: 1px solid transparent; }
.cat-tab:hover { color: var(--primary, #2563eb); background: rgba(37,99,235,0.06); }
.cat-tab-active { color: var(--white); background: var(--primary, #2563eb); border-color: var(--primary, #2563eb); }

/* ===== CITY INFO BAR ===== */
.city-info-bar { background: var(--bg-light); border-bottom: 1px solid var(--border-light); padding: 16px 0; }
.city-info-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.city-info-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text); }
.city-info-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary, #2563eb); }
.city-info-item strong { font-weight: 700; color: var(--primary-dark, #1d4ed8); }
.city-info-item span { color: var(--text-muted); }

/* ===== CLIMATE BAR ===== */
.city-climate-bar { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 12px 0; }

/* ===== RATING DISTRIBUTION ===== */
.city-rating-dist { padding: 20px 0; background: var(--white); border-bottom: 1px solid var(--border-light); }
.rating-dist-box { display: flex; gap: 28px; align-items: center; }
.rating-dist-left { text-align: center; flex-shrink: 0; min-width: 80px; }
.rating-dist-big { font-size: 2.2rem; font-weight: 800; color: var(--primary, #2563eb); line-height: 1; }
.rating-dist-left .stars { margin: 6px 0 4px; }
.rating-dist-left small { font-size: .72rem; color: var(--text-muted); }
.rating-dist-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; }
.rating-bar-label { font-size: .75rem; font-weight: 700; color: var(--text-muted); width: 12px; text-align: right; }
.rating-bar-track { flex: 1; height: 8px; background: var(--bg-light); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, #fbbf24, #f59e0b); border-radius: 4px; transition: width .6s ease; }
.rating-bar-pct { font-size: .72rem; color: var(--text-muted); width: 32px; }
.city-rating-dist-inline { padding: 24px 0; background: none; border-bottom: none; border-top: 1px solid var(--border-light); margin-top: 32px; }
.city-info-bar-inline { background: rgba(37,99,235,0.04); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.city-info-bar-inline .city-info-grid { justify-content: flex-start; }
.city-climate-bar-inline { background: rgba(37,99,235,0.03); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; margin-top: 24px; }
.city-climate-bar-inline .city-info-grid { justify-content: flex-start; }

@media (max-width: 520px) {
  .city-info-grid { gap: 12px 20px; justify-content: flex-start; }
  .city-info-item { font-size: .8rem; }
  .cat-tabs-inner { padding: 8px 0; }
  .cat-tab { padding: 6px 14px; font-size: .8rem; }
  .rating-dist-box { flex-direction: column; gap: 16px; align-items: flex-start; }
  .rating-dist-left { display: flex; gap: 12px; align-items: center; }
  .rating-dist-big { font-size: 1.6rem; }
}

/* ===== SMALL MOBILE <=380px ===== */
@media (max-width: 380px) {
  .page-title h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.1rem; }
  .cta-final h2 { font-size: 1.15rem; }
  .profile-header h1 { font-size: 1.4rem; }
  .btn-devis-hero { padding: 12px 20px; font-size: .85rem; }
  .loc-grid, .grid-3 { grid-template-columns: 1fr; }
}

/* ==============================
   PAGES SECONDAIRES (legal, privacy, contact, terms, cookies)
   ============================== */
.seo-content {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.seo-content h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.seo-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}
.seo-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}
.seo-content p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 14px;
}
.seo-content ul, .seo-content ol {
  margin: 12px 0 18px 20px;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-light);
}
.seo-content li { margin-bottom: 6px; }
.seo-content a { color: var(--primary); text-decoration: underline; }
.seo-content a:hover { color: var(--blue-700); }
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .88rem;
}
.seo-content th, .seo-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.seo-content th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--text);
}
.seo-content strong { color: var(--text); }

/* Contact info */
.contact-info {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.contact-info p { margin-bottom: 6px; font-size: .9rem; }
.contact-info a { color: var(--primary); }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .92rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 20px;
}
.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

@media (max-width: 640px) {
  .seo-content { padding: 24px 20px; border-radius: 10px; }
  .seo-content h1 { font-size: 1.3rem; }
}
