/*
Theme Name: Immobilier Grand Paris
Theme URI: https://immobiliergrandparis.fr
Author: Immobilier Grand Paris
Description: Thème WordPress sur mesure pour l'agence Immobilier Grand Paris. Gestion des biens (vente/location) intégrée nativement.
Version: 1.1
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: igp
*/

:root {
  --navy: #0F172A;
  --navy-soft: #1E293B;
  --gold: #C8A45D;
  --gold-dark: #B08D45;
  --white: #FFFFFF;
  --gray-light: #F8FAFC;
  --gray-border: #E2E8F0;
  --text-body: #475569;
  --text-dark: #1E293B;
  --radius: 12px;
  --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 16px 36px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: 'Inter', -apple-system, Arial, sans-serif;
  color: var(--white);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a { cursor: pointer; }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; }

/* HEADER */
header.site-header {
  background: var(--white);
  padding: 22px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--gray-border);
}

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

.logo svg { width: 54px; height: 46px; }
.logo path, .logo polygon { fill: var(--navy); }
.logo rect { fill: var(--white); }

.logo img.custom-logo { max-height: 56px; width: auto; }

.logo-text {
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.social-icons { display: flex; gap: 10px; margin-top: 10px; }

.social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-icons a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* NAV */
nav.main-nav {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  padding: 16px 0;
  text-align: center;
}

nav.main-nav ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav.main-nav ul li { margin: 0; }

nav.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 22px;
  transition: color 0.2s;
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav .current-menu-item > a { color: var(--gold-dark); }
nav.main-nav a:hover::after,
nav.main-nav .current-menu-item > a::after { width: 100%; }

.mobile-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	margin: 0 auto;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.mobile-nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--navy);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 110px 20px 90px;
  text-align: center;
}

.hero.has-bg-image { background-blend-mode: normal; }

.hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.82) 0%, rgba(15,23,42,0.55) 55%, rgba(15,23,42,0.88) 100%);
  z-index: 0;
}

.hero.has-bg-image > * { position: relative; z-index: 1; }

.hero-phones {
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.hero-phones span { margin: 0 15px; }
.hero-phones a { color: rgba(255,255,255,0.65); text-decoration: none; }

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  line-height: 1.25;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

/* RECHERCHE */
.search-section {
  background: var(--white);
  padding: 56px 20px;
  text-align: center;
}

.search-section h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.search-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 24px; }

.search-tabs button {
  font-family: 'Poppins', sans-serif;
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid var(--navy);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.search-tabs button:first-child { border-radius: 6px 0 0 6px; }
.search-tabs button:last-child { border-radius: 0 6px 6px 0; }

.search-tabs button.active { background: var(--navy); color: var(--white); }
.search-tabs button:not(.active) { background: var(--white); color: var(--navy); }

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto 16px;
}

.search-form select, .search-form input {
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-body);
  min-width: 160px;
  font-family: 'Inter', sans-serif;
  background: var(--gray-light);
}

.search-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* SERVICES */
.services { background: var(--navy); padding: 90px 40px; text-align: center; }

.services-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.services h2 {
  color: #F5F1E8 !important;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}

.services h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 28px;
  width: 290px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }

.service-card .icon { font-size: 34px; margin-bottom: 18px; }

.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-card h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 0;
}

.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 12px;
}

.service-card a {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ANNONCES / PROPERTY CARDS */
.latest-properties { background: var(--white); padding: 90px 40px; text-align: center; }

.latest-properties .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.latest-properties h2 {
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}

.latest-properties h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.property-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  isolation: isolate;
}

.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.property-card .property-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--gray-light);
  transition: transform 0.4s ease;
}

.property-card:hover .property-thumb { transform: scale(1.04); }

.property-card .property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.property-card .property-body { padding: 22px; }

