/* ═══════════════════════════════════════════════════════
   COULEURS DU SITE CIBLE
   --navy   : #10405b   (dark-slate-blue)
   --primary: #5eccd3   (turquoise / teal)
   --teal-2 : #52c1c8   (turquoise un peu plus foncé bouton header)
   --khaki  : #eed96c   (jaune highlight Vous)
   --bg     : #effafb   (background light)
   --bg-2   : #cff6f9   (light teal secondary bg)
═══════════════════════════════════════════════════════ */
:root {
  --navy: #10405b;
  --primary: #5eccd3;
  --teal-2: #52c1c8;
  --khaki: #eed96c;
  --bg: #effafb;
  --bg-2: #cff6f9;
  --muted: #10405b80;
  --border: #10405b1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #ffffff;
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo { flex-shrink: 0; }
.logo-img { height: 44px; width: auto; display: block; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active {
  border-bottom-color: var(--khaki);
  color: #ffffff;
}

.btn-nav-publier {
  background: var(--teal-2);
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: 14px;
  white-space: nowrap;
  transition: transform .3s;
  margin-left: 32px;
}
.btn-nav-publier:hover { transform: scale(.96); }

.btn-nav-publier-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-2);
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 5% 20px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  padding: 8px 0;
}
.mobile-link.active { color: var(--primary); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: #ffffff;
  padding: 50px 0 70px 5%;
  overflow: hidden;
}

.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-left {
  max-width: 640px;
  padding-right: 20px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}
.hero-yellow {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--khaki) 60%, var(--khaki) 92%, transparent 92%);
  padding: 0 4px;
}
.hero-vous {
  color: var(--primary);
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-louer {
  background: var(--navy);
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  padding: 16px 44px;
  border-radius: 16px;
  transition: transform .3s;
}
.btn-louer:hover { transform: scale(.96); }

.btn-publier-hero {
  background: var(--primary);
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  padding: 16px 28px;
  border-radius: 16px;
  text-align: center;
  transition: transform .3s;
}
.btn-publier-hero:hover { transform: scale(.96); }

/* Stats card */
.stats-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  padding: 22px 28px;
  margin-bottom: 28px;
  box-shadow: 0 5px 20px #10405b1a;
}
.stat {
  text-align: left;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 400;
}
.stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* Search */
.search-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 540px;
}
.search-input {
  flex: 1;
  border: 1px solid rgba(0,0,0,.15);
  outline: none;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--navy);
  background: #ffffff;
  border-radius: 14px;
  min-height: 50px;
  font-weight: 400;
}
.search-input::placeholder { color: rgba(0,0,0,.45); }
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(94,204,211,.18);
}
.btn-rechercher {
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 0 28px;
  min-height: 50px;
  border-radius: 14px;
  transition: transform .3s;
}
.btn-rechercher:hover { transform: scale(.96); }

/* Hero image */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-right: -5%;
}
.hero-img {
  width: 115%;
  max-width: none;
  height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 60px 0 0 60px;
  box-shadow: 0 20px 40px -12px #10405b33;
}

/* Mobile checklist (hidden on desktop) */
.hero-checklist {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.check-item {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-icon {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   SECTION RECOMMANDATIONS
═══════════════════════════════════════════════════════ */
.reco-section {
  padding: 80px 5% 90px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag-wrap {
  text-align: center;
  margin-bottom: 22px;
}
.section-tag {
  display: inline-block;
  background: var(--bg-2);
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 50px;
}

.reco-title {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 56px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.reco-underline {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--khaki) 60%, var(--khaki) 92%, transparent 92%);
  padding: 0 4px;
}

/* Grille listings : 3 colonnes */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px -10px #10405b1f;
  transition: transform .3s, box-shadow .3s;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -10px #10405b33;
}

/* Image wrapper */
.lcard-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 66%;
  background: #d4edf4;
  overflow: hidden;
}
.lcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo card (première carte) */
.listing-card--logo .lcard-img-wrap.lcard-img--teal {
  background: #2a86b4;
  padding-top: 66%;
}
.rdb-logo-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rdb-logo-card svg {
  width: 110px;
  height: 90px;
}
.rdb-logo-text { text-align: center; }
.rdb-logo-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
}
.rdb-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  margin-top: 2px;
}

/* Badge prix */
.lcard-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 12px;
}

