/* ===== Oran Immo — custom styles (layered on Tailwind) ===== */

:root {
  --forest: #064E3B;
  --forest-deep: #03372A;
  --forest-dark: #022C22;
  --emerald: #059669;
  --mint: #34D399;
  --mint-light: #6EE7B7;
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* Arabic / RTL */
html[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-sub { letter-spacing: 0; }
html[dir="rtl"] .contact-row { text-align: right; }

/* ===== Gradient text ===== */
.text-gradient {
  background: linear-gradient(105deg, #6EE7B7 0%, #34D399 45%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Nav ===== */
#nav.scrolled {
  background: rgba(247, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px -12px rgba(6, 78, 59, 0.18);
}
.nav-link { position: relative; color: #fff; transition: color .25s; }
#nav.scrolled .nav-link { color: var(--forest); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--mint); transition: width .3s ease;
}
.nav-link:hover { color: var(--mint); }
.nav-link:hover::after { width: 100%; }
#nav.scrolled .nav-logo-dark { display: block; }
#nav.scrolled .nav-logo-light { display: none !important; }
#nav:not(.scrolled) .nav-logo-dark { display: none; }
#nav:not(.scrolled) .nav-logo-light { display: block !important; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 13px; padding: 7px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25); color: #fff; transition: all .25s;
}
#nav.scrolled .lang-toggle { border-color: rgba(6,78,59,.2); color: var(--forest); }
.lang-toggle span.active { color: var(--mint); }
.lang-toggle:hover { border-color: var(--mint); }

.mobile-link { display: block; padding: 13px 6px; border-radius: 12px; font-weight: 500; transition: background .2s; }
.mobile-link:hover { background: rgba(255,255,255,.08); }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(120deg, #10B981, #059669);
  color: #fff; font-weight: 600; padding: 14px 26px; border-radius: 14px;
  box-shadow: 0 14px 30px -10px rgba(16,185,129,.6); transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -10px rgba(16,185,129,.75); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600;
  padding: 14px 26px; border-radius: 14px; border: 1px solid rgba(167,243,208,.35);
  background: rgba(255,255,255,.04); backdrop-filter: blur(8px); transition: all .25s;
}
.btn-ghost:hover { border-color: var(--mint); background: rgba(52,211,153,.12); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; color: var(--emerald); font-weight: 600;
  padding: 12px 22px; border-radius: 12px; border: 1.5px solid rgba(5,150,105,.3); transition: all .25s;
}
.btn-outline:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* ===== Badges / eyebrows ===== */
.badge-glass {
  display: inline-flex; align-items: center; font-size: 13px; font-weight: 500; color: var(--mint-light);
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(167,243,208,.25);
  background: rgba(52,211,153,.08); backdrop-filter: blur(8px);
}
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 14px;
}
.section-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.02em; color: var(--forest); }
.section-sub { margin-top: 16px; font-size: 1.08rem; color: rgba(6,78,59,.6); }

/* ===== Hero scene ===== */
.hero-vignette {
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(16,185,129,.18), transparent 55%),
    radial-gradient(90% 90% at 20% 80%, rgba(2,44,34,.4), transparent),
    linear-gradient(180deg, rgba(2,44,34,.2) 0%, rgba(2,44,34,.85) 100%);
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10;
  width: 26px; height: 42px; border: 2px solid rgba(167,243,208,.4); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-hint span { width: 4px; height: 8px; background: var(--mint); border-radius: 4px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 80%{opacity:0;transform:translateY(12px)} }

/* ===== Stats ===== */
.stat { text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; }
.stat-num { background: linear-gradient(120deg,#6EE7B7,#34D399); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { margin-top: 10px; font-size: .92rem; color: rgba(167,243,208,.65); }

/* ===== Service cards ===== */
.service-card {
  background: #fff; border-radius: 22px; padding: 32px 26px; border: 1px solid rgba(6,78,59,.07);
  box-shadow: 0 10px 30px -18px rgba(6,78,59,.25); transition: transform .35s, box-shadow .35s, border-color .35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -22px rgba(5,150,105,.45); border-color: rgba(52,211,153,.4); }
.service-icon {
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 28px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(52,211,153,.18), rgba(16,185,129,.1)); margin-bottom: 20px;
}
.service-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--forest); }
.service-card p { margin-top: 10px; font-size: .95rem; line-height: 1.6; color: rgba(6,78,59,.62); }