.property-card .property-price {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.property-card .property-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.property-card .property-meta {
  font-size: 12px;
  color: var(--text-body);
  letter-spacing: 0.3px;
}

.no-properties { color: var(--text-body); font-style: italic; padding: 20px; }

/* CTA */
.cta { background: var(--gray-light); padding: 90px 20px; text-align: center; }

.cta-phones {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.cta-phones a { color: var(--text-body); text-decoration: none; }

.cta h2 {
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.cta h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.cta a.cta-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta a.cta-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* AGENCE */
.agence-wrap { background: var(--navy); padding: 90px 20px; }

.agence { text-align: center; max-width: 720px; margin: 0 auto; }

.agence h2 {
  color: #F5F1E8 !important;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.agence h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.agence p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-top: 24px;
  font-weight: 400;
}

.agence a {
  display: inline-block;
  margin-top: 28px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 13px 34px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.agence a:hover { background: var(--gold); color: var(--navy); }

/* FOOTER */
footer.site-footer {
  background: var(--navy);
  padding: 60px 40px 24px;
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col p, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2.1;
  text-decoration: none;
  display: block;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* PAGE "NOS BIENS" (archive) */
.archive-header { background: var(--navy); padding: 60px 20px; text-align: center; }

.archive-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.archive-results { background: var(--white); padding: 60px 40px; }

.results-count {
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.pagination-wrap { text-align: center; margin-top: 48px; }

.pagination-wrap a, .pagination-wrap span {
  display: inline-block;
  padding: 9px 15px;
  margin: 0 4px;
  background: var(--gray-light);
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.pagination-wrap .current { background: var(--navy); color: var(--white); }

/* FICHE BIEN (single) */
.single-bien-hero { background: var(--navy); padding: 50px 20px; text-align: center; }

.single-bien-hero h1 { font-size: 26px; font-weight: 700; letter-spacing: 0.3px; }

.single-bien-gallery { max-width: 1020px; margin: 0 auto; padding: 36px 20px 0; }

.single-bien-gallery img { border-radius: var(--radius); width: 100%; max-height: 480px; object-fit: cover; }

.single-bien-content { max-width: 1020px; margin: 0 auto; padding: 44px 20px 70px; color: var(--text-dark); background: var(--white); }

.single-bien-content .price-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.single-bien-facts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 24px 0 34px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.single-bien-facts div { font-size: 13px; color: var(--text-body); }
.single-bien-facts strong { display: block; font-family: 'Poppins', sans-serif; font-size: 19px; color: var(--navy); margin-bottom: 2px; }

.single-bien-desc { line-height: 1.9; color: var(--text-body); margin-bottom: 34px; }

.single-bien-content a.cta-btn {
  display: inline-block;
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 14px 36px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.single-bien-content a.cta-btn:hover { background: var(--gold-dark) !important; }

/* HERO ASYMÉTRIQUE */
.hero-asym {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 40px 48px 90px;
  text-align: left;
}

.hero-asym.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 55%, rgba(15,23,42,0.4) 100%);
}

.hero-asym-inner { position: relative; z-index: 1; max-width: 560px; }

.hero-eyebrow {
  color: var(--gold) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-asym h1 {
  color: #F5F1E8 !important;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(245,241,232,0.85) !important;
  line-height: 1.8;
  max-width: 460px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

/* RECHERCHE FLOTTANTE */
.floating-search-wrap {
  position: relative;
  z-index: 3;
  margin: -50px 48px 0;
}

.floating-search {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(15,23,42,0.22);
  padding: 22px 26px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.floating-search-field { flex: 1; min-width: 140px; }

.floating-search-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
}

.floating-search-field select {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--gray-border);
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
}

.floating-search-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.floating-search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* CHIFFRES CLÉS */
.stats-bar {
  background: var(--white);
  padding: 60px 24px 20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* GRILLE ASYMÉTRIQUE "À LA UNE" */
.featured-section { background: var(--white); padding: 50px 48px 90px; }

.featured-heading { margin-bottom: 28px; }

.featured-heading h2 { color: var(--navy); font-size: 26px; font-weight: 700; }

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 480px;
}

.featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  isolation: isolate;
}

.featured-card-large { grid-row: 1 / span 2; }

.featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.featured-thumb-placeholder { background: var(--gray-border); }

.featured-card:hover .featured-thumb { transform: scale(1.05); }

.featured-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0) 55%);
}

.featured-price {
  font-family: 'Poppins', sans-serif;
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
}

.featured-card-small .featured-price { font-size: 16px; }

.featured-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.featured-cta { text-align: center; margin-top: 36px; }

.text-link-gold {
  font-family: 'Poppins', sans-serif;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.text-link-gold:hover { color: var(--gold); }

/* TÉMOIGNAGE */
.testimonial-section { background: var(--navy); padding: 70px 24px; text-align: center; }

.testimonial-mark { color: var(--gold); font-size: 40px; font-family: Georgia, serif; margin-bottom: 8px; }

.testimonial-quote {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* POURQUOI NOUS CHOISIR (bandeau alterné) */
.why-us {
  background: var(--white);
  padding: 90px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-text h2 { color: var(--navy); font-size: 28px; font-weight: 700; margin: 10px 0 32px; }

.why-us-list { list-style: none; display: flex; flex-direction: column; gap: 26px; }

.why-us-list li { display: flex; gap: 18px; align-items: flex-start; }

.why-us-num {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-list strong { display: block; color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 14px; margin-bottom: 4px; }
.why-us-list p { color: var(--text-body); font-size: 13px; line-height: 1.7; }

.why-us-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.why-us-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  color: var(--white);
}

.why-us-card .icon { font-size: 28px; margin-bottom: 10px; }
.why-us-card span { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; }

.why-us-card-1 { grid-column: 1 / span 2; background: var(--gold); color: var(--navy); }
.why-us-card-2, .why-us-card-3 { background: var(--gray-light); color: var(--navy); }

/* NOUVELLE PAGE "NOS BIENS" (sidebar filtres) */
.archive-header-asym {
  background:
    radial-gradient(circle at 1px 1px, rgba(200,164,93,0.18) 1px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 100px 48px 90px;
  position: relative;
  overflow: hidden;
}

.archive-header-asym::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(200,164,93,0.3);
  border-radius: 50%;
}

.archive-header-asym::before {
  content: '';
  position: absolute;
  bottom: -90px;
  right: 120px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(200,164,93,0.15);
  border-radius: 50%;
}

.archive-header-asym h1 { color: #F5F1E8 !important; font-size: 36px; font-weight: 800; margin-bottom: 8px; position: relative; }
.archive-header-asym h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.archive-header-asym p { color: rgba(245,241,232,0.65) !important; font-size: 13px; position: relative; }

.archive-layout {
  background: var(--white);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 50px 48px 90px;
  align-items: start;
}

.archive-filters {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 20px;
}

.archive-filters h3 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.filter-group { margin-bottom: 18px; }

.filter-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 6px;
}

.filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
}

.filter-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease;
}

.filter-submit:hover { background: var(--gold-dark); }

.filter-reset {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-body);
  text-decoration: underline;
}

.archive-results-asym .properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: none;
  margin: 0;
}

/* FICHE BIEN - GALERIE + CARTE FLOTTANTE */
.single-gallery-hero { position: relative; height: 420px; overflow: hidden; }

.single-gallery-img { width: 100%; height: 100%; object-fit: cover; }
.single-gallery-placeholder { background: var(--gray-border); }

.single-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px;
  background: linear-gradient(0deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.15) 60%);
}