/* Badge Déjà Loué */
.badge-loue {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Body carte */
.lcard-body {
  padding: 18px 18px 20px;
}
.lcard-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 14px;
}
.lcard-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lcard-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 400;
}
.mi {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--muted);
}

/* Bouton Explorer */
.explorer-wrap {
  text-align: center;
  margin-top: 50px;
}
.btn-explorer {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  padding: 16px 48px;
  border-radius: 16px;
  transition: transform .3s;
}
.btn-explorer:hover { transform: scale(.96); }

/* ═══════════════════════════════════════════════════════
   AVANTAGES
═══════════════════════════════════════════════════════ */
.avantages-section {
  padding: 90px 5%;
  text-align: center;
  background: #ffffff;
}

.avantages-title {
  font-size: 70px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 70px;
  letter-spacing: -0.5px;
}
.loc-teal { color: var(--navy); }

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.avantage-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avantage-icon-box {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px -8px #10405b1f;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
}
.avantage-svg { width: 80px; height: 80px; }

.avantage-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.emo { font-size: 22px; }

.avantage-text {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.6;
  max-width: 380px;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-section {
  background: #ffffff;
  padding: 60px 5% 90px;
}

/* Page contact standalone (sans hero au-dessus) */
.contact-page {
  padding-top: 80px;
  min-height: calc(100vh - 70px - 260px);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-why-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-why-text {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}

/* Info rows */
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg { width: 44px; height: 44px; }
.ci-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  margin: 0 20px;
  flex-shrink: 0;
}
.ci-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ci-text strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.ci-text span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

/* Form card */
.contact-form-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px 40px 44px;
}
.form-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.form-card-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.form-card-icon svg {
  width: 36px;
  height: 36px;
}
.form-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 400;
}

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.fg { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.fg label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fi {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s;
}
.fi:focus-within { border-color: var(--primary); }
.fi-check {
  width: 14px;
  height: 14px;
  border: 1.5px solid #bdd5de;
  border-radius: 3px;
  flex-shrink: 0;
}
.fi input {
  flex: 1;
  min-width: 0;
  width: 0;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 15px;
  color: var(--navy);
  background: transparent;
  font-weight: 400;
}
.fi input::placeholder { color: var(--muted); }

/* ── Phone picker ── */
.fi-phone { padding: 0; gap: 0; overflow: visible; height: 52px; }
.fi-phone-divider {
  width: 1px; background: var(--border);
  align-self: stretch; flex-shrink: 0;
}
.fi-phone input {
  flex: 1; min-width: 0; border: none; outline: none;
  padding: 0 14px; height: 100%;
  background: transparent;
  font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--navy);
}
.fi-phone input::placeholder { color: var(--muted); }

.phone-code-picker { position: relative; flex-shrink: 0; align-self: stretch; display: flex; }
.phone-code-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 0 11px 0 14px; height: 100%;
  background: #eef6f8;
  border: none; border-radius: 11px 0 0 11px;
  cursor: pointer; outline: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.phone-code-btn:hover,
.phone-code-picker.open .phone-code-btn { background: #e0eff3; }

.phone-iso-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 22px;
  background: var(--navy); color: #fff;
  border-radius: 5px;
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; flex-shrink: 0;
}
.phone-dial-val {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.01em;
}
.phone-code-arrow {
  flex-shrink: 0; color: var(--muted);
  transition: transform 0.2s;
}
.phone-code-picker.open .phone-code-arrow { transform: rotate(180deg); }

.phone-code-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(16,64,91,0.16);
  z-index: 500;
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  animation: phoneDropIn 0.15s ease;
}
.phone-code-picker.open .phone-code-dropdown { display: block; }
@keyframes phoneDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.phone-code-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border: none; background: none; width: 100%; text-align: left;
  cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--navy);
  transition: background 0.1s;
}
.phone-code-opt + .phone-code-opt { border-top: 1px solid var(--border); }
.phone-code-opt:hover { background: var(--bg); }
.phone-code-opt.active { background: var(--bg); }
.phone-code-opt .phone-iso-badge { flex-shrink: 0; }
.phone-code-opt-dial { font-weight: 700; font-size: 13px; color: var(--primary); min-width: 36px; }
.phone-code-opt-name { color: var(--muted); font-size: 13px; flex: 1; }
.phone-code-opt-check { color: var(--primary); font-size: 14px; margin-left: auto; }