/* ===== Property cards ===== */
.prop-card {
  position: relative; border-radius: 22px; overflow: hidden; background: #fff;
  border: 1px solid rgba(6,78,59,.08); box-shadow: 0 12px 34px -20px rgba(6,78,59,.3);
  transition: transform .4s, box-shadow .4s;
}
.prop-card:hover { transform: translateY(-8px); box-shadow: 0 30px 55px -24px rgba(5,150,105,.45); }
.prop-media { position: relative; height: 220px; overflow: hidden; }
.prop-media .ph { width: 100%; height: 100%; transition: transform .6s; }
.prop-card:hover .prop-media .ph { transform: scale(1.08); }
.prop-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 12px; font-weight: 600; color: #fff;
  padding: 6px 13px; border-radius: 999px; background: rgba(2,44,34,.55); backdrop-filter: blur(6px);
}
.prop-price {
  position: absolute; bottom: 14px; left: 14px; z-index: 2; font-family: 'Poppins',sans-serif; font-weight: 700;
  color: #fff; font-size: 1.05rem; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.prop-body { padding: 20px 22px 24px; }
.prop-body h3 { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--forest); }
.prop-loc { margin-top: 4px; font-size: .9rem; color: rgba(6,78,59,.55); display:flex; align-items:center; gap:5px; }
.prop-meta { margin-top: 16px; display: flex; gap: 18px; font-size: .85rem; color: rgba(6,78,59,.7); border-top: 1px solid rgba(6,78,59,.08); padding-top: 14px; }
.prop-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== About ===== */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.glow-orb-1 { width: 380px; height: 380px; background: #10B981; top: -80px; right: -60px; }
.glow-orb-2 { width: 300px; height: 300px; background: #047857; bottom: -100px; left: -80px; opacity: .4; }
.glow-orb-3 { width: 420px; height: 420px; background: #10B981; top: 10%; right: -120px; opacity: .35; }
.feat-item { display: flex; align-items: flex-start; gap: 14px; font-size: 1.05rem; color: rgba(236,253,245,.9); }
.feat-check {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg,#34D399,#059669); color: #022C22; font-weight: 800; font-size: 13px;
}
.about-card-stack { position: relative; height: 420px; }
.about-card { position: absolute; border-radius: 26px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.about-card-a {
  inset: 0 60px 80px 0;
  background: linear-gradient(135deg, #065F46, #022C22);
  background-image: linear-gradient(135deg, rgba(16,185,129,.25), rgba(2,44,34,.7)), repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px);
}
.about-card-b {
  inset: 90px 0 0 80px;
  background: linear-gradient(135deg, #10B981, #047857);
  background-image: linear-gradient(135deg, rgba(167,243,208,.35), rgba(4,120,87,.6)), repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px);
}
.about-glass {
  position: absolute; right: 14px; bottom: 14px; width: 220px; padding: 26px;
  border-radius: 22px; background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18); box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}

/* ===== Zones ===== */
.zone-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(6,78,59,.1); font-weight: 500; color: var(--forest);
  box-shadow: 0 6px 18px -12px rgba(6,78,59,.3); transition: all .28s; cursor: default;
}
.zone-chip:hover { background: linear-gradient(120deg,#10B981,#059669); color: #fff; transform: translateY(-3px); border-color: transparent; }
.zone-chip::before { content: '📍'; font-size: 14px; }

/* ===== Testimonials ===== */
.test-card {
  background: var(--cream, #F7FAF8); border-radius: 22px; padding: 30px;
  border: 1px solid rgba(6,78,59,.07); box-shadow: 0 12px 30px -22px rgba(6,78,59,.3);
}
.test-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; }
.test-card p { margin-top: 14px; font-size: 1rem; line-height: 1.65; color: rgba(6,78,59,.78); }
.test-author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(135deg,#10B981,#047857); }
.test-author b { display: block; font-family: 'Poppins',sans-serif; font-size: .95rem; color: var(--forest); }
.test-author small { color: rgba(6,78,59,.5); }

/* ===== Contact ===== */
.contact-row { display: flex; align-items: center; gap: 16px; transition: transform .2s; }
.contact-row:hover { transform: translateX(4px); }
html[dir="rtl"] .contact-row:hover { transform: translateX(-4px); }
.contact-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; background: rgba(52,211,153,.12); border: 1px solid rgba(167,243,208,.18); }
.contact-k { display: block; font-size: .8rem; color: rgba(167,243,208,.6); }
.contact-v { display: block; font-weight: 600; color: #fff; }
.social-btn {
  padding: 10px 20px; border-radius: 12px; font-weight: 600; font-size: .9rem; color: #fff;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); transition: all .25s;
}
.social-btn:hover { background: var(--mint); color: #022C22; border-color: var(--mint); }

.contact-card { background: rgba(255,255,255,.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 30px; }
.field { display: block; }
.field > span { display: block; font-size: .85rem; font-weight: 500; color: rgba(167,243,208,.75); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 13px; background: rgba(2,44,34,.45);
  border: 1px solid rgba(255,255,255,.12); color: #fff; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(167,243,208,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(52,211,153,.18); }
.field select option { background: #03372A; color: #fff; }

.footer-h { font-family: 'Poppins',sans-serif; font-weight: 600; color: #fff; margin-bottom: 14px; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 56px; height: 56px;
  border-radius: 50%; display: grid; place-items: center; background: #25D366;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); animation: waPulse 2.4s infinite; transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
html[dir="rtl"] .wa-float { right: auto; left: 24px; }
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.45)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float, .scroll-hint span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ========================================================= */
/* ===== v2 — icônes SVG, fix navbar, recherche, étapes ==== */
/* ========================================================= */

/* Icône générique (line icon) */
.ic { display: inline-block; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ----- Navbar : bouton CTA qui ressort sur fond sombre ET clair ----- */
.btn-nav {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
  padding: 11px 22px; border-radius: 12px; color: #022C22;
  background: linear-gradient(120deg, #6EE7B7, #34D399);
  box-shadow: 0 6px 20px -6px rgba(52,211,153,.7), inset 0 0 0 1px rgba(255,255,255,.25);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(52,211,153,.85); }
#nav.scrolled .btn-nav {
  color: #fff; background: linear-gradient(120deg, #10B981, #059669);
  box-shadow: 0 8px 20px -8px rgba(16,185,129,.6);
}

/* Lang toggle : plus visible en haut (fond sombre) */
.lang-toggle { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.4); }
.lang-toggle span:not(.active):not(.opacity-40) { color: rgba(255,255,255,.85); }
#nav.scrolled .lang-toggle { background: rgba(6,78,59,.06); border-color: rgba(6,78,59,.25); }
#nav.scrolled .lang-toggle span:not(.active):not(.opacity-40) { color: var(--forest); }
.lang-toggle span.active { color: #022C22; background: var(--mint-light); padding: 2px 7px; border-radius: 6px; }
#nav.scrolled .lang-toggle span.active { color: #fff; background: var(--emerald); }

/* ----- Service icons : conteneur + svg ----- */
.service-icon { color: var(--emerald); }
.service-icon .ic { width: 28px; height: 28px; }

/* ----- Feature check (about) en SVG ----- */
.feat-check { font-size: 0; }
.feat-check .ic { width: 14px; height: 14px; stroke: #022C22; stroke-width: 2.6; }

/* ----- Contact icons en SVG ----- */
.contact-ic { color: var(--mint-light); }
.contact-ic .ic { width: 21px; height: 21px; }

/* ----- Property meta / loc icons ----- */
.prop-loc .ic { width: 15px; height: 15px; color: var(--emerald); }
.prop-meta .ic { width: 16px; height: 16px; color: var(--emerald); }

/* ----- Zone chip : retire l'emoji, ajoute svg ----- */
.zone-chip::before { content: none !important; }
.zone-chip .ic { width: 15px; height: 15px; color: var(--emerald); transition: color .28s; }
.zone-chip:hover .ic { color: #fff; }

/* ----- Réseaux sociaux : icônes de marque ----- */
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-ic {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 12px;
  font-weight: 600; font-size: .92rem; color: #fff; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05); transition: all .25s; min-height: 44px;
}
.social-ic svg { width: 20px; height: 20px; fill: currentColor; }
.social-ic.fb:hover { background: #1877F2; border-color: #1877F2; }
.social-ic.tt:hover { background: #010101; border-color: #25F4EE; }
.social-ic.wa:hover { background: #25D366; border-color: #25D366; color: #022C22; }

/* Footer social row */
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); transition: all .25s; }
.footer-socials a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-socials a.fb:hover { background:#1877F2; border-color:#1877F2; }
.footer-socials a.tt:hover { background:#010101; border-color:#25F4EE; }
.footer-socials a.wa:hover { background:#25D366; border-color:#25D366; }

/* ========================================================= */
/* ===== Barre de recherche immobilière (hero) ============= */
/* ========================================================= */
.hero-search {
  margin-top: 36px; max-width: 720px;
  background: rgba(255,255,255,.10); backdrop-filter: blur(14px);
  border: 1px solid rgba(167,243,208,.22); border-radius: 18px; padding: 14px;
  display: grid; grid-template-columns: 1.1fr 1.4fr 1fr auto; gap: 10px; align-items: end;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,.7);
}
.hsf { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hsf > label { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(167,243,208,.7); padding-left: 4px; }
.hsf select, .hsf input {
  width: 100%; padding: 12px 13px; border-radius: 11px; background: rgba(2,44,34,.5);
  border: 1px solid rgba(255,255,255,.14); color: #fff; font-size: .92rem;
}
.hsf input::placeholder { color: rgba(167,243,208,.4); }
.hsf select:focus, .hsf input:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(52,211,153,.18); }
.hsf select option { background: #03372A; }
.hero-search .hs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 22px;
  border-radius: 11px; font-weight: 700; color: #022C22; white-space: nowrap;
  background: linear-gradient(120deg, #6EE7B7, #34D399); box-shadow: 0 8px 22px -8px rgba(52,211,153,.7);
  transition: transform .2s, box-shadow .2s;
}
.hero-search .hs-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(52,211,153,.85); }
.hero-search .hs-btn .ic { width: 18px; height: 18px; stroke: #022C22; stroke-width: 2.2; }

/* ========================================================= */
/* ===== Section "Comment ça marche" (4 étapes) =========== */
/* ========================================================= */
.steps-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; text-align: center; }
.step-ic {
  width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 20px; display: grid; place-items: center;
  color: var(--emerald); background: #fff; border: 1px solid rgba(6,78,59,.08);
  box-shadow: 0 14px 30px -16px rgba(6,78,59,.35); position: relative;
}
.step-ic .ic { width: 32px; height: 32px; }
.step-num {
  position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 14px;
  color: #fff; background: linear-gradient(135deg,#10B981,#047857); box-shadow: 0 6px 14px -6px rgba(5,150,105,.6);
}
html[dir="rtl"] .step-num { right: auto; left: -10px; }
.step h3 { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--forest); }
.step p { margin-top: 8px; font-size: .92rem; line-height: 1.55; color: rgba(6,78,59,.6); }
/* ligne de liaison entre étapes (desktop) */
.steps-grid::before {
  content: ''; position: absolute; top: 38px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, rgba(16,185,129,.0), rgba(16,185,129,.35), rgba(16,185,129,.0)); z-index: 0;
}
.step > * { position: relative; z-index: 1; }

/* ========================================================= */
/* ===== Améliorations mobile ============================== */
/* ========================================================= */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .steps-grid::before { display: none; }
}
@media (max-width: 860px) {
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hero-search .hs-btn { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  section { scroll-margin-top: 70px; }
  .section-title { font-size: 1.75rem; }
  .hero-search { grid-template-columns: 1fr; padding: 12px; margin-top: 28px; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; max-width: 360px; margin-left: auto; margin-right: auto; }
  .step { display: flex; align-items: center; text-align: left; gap: 16px; }
  html[dir="rtl"] .step { text-align: right; }
  .step-ic { margin: 0; width: 60px; height: 60px; flex: none; }
  .step-ic .ic { width: 26px; height: 26px; }
  .about-card-stack { height: 320px; }
  .about-glass { width: 180px; padding: 20px; }
  .about-glass p:first-child { font-size: 2.6rem; }
  .stat-num { font-size: 2rem; }
  .service-card { padding: 26px 22px; }
  .contact-card { padding: 22px; }
  .btn-primary, .btn-ghost { padding: 13px 22px; font-size: .95rem; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  html[dir="rtl"] .wa-float { left: 18px; right: auto; }
  .socials { gap: 9px; }
  .social-ic { padding: 11px 15px; font-size: .88rem; }
}

/* léger lissage : moins "luxe", plus net sur sections sombres */
#about .section-title, #contact .section-title { letter-spacing: -.015em; }
.badge-glass { background: rgba(52,211,153,.10); }

/* étoiles d'avis en SVG */
.test-stars { display: flex; gap: 3px; }

/* ========================================================= */
/* ===== Logo réel (emblème navbar + wordmark + footer) ==== */
/* ========================================================= */
.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; padding: 5px 7px;
  box-shadow: 0 4px 14px -6px rgba(6,78,59,.45); border: 1px solid rgba(6,78,59,.06);
}
.logo-chip img { height: 30px; width: auto; display: block; }

.brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.18rem; line-height: 1; letter-spacing: -.01em; display: inline-flex; align-items: baseline; gap: 4px; }
.brand-name b { font-weight: 800; color: #fff; transition: color .25s; }
.brand-name span { font-weight: 600; color: var(--mint-light); transition: color .25s; }
#nav.scrolled .brand-name b { color: var(--forest); }
#nav.scrolled .brand-name span { color: var(--emerald); }
html[dir="rtl"] .brand-name { font-family: 'Cairo', sans-serif; }

/* Footer : logo complet sur pastille claire (footer sombre) */
.footer-logo { display: inline-flex; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 10px 26px -14px rgba(0,0,0,.6); }
.footer-logo img { height: 96px; width: auto; display: block; }

@media (max-width: 640px) {
  .brand-name { font-size: 1.05rem; }
  .logo-chip img { height: 26px; }
  .footer-logo img { height: 80px; }
}

/* ========================================================= */
/* ===== v3 — photos biens, about photo, CTA, FAQ, map ===== */
/* ========================================================= */

/* images de cartes biens : couverture nette */
.prop-media .ph { object-fit: cover; }

/* About : vraie photo + carte stat */
.about-photo { position: relative; border-radius: 26px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(0,0,0,.6); }
.about-photo img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-photo-glass { position: absolute; bottom: 18px; left: 18px; padding: 18px 22px; border-radius: 18px; background: rgba(2,44,34,.55); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.18); max-width: 230px; }
html[dir="rtl"] .about-photo-glass { left: auto; right: 18px; }

/* Bande CTA avec image de fond */
.cta-band { position: relative; padding: 88px 20px; background-image: linear-gradient(rgba(2,44,34,.82), rgba(3,55,42,.92)), url('../assets/biens/cta.jpg'); background-size: cover; background-position: center; }
.cta-band-inner { position: relative; z-index: 1; }

/* FAQ accordéon (details/summary natif) */
.faq-item { background: #fff; border: 1px solid rgba(6,78,59,.08); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px -18px rgba(6,78,59,.3); transition: box-shadow .25s; }
.faq-item[open] { box-shadow: 0 16px 34px -20px rgba(5,150,105,.4); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--forest); font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--emerald); }
.faq-item p { padding: 0 22px 22px; margin: 0; color: rgba(6,78,59,.66); line-height: 1.65; }
.faq-plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--emerald); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq-plus::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-plus::after { left: 9px; top: 2px; width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }

/* Carte Google Maps */
.map-wrap { height: 380px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 50px -24px rgba(0,0,0,.6); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.05); }

/* Footer enrichi */
.footer-link { transition: color .2s; }
.footer-link:hover { color: var(--mint); }

/* Menu mobile : boutons d'action */
.mobile-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 12px; font-weight: 600; font-size: .95rem; min-height: 48px; }
.mobile-cta.call { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.mobile-cta.call .ic { stroke: var(--mint-light); }
.mobile-cta.wa { background: #25D366; color: #022C22; }
.mobile-link { font-size: 1.02rem; }

/* ========================================================= */
/* ===== Correctif arabe (police + RTL + chiffres LTR) ===== */
/* ========================================================= */
html[dir="rtl"] body,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4,
html[dir="rtl"] .section-title, html[dir="rtl"] .brand-name,
html[dir="rtl"] .eyebrow, html[dir="rtl"] .badge-glass,
html[dir="rtl"] .service-card h3, html[dir="rtl"] .prop-body h3,
html[dir="rtl"] .step h3, html[dir="rtl"] .footer-h, html[dir="rtl"] .faq-item summary,
html[dir="rtl"] .btn-primary, html[dir="rtl"] .btn-ghost, html[dir="rtl"] .btn-nav,
html[dir="rtl"] .hs-btn, html[dir="rtl"] input, html[dir="rtl"] select,
html[dir="rtl"] textarea, html[dir="rtl"] button, html[dir="rtl"] .test-author b {
  font-family: 'Tajawal', 'Plus Jakarta Sans', sans-serif;
}
/* le letter-spacing casse la cursive arabe → on l'annule en RTL */
html[dir="rtl"] * { letter-spacing: 0 !important; }
/* uppercase n'a pas de sens en arabe */
html[dir="rtl"] .eyebrow { text-transform: none; }
/* chiffres / latin (prix, tel, m², %) gardent leur sens LTR même en RTL */
.contact-v, .prop-price, .stat-num, .prop-meta span, .prop-loc { unicode-bidi: plaintext; }
html[dir="rtl"] .hsf label { text-transform: none; }

/* mobile : about photo plus courte */
@media (max-width: 640px) {
  .about-photo img { height: 340px; }
  .map-wrap { height: 300px; }
  .cta-band { padding: 64px 18px; }
  .faq-item summary { font-size: .96rem; padding: 17px 18px; }
}