.single-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.single-gallery-overlay h1 { color: #F5F1E8 !important; font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.single-gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 14px; }

.single-facts-float {
  position: relative;
  z-index: 2;
  margin: -40px 48px 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(15,23,42,0.15);
  padding: 26px 32px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.single-fact { text-align: center; }
.single-fact strong { display: block; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.single-fact span { font-size: 11px; color: var(--text-body); text-transform: uppercase; letter-spacing: 0.5px; }

.single-layout {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  padding: 60px 48px 90px;
}

.single-main h2 { color: var(--navy); font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.single-main .single-bien-desc { color: var(--text-body); line-height: 1.9; }

.single-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.single-gallery-thumb-link { display: block; border-radius: 8px; overflow: hidden; }

.single-gallery-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-gallery-thumb-link:hover .single-gallery-thumb { transform: scale(1.06); }

.single-contact-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 20px;
}

.single-contact-card h3 { color: var(--navy); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.single-contact-card p { color: var(--text-body); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }

.single-contact-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 10px;
  background: var(--gold);
  color: var(--navy);
  transition: background 0.2s ease;
}

.single-contact-btn:hover { background: var(--gold-dark); }

.single-contact-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.single-contact-btn-outline:hover { background: var(--navy); color: var(--white); }

/* PAGES CLASSIQUES (Contact, Agence, Estimation...) */
.page-banner {
  background:
    radial-gradient(circle at 1px 1px, rgba(200,164,93,0.18) 1px, transparent 0) 0 0 / 22px 22px,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 100px 48px 90px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(200,164,93,0.3);
  border-radius: 50%;
}

.page-banner::before {
  content: '';
  position: absolute;
  bottom: -90px;
  right: 120px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(200,164,93,0.15);
  border-radius: 50%;
}

.page-banner-eyebrow {
  color: var(--gold) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.page-banner h1 { color: #F5F1E8 !important; font-size: 36px; font-weight: 800; letter-spacing: 0.3px; position: relative; }
.page-banner h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 16px;
}
.page-banner p { color: rgba(245,241,232,0.7) !important; font-size: 14px; margin-top: 16px; max-width: 520px; position: relative; }

.page-banner-badges {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
}

.page-banner-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(245,241,232,0.85);
}

.page-banner-badges span::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
}

.page-body {
  background: var(--white);
  padding: 60px 48px 90px;
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-body);
  line-height: 1.9;
}

.page-body h2 { color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 700; margin: 30px 0 14px; }
.page-body ul { padding-left: 20px; margin: 14px 0; }
.page-body li { margin-bottom: 6px; }

.contact-split {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 48px 90px;
  align-items: start;
}

.contact-info h2 { color: var(--navy); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-body); line-height: 1.8; margin-bottom: 24px; }

