/* ===================================================
   LILI MOVING — Feuille de styles partagée
   Design 4 — Simple & Actuel
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2B6CB0;
  --blue-dark: #1A4A7A;
  --blue-light: #EBF4FF;
  --navy: #102840;
  --white: #FFFFFF;
  --gray: #F7F8FA;
  --gray-border: #E2E8F0;
  --text: #222222;
  --text-light: #666666;
  --green: #27AE60;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

/* ===== NAV ===== */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
  border-radius: 10px;
}

.logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name strong {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-name span {
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: white; }

.nav-cta {
  background: var(--blue);
  color: white !important;
  border-radius: var(--radius);
  padding: 9px 20px !important;
  margin-left: 8px;
}

.nav-cta:hover { background: #1a5a9f !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  position: sticky;
  top: 68px;
  z-index: 99;
}

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

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: white; }

.mobile-nav .mnc {
  margin: 12px 24px 4px;
  background: var(--blue);
  border-radius: var(--radius);
  color: white;
  text-align: center;
  padding: 12px;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(to bottom, rgba(16,40,64,0.72) 0%, rgba(16,40,64,0.55) 100%),
              url('../imagesnew/demenagement-image-hero.jpg') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 60%, var(--blue) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-logo-large {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-logo-large .logo-img {
  height: 72px;
  mix-blend-mode: screen;
  border-radius: 14px;
}

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

.hero-brand strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-brand span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-hero:hover { background: var(--blue-dark); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.btn-hero-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
}

.hero-badge .check { color: #4ADE80; font-size: 16px; }

/* ===== TRUST BAR ===== */
.trust {
  background: var(--blue);
  padding: 16px 24px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.trust-item .icon { font-size: 16px; }

/* ===== PAGE HERO (sous-pages) ===== */
.page-hero {
  background: linear-gradient(to bottom, rgba(16,40,64,0.88) 0%, rgba(16,40,64,0.75) 100%),
              url('../imagesnew/demenagement-image-hero.jpeg') center/cover no-repeat;
  padding: 64px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.25;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 64px 24px; }
section.alt { background: var(--gray); }

.section-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}

.section-line {
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ===== À PROPOS ===== */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-img-box {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue-light);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-list {
  list-style: none;
  margin-bottom: 28px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.ck { color: var(--green); font-weight: 700; flex-shrink: 0; }

.about-stat-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.about-stat { text-align: center; }

.about-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

.about-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.svc {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid var(--gray-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.svc:hover {
  box-shadow: 0 8px 24px rgba(16,40,64,0.1);
  transform: translateY(-3px);
}

.svc-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.svc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.svc-link:hover { text-decoration: underline; }

/* ===== TARIFS ===== */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 24px;
}

.tarif {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tarif:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(43,108,176,0.12);
}

.tarif.featured {
  border-color: var(--blue);
  background: var(--blue-light);
}

.tarif-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tarif-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.tarif-ht {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.sep { border: none; border-top: 1px solid var(--gray-border); margin: 12px 0; }

.tarif-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  text-align: left;
  margin-bottom: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.tarif-extra {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

.tarifs-note {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== POURQUOI NOUS ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon { font-size: 2rem; flex-shrink: 0; }

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ===== GALERIE ===== */
#realisations { background: #fff; padding: 72px 0; }

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-header { text-align: center; margin-bottom: 36px; }

.gallery-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.gallery-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.gallery-sub { color: var(--text-light); font-size: 14px; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #e8eef6;
  cursor: pointer;
}

.gallery-large { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(16,40,64,0.82));
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 24px 14px 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-cta-row {
  text-align: center;
  margin-top: 28px;
}

.gallery-cta-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

.gallery-cta-btn:hover { background: var(--blue-dark); }

/* ===== AVIS ===== */
.reviews-agg-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 32px 0 48px;
  flex-wrap: wrap;
}

.agg-score-block { text-align: center; }
.agg-number { font-size: 64px; font-weight: 700; color: var(--navy); line-height: 1; }
.agg-stars-row { color: #f5a623; font-size: 24px; letter-spacing: 2px; margin: 4px 0; }
.agg-count { font-size: 13px; color: #5a7090; }
.agg-divider { width: 1px; height: 70px; background: #c8d8e8; }
.agg-platforms { display: flex; flex-direction: column; gap: 10px; }

.platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
}

.platform-btn.google { color: var(--blue); border-color: var(--blue); }
.platform-btn.google:hover { background: var(--blue); color: #fff; }
.platform-btn.dem { color: var(--navy); border-color: var(--navy); }
.platform-btn.dem:hover { background: var(--navy); color: #fff; }
.platform-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(16,40,64,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 4px solid var(--blue);
}

.review-card:hover {
  box-shadow: 0 6px 28px rgba(16,40,64,0.13);
  transform: translateY(-4px);
}

.review-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 14px; line-height: 1.75; color: #3d5166; font-style: italic; flex: 1; }
.review-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.review-author { font-weight: 700; font-size: 14px; color: var(--navy); }

.review-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: #eef4fb;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.review-badge svg { width: 12px; height: 12px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: background 0.2s;
  user-select: none;
  gap: 16px;
}

.faq-q:hover { background: var(--gray); }
.faq-q.open { background: var(--blue-light); color: var(--blue-dark); }

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q.open .faq-toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a.open { max-height: 400px; }

.faq-a-text {
  padding: 14px 20px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  font-size: 15px;
}

.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-blue {
  background: var(--blue);
  color: white;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-blue:hover { background: #1a5a9f; }

.btn-white {
  background: white;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-white:hover { background: var(--blue-light); }

/* ===== CONTACT ===== */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.75;
}

.contact-items { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  background: var(--gray);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--gray-border);
  transition: border-color 0.2s;
}

.contact-item:hover { border-color: var(--blue); }

.ci-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-item strong { display: block; font-weight: 700; font-size: 14px; color: var(--navy); }
.contact-item small { font-size: 12px; color: var(--text-light); }

.form-box {
  background: var(--gray);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 36px 32px;
}

.form-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { font-size: 13px; font-weight: 600; color: var(--navy); }

input, select, textarea {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(43,108,176,0.1);
}

textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Open Sans', sans-serif;
}

.btn-submit:hover { background: var(--blue-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: default; }

/* Champ honeypot anti-spam */
.hp-field { display: none !important; }

.form-notice {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 24px 0;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  border-radius: 10px;
}

.footer-col h4 {
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-bottom a:hover { color: white; }

/* ===== LOCAL SEO PAGES ===== */
.local-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.local-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 28px 24px;
}

.local-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.local-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== MENTIONS LÉGALES ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-content p, .legal-content li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 10px;
}

.legal-content ul { padding-left: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-large { grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 420px; }
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .fg-row { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .agg-number { font-size: 48px; }
  .agg-divider { display: none; }
  .tarifs-grid { grid-template-columns: 1fr; }
  section { padding: 48px 16px; }
}

@media (max-width: 480px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px 180px 180px 180px 180px 180px; }
  .hero-btns { flex-direction: column; align-items: center; }
}