.fg textarea {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
  font-weight: 400;
}
.fg textarea::placeholder { color: var(--muted); }
.fg textarea:focus { border-color: var(--primary); }

.btn-soumettre {
  background: var(--navy);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 44px;
  border-radius: 14px;
  align-self: flex-end;
  transition: transform .3s;
}
.btn-soumettre:hover { transform: scale(.96); }

/* ═══════════════════════════════════════════════════════
   BANNIÈRE 24/7
═══════════════════════════════════════════════════════ */
.banner247-wrap {
  padding: 0 5% 80px;
}
.banner247 {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16,64,91,0.6), rgba(16,64,91,0.6)),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner247-inner {
  text-align: center;
  padding: 80px 40px;
  color: #ffffff;
}
.banner247-title {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}
.banner247-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  font-weight: 400;
}
.btn-contactez-nous {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 44px;
  border-radius: 14px;
  transition: transform .3s;
}
.btn-contactez-nous:hover { transform: scale(.96); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: #ffffff;
  padding: 60px 5% 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-logo-img { height: 64px; width: auto; display: block; }

.footer-social { display: flex; gap: 12px; }
.footer-fb {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: opacity .2s;
}
.footer-fb:hover { opacity: 0.7; }
.footer-fb svg { width: 18px; height: 18px; }

.footer-nav-title, .footer-legal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 50px;
}
.footer-nav-grid a {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-nav-grid a:hover { color: var(--primary); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-legal a {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLETTE (≤ 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-title { font-size: 56px; }
  .hero-right { order: -1; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .avantages-title { font-size: 52px; }
  .avantages-grid { gap: 40px 48px; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reco-title { font-size: 44px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 16px; }
  /* Navbar */
  .navbar-links { display: none; }
  .btn-nav-publier { display: none; }
  .btn-nav-publier-mobile {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--primary);
    font-weight: 500;
    font-size: 15px;
    padding: 9px 22px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .hamburger { display: flex; }
  .navbar-inner {
    height: 64px;
    padding: 0 16px;
    gap: 10px;
  }
  .navbar-logo .logo-svg { height: 38px; }

  /* Hero */
  .hero {
    padding: 16px 16px 30px;
    background: var(--bg);
  }
  .hero-inner { gap: 24px; grid-template-columns: 1fr; }
  .hero-right {
    order: -1;
    margin-right: 0;
    justify-content: center;
  }
  .hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/4;
    border-radius: 28px;
    max-width: 100%;
  }
  .hero-left { padding-right: 0; padding: 0 4px; background: #fff; }
  .hero { background: #fff; }
  .hero-title {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .hero-cta { display: none; }
  .stats-card { display: none; }
  .search-wrap {
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
  }
  .search-input { width: 100%; }
  .btn-rechercher { width: 100%; padding: 14px; }

  /* Checklist mobile */
  .hero-checklist { display: flex; }

  /* Recommandations */
  .reco-section { padding: 50px 16px 60px; }
  .reco-title { font-size: 32px; margin-bottom: 36px; }
  .listings-grid { grid-template-columns: 1fr; gap: 22px; }
  .section-tag { font-size: 14px; padding: 8px 22px; }

  /* Avantages */
  .avantages-section { padding: 60px 24px; }
  .avantages-title { font-size: 38px; margin-bottom: 48px; }
  .avantages-grid { grid-template-columns: 1fr; gap: 50px; }
  .avantage-heading { font-size: 20px; }
  .loc-teal { color: var(--primary); }

  /* Contact - inverser ordre : form puis info sur mobile */
  .contact-section { padding: 24px 16px 60px; }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-left { order: 2; min-width: 0; }
  .contact-right { order: 1; min-width: 0; }
  .fg-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px 32px; }
  .phone-code-dropdown { min-width: 0; width: 240px; max-width: calc(100vw - 64px); }
  .form-card-header h2 { font-size: 26px; }
  .contact-why-title { font-size: 26px; }
  .btn-soumettre { width: 100%; align-self: stretch; }

  /* Bannière 24/7 - cachée sur mobile selon target */
  .banner247-wrap { display: none; }

  /* Footer */
  .footer { padding: 50px 24px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; gap: 16px 30px; }
  .footer-bottom { font-size: 13px; }
}