.contact-detail { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gray-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.contact-detail a, .contact-detail span { color: var(--navy); font-size: 14px; font-weight: 600; text-decoration: none; }

.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 24px; border: 1px solid var(--gray-border); }
.contact-map iframe { width: 100%; height: 260px; border: 0; display: block; }

.contact-form-wrap {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form-wrap h2 { color: var(--navy); font-size: 18px; font-weight: 700; margin-bottom: 20px; }

/* HEADER V2 (ligne unique, épuré) */
.site-header-v2 {
  background: var(--white);
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #F1F5F9;
  box-shadow: 0 2px 12px rgba(15,23,42,0.04);
  flex-wrap: wrap;
  position: relative;
}

.logo-v2 { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-v2 svg { width: 38px; height: 33px; flex-shrink: 0; }
.logo-v2-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-line-1 { color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.5px; }
.logo-line-2 { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 3px; }
.logo-v2-custom img.custom-logo { max-height: 50px; width: auto; }

.main-nav-v2 ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav-v2 a {
  position: relative;
  color: var(--text-body);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-bottom: 6px;
  display: inline-block;
}

.main-nav-v2 a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav-v2 a:hover,
.main-nav-v2 .current-menu-item > a { color: var(--navy); }
.main-nav-v2 a:hover::after,
.main-nav-v2 .current-menu-item > a::after { transform: scaleX(1); }

/* CONTACT FLOTTANT */
.floating-contact-bar {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,23,42,0.25);
  transition: transform 0.2s ease;
}

.floating-btn:hover { transform: scale(1.08); }

.floating-btn-whatsapp { background: #25D366; color: #fff; }
.floating-btn-phone { background: var(--navy); color: var(--gold); }

/* PAGES PREMIUM (Estimation, Agence...) */
.premium-page-body {
  background: var(--white);
  padding: 60px 48px 90px;
  max-width: 900px;
  margin: 0 auto;
}

.premium-intro {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.9;
  max-width: 720px;
  margin-bottom: 50px;
}

.premium-subheading {
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.process-step {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
}

.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 16px;
}

.process-step h3 { color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-body); font-size: 13px; line-height: 1.6; }

.premium-checklist { list-style: none; margin-bottom: 50px; }

.premium-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-body);
  font-size: 14px;
}

.premium-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.premium-cta-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.premium-cta-box span { color: var(--white); font-size: 14px; font-weight: 600; }

.premium-cta-box a {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.premium-cta-box a:hover { background: var(--gold-dark); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.value-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
}

.value-icon { display: block; font-size: 26px; margin-bottom: 12px; }
.value-card h3 { color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .featured-card { height: 220px; }
  .featured-card-large { grid-row: auto; height: 300px; }
  .why-us { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .archive-layout { grid-template-columns: 1fr; padding: 40px 20px 60px; }
  .archive-filters { position: static; }

  .single-gallery-hero { height: 260px; }
  .single-gallery-overlay { padding: 24px 20px; }
  .single-gallery-overlay h1 { font-size: 22px; }
  .single-facts-float { margin: -30px 16px 0; padding: 18px; gap: 14px; }
  .single-layout { grid-template-columns: 1fr; padding: 40px 20px 60px; gap: 30px; }
  .single-contact-card { position: static; }

  .page-banner { padding: 40px 20px; }
  .page-banner h1 { font-size: 24px; }
  .page-body { padding: 40px 20px 60px; }

  .contact-split { grid-template-columns: 1fr; padding: 40px 20px 60px; gap: 30px; }

  .premium-page-body { padding: 40px 20px 60px; }
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .premium-cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .hero-asym { padding: 40px 20px 70px; min-height: 300px; text-align: left; }
  .hero-asym h1 { font-size: 30px; }
  .hero-lead { font-size: 13px; }

  .archive-header-asym { padding: 40px 20px 30px; }
  .archive-header-asym h1 { font-size: 24px; }

  .site-header-v2 { padding: 16px 20px; }
  .logo-v2 svg { width: 30px; height: 26px; }
  .logo-line-1 { font-size: 11px; }
  .logo-line-2 { font-size: 8px; letter-spacing: 2px; }

  .mobile-nav-toggle {
    display: flex !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .main-nav-v2 {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav-v2.is-open { max-height: 400px; margin-top: 16px; }

  .main-nav-v2 ul { flex-direction: column; gap: 4px; }
  .main-nav-v2 a { display: block; padding: 10px 0; }

  .floating-contact-bar { right: 16px; bottom: 16px; }
  .floating-btn { width: 46px; height: 46px; }

  .floating-search-wrap { margin: -40px 16px 0; }
  .floating-search { flex-direction: column; align-items: stretch; padding: 18px; }
  .floating-search-btn { width: 100%; }

  .stats-bar { gap: 30px; padding: 40px 16px 10px; }
  .stat-number { font-size: 26px; }

  .featured-section { padding: 40px 16px 60px; }

  .why-us-visual { grid-template-columns: 1fr 1fr; }

  .hero { padding: 70px 16px 50px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }

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

  nav.main-nav .main-nav-inner { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  nav.main-nav .main-nav-inner.is-open { max-height: 500px; }

  nav.main-nav ul { flex-direction: column; padding-top: 10px; }
  nav.main-nav a { margin: 10px 0; display: block; }

  .search-form select, .search-form input { min-width: 100%; }

  footer.site-footer { gap: 34px; text-align: center; justify-content: flex-start; flex-direction: column; align-items: center; }
  .footer-col { text-align: center; }

  .services, .latest-properties, .cta, .agence-wrap, .archive-results { padding: 50px 18px; }

  .single-bien-facts { flex-direction: column; gap: 14px; }
}

@media (min-width: 769px) {
  nav.main-nav .main-nav-inner { display: block !important; max-height: none !important; }
}
