:root{
  --bg:#0f141b;
  --nav:#071022cc;
  --card:#121826;
  --gold:#c6a15b;
  --gold-dark:#a98243;
  --muted:#aeb7c2;
  --text:#faf9f6;
  --radius:12px;
  --radius-lg:22px;
  --container:1200px;
  --shadow-card:0 20px 50px rgba(2,6,20,0.55);
  --shadow-card-hover:0 35px 80px rgba(2,6,20,0.7), 0 0 0 1px rgba(212,175,55,0.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter, Arial, sans-serif;font-size:16px;line-height:1.65;background:var(--bg);color:var(--text);direction:rtl}

/* Screen-reader-only text: visually hidden, still announced by assistive tech */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Skip-to-content link, hidden until it receives keyboard focus */
.skip-link{
  position:absolute;
  right:16px;
  top:-60px;
  background:var(--gold);
  color:#071020;
  font-weight:700;
  padding:12px 22px;
  border-radius:8px;
  z-index:100;
  transition:top .2s ease;
}
.skip-link:focus{top:16px;outline:3px solid #fff;outline-offset:2px}

/* Visible keyboard-focus indicator for every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

/* Placeholder text needs an explicit color: browser defaults assume a light
   background and are barely visible on this site's dark inputs. */
::placeholder{color:var(--muted);opacity:1}

@media (prefers-contrast: more){
  .card, .property-card, .form-card, .filter-bar, #mapContainer, .view-toggle{
    border-color:rgba(255,255,255,0.45) !important;
  }
  .btn{outline:2px solid currentColor}
}

/* Reduced motion: stop all animation/transition/smooth-scroll site-wide */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* Scroll reveal. Elements are fully visible by default; only once JavaScript
   confirms it's running does it add .will-reveal (the hidden-until-scrolled
   starting state), then .is-visible once the element has entered the viewport.
   Kept early in the cascade so later hover/interactive rules always win. */
.will-reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 700ms ease, transform 700ms ease;
}
.will-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .will-reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}

/* Header */
.site-header{position:sticky;top:0;background:var(--nav);backdrop-filter:blur(10px);z-index:30;border-bottom:1px solid rgba(255,255,255,0.03);box-shadow:0 12px 30px rgba(0,0,0,0.25)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding:12px 20px}
.brand{display:flex;align-items:center;gap:14px}
.brand-logo{
    height:130px !important;
    width:auto;
    display:block;
}
.brand-name{font-weight:700}
.brand-sub{color:var(--muted);font-size:13px}
.main-nav a{position:relative;color:var(--text);text-decoration:none;margin-left:18px;margin-right:0;padding:8px 6px;border-radius:8px;transition:color .2s ease}
.main-nav a::after{content:"";position:absolute;right:6px;left:6px;bottom:0;height:2px;background:var(--gold);transform:scaleX(0);transform-origin:center;transition:transform .25s ease}
.main-nav a:hover{color:var(--gold)}
.main-nav a:hover::after{transform:scaleX(1)}

/* Hero */
.hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,0.05), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.014) 0px, rgba(255,255,255,0.014) 1px, transparent 1px, transparent 26px),
    linear-gradient(180deg,rgba(7,10,20,0.96),rgba(7,10,20,0.98));
}
.hero-inner{position:relative;padding:36px 0 26px;min-height:56vh;display:flex;align-items:center}

.hero-grid{display:grid;grid-template-columns:40% 60%;gap:40px;align-items:center}
.hero-visual{position:relative}
.visual-wrap{position:relative;display:block;border-radius:0;overflow:hidden;display:flex;align-items:center;justify-content:center}
.visual-wrap img{
    width:100%;
    height:620px;
    object-fit:contain;
    display:block;
    position:relative;
    z-index:2;
    object-position:center bottom;
    transform:none;
    filter:brightness(1.12) contrast(1.08);
}
.hero-visual{position:relative}
.hero-visual .gold-glow{position:absolute;left:-2%;top:6%;width:480px;height:480px;border-radius:50%;background:radial-gradient(circle at 40% 30%, rgba(212,175,55,0.3), rgba(212,175,55,0.14) 45%, transparent 66%);filter:blur(48px);z-index:1;pointer-events:none}

.hero .hero-inner{position:relative;z-index:2}

/* remove boxed frame feel */
.visual-wrap, .visual-wrap img{background:transparent}

/* ensure the portrait blends into dark background on browsers that don't support mix-blend-mode */
@supports not (mix-blend-mode: multiply){
  .visual-wrap img{filter:grayscale(0.02) contrast(0.98)}
}

.hero-copy{max-width:640px;padding:24px}
.hero-title{font-size:64px;margin:0 0 10px;color:var(--text);line-height:1.05;font-weight:800}
.hero-sub{color:var(--muted);margin:0 0 16px;font-size:19px;font-weight:500}
.hero-desc{color:rgba(255,255,255,0.85);margin-bottom:22px;line-height:1.75;font-size:16.5px}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap}

/* Hero entrance animations (homepage Hero only) */
@keyframes heroFadeIn{from{opacity:0}to{opacity:1}}
@keyframes heroFadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}

.hero .hero-copy > div:first-child{animation:heroFadeIn 750ms ease-out both}
.hero .hero-title{animation:heroFadeUp 800ms ease-out 150ms both}
.hero .hero-sub{animation:heroFadeIn 800ms ease-out 320ms both}
.hero .hero-desc{animation:heroFadeIn 800ms ease-out 420ms both}
.hero .hero-ctas{animation:heroFadeIn 800ms ease-out 560ms both}
.hero .hero-copy > div:nth-child(6){animation:heroFadeIn 800ms ease-out 700ms both}
.hero .trust-strip{animation:heroFadeIn 800ms ease-out 800ms both}
.hero .hero-visual{animation:heroFadeUp 900ms ease-out 200ms both}

@media (prefers-reduced-motion: reduce){
  .hero .hero-copy > div:first-child,
  .hero .hero-title,
  .hero .hero-sub,
  .hero .hero-desc,
  .hero .hero-ctas,
  .hero .hero-copy > div:nth-child(6),
  .hero .trust-strip,
  .hero .hero-visual{
    animation:none;
    opacity:1;
    transform:none;
  }
}

.trust-strip{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px}
.trust-strip-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.045);
  border:1px solid rgba(212,175,55,0.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:var(--text);
  font-size:13px;
  font-weight:600;
  padding:10px 16px;
  border-radius:14px;
  transition:transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.trust-strip-icon{color:var(--gold);font-size:15px;line-height:1}
.trust-strip-item:hover{
  transform:translateY(-3px);
  border-color:rgba(212,175,55,0.55);
  background:rgba(212,175,55,0.09);
  box-shadow:0 12px 28px rgba(212,175,55,0.22);
}
@media(max-width:700px){
  .trust-strip{gap:8px}
  .trust-strip-item{font-size:12px;padding:8px 12px}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:0.01em;
  transition:transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background 220ms ease, border-color 220ms ease;
}
.hero-ctas .btn{height:56px;min-width:250px;display:inline-flex;align-items:center;justify-content:center;padding:0 24px}

.hero-ctas .btn-primary{
  background:linear-gradient(135deg,#ead7a6,var(--gold) 40%,var(--gold-dark) 80%);
  box-shadow:0 18px 44px rgba(212,175,55,0.4), 0 0 30px rgba(212,175,55,0.18);
  transition:transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.hero-ctas .btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 28px 65px rgba(212,175,55,0.55), 0 0 45px rgba(212,175,55,0.3);
  filter:brightness(1.06);
}

.hero-ctas .btn-outline{
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(212,175,55,0.5);
  transition:transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}
.hero-ctas .btn-outline:hover{
  background:rgba(212,175,55,0.1);
  border-color:rgba(212,175,55,0.85);
  box-shadow:0 0 30px rgba(212,175,55,0.25);
  transform:translateY(-2px);
}
.btn-primary{
  background:linear-gradient(135deg,#dfc58a,var(--gold) 45%,var(--gold-dark));
  color:#201a10;
  box-shadow:0 16px 38px rgba(212,175,55,0.35);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 24px 55px rgba(212,175,55,0.5);filter:brightness(1.04)}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--text)}
.btn-ghost:hover{background:rgba(255,255,255,0.06);transform:translateY(-2px)}
.btn-outline{border:1px solid rgba(212,175,55,0.4);background:rgba(212,175,55,0.05);color:var(--text);padding:10px 16px;border-radius:10px}
.btn-outline:hover{background:rgba(212,175,55,0.14);border-color:rgba(212,175,55,0.7);transform:translateY(-2px)}

.btn-whatsapp{
    background:#25D366;
    color:#08210f;
    border:none;
    box-shadow:0 0 30px rgba(37,211,102,.35);
}

.btn-whatsapp:hover{
    background:#20bd5a;
    transform:translateY(-2px);
    box-shadow:0 0 40px rgba(37,211,102,.5);
}

/* Sections & typography */
.section{padding:100px 0}
.section-title{
  color:var(--gold);
  font-size:36px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:0.01em;
  margin:0 0 36px;
}
.lead{font-size:19px;color:var(--muted);line-height:1.75;max-width:720px;margin:0 0 16px}

/* Cards grid */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px;margin-top:18px}
.card{
  background:var(--card);
  padding:28px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:var(--shadow-card);
  transition:transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.card h3{margin:14px 0 8px;font-size:19px;font-weight:700;line-height:1.3}
.card p{color:var(--muted);margin:0;font-size:14.5px;line-height:1.65}
.card img{width:100%;height:200px;object-fit:cover;border-radius:14px}
.card:hover{transform:translateY(-10px);box-shadow:var(--shadow-card-hover);border-color:rgba(212,175,55,0.35)}

.center{text-align:center;margin-top:18px}

/* Property cards */
.property-card{
  padding:0;
  overflow:hidden;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(24,30,39,.98),rgba(15,20,27,.98));
  border:1px solid rgba(255,255,255,.075);
  transition:transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.property-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 60px rgba(0,0,0,.34);
  border-color:rgba(212,175,55,.32);
}
.property-card .property-media{
  position:relative;
  overflow:hidden;
  border-radius:0;
  aspect-ratio:16/10;
  background:#111720;
}
.property-card .property-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,12,17,.02) 45%,rgba(8,12,17,.64) 100%);
  pointer-events:none;
}
.property-card .property-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  margin:0;
  transition:transform 500ms cubic-bezier(.2,.7,.2,1);
}
.property-card:hover .property-media img{transform:scale(1.045)}
.property-card .status-badge{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  background:rgba(10,14,19,.78);
  color:#f3d879;
  border:1px solid rgba(212,175,55,.48);
  font-size:11px;
  font-weight:750;
  letter-spacing:.03em;
  padding:7px 13px;
  border-radius:999px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.property-card .property-body{padding:24px 24px 22px}
.property-card h3{
  margin:0 0 7px;
  font-size:21px;
  font-weight:750;
  letter-spacing:-.01em;
  line-height:1.3;
}
.property-card .property-location{
  color:var(--muted);
  font-size:13.5px;
  margin:0 0 18px;
  display:flex;
  align-items:center;
  gap:7px;
}
.property-card .property-location::before{
  content:"⌖";
  color:var(--gold);
  font-size:14px;
}
.property-card .price-badge{
  display:block;
  background:none;
  color:#fff;
  font-weight:800;
  font-size:24px;
  line-height:1.1;
  padding:0;
  border-radius:0;
  box-shadow:none;
  margin:0 0 19px;
  letter-spacing:-.02em;
}
.property-card .property-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  margin:0 0 18px;
  padding:15px 0;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#b8c0ca;
  font-size:12.5px;
}
.property-card .property-meta > span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-width:0;
  padding:0 8px;
  white-space:nowrap;
}
.property-card .property-meta > span + span{border-right:1px solid rgba(255,255,255,.08)}
.property-card .property-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:12px 2px 2px;
  background:none;
  border:0;
  box-shadow:none;
  color:var(--gold);
  border-radius:0;
  font-size:13.5px;
  font-weight:700;
  text-align:right;
}
.property-card .property-cta::after{
  content:"←";
  font-size:18px;
  transition:transform 200ms ease;
}
.property-card:hover .property-cta::after{transform:translateX(-4px)}
.property-card .property-cta:hover{background:none;color:#f2d574;transform:none;box-shadow:none}
.featured-properties-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.featured-properties-head .section-title{margin-bottom:6px}
.featured-properties-head p{margin:0;color:var(--muted);font-size:14.5px}
.featured-properties-link{font-size:13px;color:var(--gold);text-decoration:none;white-space:nowrap}
.featured-properties-link:hover{text-decoration:underline}
@media(max-width:700px){
  .property-card .property-media{aspect-ratio:4/3}
  .property-card .property-body{padding:20px}
  .property-card .price-badge{font-size:21px}
  .property-card .property-meta{font-size:11.5px}
  .property-card .property-meta > span{padding:0 5px;gap:4px}
  .featured-properties-head{align-items:start}
  .featured-properties-link{display:none}
}

/* Testimonials */
.testimonials .testimonial{padding:34px 28px}
.testimonials .testimonial p{
  font-style:italic;
  margin:0 0 14px;
  font-size:15.5px;
  line-height:1.85;
  position:relative;
}
.testimonials .testimonial p::before{
  content:"\201C";
  display:block;
  color:var(--gold);
  font-family:Georgia, serif;
  font-size:44px;
  line-height:0.6;
  margin-bottom:14px;
  font-style:normal;
}
.testimonial h3{margin:0;color:var(--gold);font-size:14px;letter-spacing:0.02em;font-weight:700}

/* Footer */
.site-footer{
  border-top:2px solid var(--gold);
  background:linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  padding:0;
}
.footer-cols{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:36px;
  padding:48px 0 28px;
  text-align:center;
}
.footer-col{display:flex;flex-direction:column;align-items:center}

.footer-logo{width:90px;height:auto;object-fit:contain;display:block;margin:0 auto 10px}
.footer-name{font-size:17px;font-weight:800;color:#fff}
.footer-role{color:var(--muted);font-size:13px;margin-top:2px}

.footer-heading{color:var(--gold);font-weight:700;font-size:12.5px;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:14px}

.footer-list{display:flex;flex-direction:column;gap:10px;align-items:center;list-style:none;padding:0;margin:0}
.footer-list li{color:var(--muted);font-size:13.5px}

.site-footer a{color:#fff;text-decoration:none;transition:color .2s ease}
.site-footer a:visited{color:#fff}
.site-footer a:hover{color:var(--gold)}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.06);
  padding:16px 0;
  display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:16px;
  color:var(--muted);font-size:12.5px;text-align:center;
}

@media(max-width:900px){
  .footer-cols{grid-template-columns:repeat(2, 1fr);gap:28px}
}
@media(max-width:560px){
  .footer-cols{grid-template-columns:1fr;gap:26px;padding:36px 0 24px}
}

.whatsapp-float{
  position:fixed;bottom:20px;left:20px;background:var(--gold);color:#071020;padding:12px 14px;
  border-radius:999px;text-decoration:none;font-weight:700;box-shadow:0 12px 30px rgba(0,0,0,0.4);
  z-index:60;transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 18px 40px rgba(0,0,0,0.5)}

/* Responsive */
@media(max-width:900px){.hero-inner{flex-direction:column;align-items:flex-start}}
@media(max-width:600px){.main-nav{display:none}.brand-sub{display:none}.hero-copy h1{font-size:28px}}

@media(max-width:700px){
  .section{padding:64px 0}
  .section-title{font-size:28px;margin-bottom:24px}
}

/* Animations */
@keyframes fadeUp{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.hero-copy{animation:fadeUp 600ms ease both}
.hero-copy{animation-delay:120ms}

/* Forms */
.form{display:flex;flex-direction:column;gap:20px;max-width:640px}
.form label{display:block;color:var(--text);font-weight:600;font-size:12.5px;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:8px}
.form input, .form select, .form textarea, .valuation-form input{width:100%;background:#1a2230;border:1px solid rgba(255,255,255,0.14);padding:15px 16px;border-radius:12px;color:#fff;font:inherit;transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;}
.form select{color-scheme:dark}
.form input:hover, .form select:hover, .form textarea:hover{border-color:rgba(255,255,255,0.28)}
.form input:focus, .form select:focus, .form textarea:focus{outline:none;border-color:rgba(212,175,55,0.7);box-shadow:0 0 0 4px rgba(212,175,55,0.16)}
.form textarea{min-height:140px;line-height:1.6}
.form .btn{align-self:flex-start;margin-top:4px}

.valuation-form{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px;align-items:center}
.valuation-form button{grid-column:1/-1;justify-self:center}

.value-icon{font-size:28px}
.value-title{font-size:18px;font-weight:800;color:var(--gold);margin-top:6px}
.value-desc{color:var(--muted);margin-top:6px}

/* Trust & Process sections */
.section-heading{max-width:760px;margin:0 auto 34px;text-align:center}
.section-heading .section-title{margin-bottom:12px}
.section-kicker{display:block;margin-bottom:14px;color:var(--gold);font-size:16px;font-weight:800;letter-spacing:.10em;text-transform:uppercase}
.section-intro{margin:0 auto;color:var(--muted);font-size:17px;line-height:1.8;max-width:700px}
.why-grid .card,
.process-grid .card{text-align:center}
.why-grid .card{padding:30px 24px}
.why-grid .value-icon{margin-bottom:10px}
.why-grid h3{font-size:18px;margin-bottom:8px}
.step-number{font-size:30px;font-weight:800;color:var(--gold)}
@media(max-width:700px){.section-heading{margin-bottom:24px}.section-intro{font-size:15px}.why-grid .card{padding:24px 18px}}

/* Valuation page */
.valuation-hero{padding-top:50px}
.valuation-hero .hero-title{font-size:42px}
.valuation-hero .hero-sub{max-width:640px;margin:0 auto}

/* Properties page */
.properties-hero{padding-top:50px}
.properties-hero .hero-title{font-size:42px}
.properties-hero .hero-sub{max-width:640px;margin:0 auto}

.filter-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;
  margin:0 0 40px;
  padding:24px;
  background:var(--card);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
}
.filter-bar select{
  width:100%;
  height:50px;
  padding:0 14px;
  background:#1a2230;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:10px;
  color:#fff;
  font:inherit;
  color-scheme:dark;
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}
.filter-bar select:hover{border-color:rgba(255,255,255,0.28)}
.filter-bar select:focus{
  outline:none;
  border-color:rgba(212,175,55,0.7);
  box-shadow:0 0 0 4px rgba(212,175,55,0.16);
}

.filter-empty{
  grid-column:1/-1;
  text-align:center;
  color:var(--muted);
  padding:60px 0;
  font-size:15px;
}

/* Card / Map view toggle */
.view-toggle{
  display:inline-flex;
  gap:6px;
  padding:6px;
  background:var(--card);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  margin-bottom:28px;
}
.view-toggle-btn{
  border:none;
  background:transparent;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  font-family:inherit;
  padding:10px 22px;
  border-radius:999px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease;
}
.view-toggle-btn.active{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#1a1204}
.view-toggle-btn:not(.active):hover{color:var(--text)}

/* Map view (Leaflet) */
#mapContainer{
  height:520px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow-card);
  background:var(--card);
}

.leaflet-gold-marker{
  width:32px;
  height:32px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark)) !important;
  border:none !important;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#201a10;
  font-weight:800;
  font-size:13px;
  box-shadow:0 8px 20px rgba(212,175,55,0.5), 0 0 0 4px rgba(212,175,55,0.15);
}

/* Marker clusters (groups of nearby pins), styled to match the gold marker theme */
.marker-cluster-small, .marker-cluster-medium, .marker-cluster-large{
  background:rgba(212,175,55,0.28) !important;
}
.marker-cluster-small div, .marker-cluster-medium div, .marker-cluster-large div{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark)) !important;
  color:#1a1204 !important;
  font-weight:800 !important;
}

.leaflet-popup-content-wrapper{
  background:var(--card);
  color:var(--text);
  border-radius:14px;
  box-shadow:0 20px 50px rgba(2,6,20,0.6);
}
.leaflet-popup-tip{background:var(--card)}
.leaflet-popup-content{margin:16px 18px;direction:rtl}
.leaflet-popup-close-button{color:var(--muted) !important}
.leaflet-container a.leaflet-popup-close-button:hover{color:var(--gold) !important}
.leaflet-container{font-family:inherit}

.map-popup h3{margin:0 0 6px;font-size:16px;color:var(--text)}
.map-popup p{margin:0 0 10px;color:var(--muted);font-size:13px}
.map-popup .price-badge{display:inline-block;margin-bottom:12px}
.map-popup .btn{display:block;text-align:center;width:100%;padding:9px 0;font-size:13.5px}

@media(max-width:700px){
  .properties-hero .hero-title{font-size:28px}
  .filter-bar{grid-template-columns:1fr;padding:18px}
  #mapContainer{height:380px}
}

/* Property detail page */
.property-detail-image{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
}
.property-detail-image img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
}
.property-detail-image .status-badge{top:20px;right:20px;font-size:13px;padding:7px 16px}

.gallery-thumbs{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}
.gallery-thumb-btn{
  padding:0;
  border:2px solid transparent;
  border-radius:10px;
  background:none;
  cursor:pointer;
  line-height:0;
  opacity:0.6;
  transition:opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gallery-thumbs img{
  width:90px;
  height:70px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}
.gallery-thumb-btn:hover{opacity:0.9;transform:translateY(-2px)}
.gallery-thumb-btn.active{opacity:1;border-color:var(--gold)}

.property-detail-body{margin-top:36px}
.property-detail-body h1{font-size:32px;margin:0 0 8px}
.property-detail-body .property-location{font-size:15px;margin:0 0 18px}
.property-detail-body .price-badge{font-size:18px;padding:11px 24px;margin:0 0 8px}

.property-detail-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-top:8px}
.property-detail-ctas .btn{min-width:220px}

/* Property detail info grid */
.detail-grid{grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:16px}
.detail-card{text-align:center;padding:22px 14px}
.detail-card .value-icon{font-size:24px;margin-bottom:8px}
.detail-card .detail-label{color:var(--muted);font-size:11.5px;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:6px}
.detail-card .detail-value{font-size:16px;font-weight:700;color:var(--text)}

.property-detail-description{color:var(--muted);line-height:1.85;font-size:15.5px;margin:0;max-width:760px}

.feature-tags{display:flex;flex-wrap:wrap;gap:10px}
.feature-tag{
  display:inline-flex;
  align-items:center;
  background:rgba(212,175,55,0.08);
  border:1px solid rgba(212,175,55,0.3);
  color:var(--text);
  font-size:13.5px;
  font-weight:600;
  padding:8px 16px;
  border-radius:999px;
}

.property-not-found{
  text-align:center;
  padding:80px 0;
  color:var(--muted);
}
.property-not-found h1{color:var(--gold);margin:0 0 12px;font-size:24px}

/* Accessibility statement page */
.a11y-content{max-width:760px;margin:0 auto}
.a11y-content h2{color:var(--gold);font-size:21px;font-weight:800;margin:44px 0 14px;line-height:1.3}
.a11y-content h2:first-child{margin-top:0}
.a11y-content p{color:var(--muted);line-height:1.85;font-size:15.5px;margin:0 0 14px}
.a11y-content ul{color:var(--muted);line-height:1.85;font-size:15.5px;padding-inline-start:22px;margin:0 0 14px}
.a11y-content li{margin-bottom:8px}
.a11y-content strong{color:var(--text)}

@media(max-width:700px){
  .a11y-content h2{font-size:19px;margin-top:34px}
  .property-detail-image img{height:260px}
  .property-detail-body h1{font-size:24px}
  .property-detail-ctas .btn{width:100%;min-width:0}
  .gallery-thumbs img{width:70px;height:55px}
}

.form-card{
  max-width:760px;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 45%), var(--card);
  border:2px solid rgba(212,175,55,0.4) !important;
  border-radius:calc(var(--radius) + 6px);
  box-shadow:0 40px 110px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  padding:4rem !important;
}

.valuation-form{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px 32px;align-items:start}

.form-section-title{
  grid-column:1/-1;
  text-align:center;
  color:var(--gold) !important;
  font-size:28px !important;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.14em;
  margin:90px 0 16px !important;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.form-section-title:first-child{margin-top:0;padding-top:0;border-top:none}

.valuation-form .field{display:flex;flex-direction:column;gap:6px}
.valuation-form .field.full{grid-column:1/-1}

/* Valuation wizard */
.wizard-progress{max-width:320px;margin:0 auto 40px;text-align:center}
.wizard-progress-label{color:var(--gold);font-weight:700;font-size:14px;letter-spacing:0.04em;margin-bottom:12px}
.wizard-progress-track{width:100%;height:6px;background:rgba(255,255,255,0.08);border-radius:999px;overflow:hidden}
.wizard-progress-fill{height:100%;width:33.33%;background:linear-gradient(90deg,var(--gold),var(--gold-dark));transition:width 300ms ease}

.wizard-step{display:none}
.wizard-step.active{display:contents}

.wizard-actions{
  grid-column:1/-1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-top:20px;
}

@media(max-width:600px){
  .wizard-actions{flex-wrap:wrap}
  .wizard-actions .btn{flex:1;min-width:120px}
}

.valuation-form label{
  display:block;
  color:var(--text);
  font-weight:600;
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  margin-bottom:9px;
}

.field-hint{color:var(--muted);font-size:11.5px;line-height:1.5;margin-top:2px;opacity:0.8}

.valuation-form input,
.valuation-form select,
.valuation-form textarea{
  width:100%;
  background:#1a2230 !important;
  border:1px solid rgba(255,255,255,0.28) !important;
  border-radius:12px;
  color:#ffffff !important;
  transition:border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.valuation-form input,
.valuation-form select{
  height:58px !important;
  padding:0 16px;
}

.valuation-form textarea{
  padding:16px;
  line-height:1.6;
}

.valuation-form textarea{
  height:140px !important;
}

.valuation-form select{
  font:inherit;
  color-scheme:dark;
}

.valuation-form input:hover,
.valuation-form select:hover,
.valuation-form textarea:hover{
  border-color:rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.065);
}

.valuation-form input:focus,
.valuation-form select:focus,
.valuation-form textarea:focus{
  outline:none;
  border-color:rgba(212,175,55,0.7);
  box-shadow:0 0 0 4px rgba(212,175,55,0.16);
  background:rgba(255,255,255,0.065);
}

.btn-cta{
  height:64px !important;
  line-height:64px !important;
  padding:0 44px !important;
  font-size:20px !important;
  font-weight:800;
  letter-spacing:0.03em;
  margin:52px 0 16px;
  transition:transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow:0 25px 65px rgba(212,175,55,0.65) !important;
}
.btn-cta.full{grid-column:1/-1;width:100%;text-align:center}
.btn-cta:hover{transform:translateY(-3px);box-shadow:0 35px 90px rgba(212,175,55,0.8) !important;filter:brightness(1.08)}

.valuation-hero{animation:fadeUp 700ms ease both}

.form-success{display:none;background:var(--card);border-radius:var(--radius);box-shadow:0 20px 60px rgba(2,6,20,0.65);padding:2.4rem;max-width:520px;margin:0 auto;text-align:center}
.form-success.show{display:block}
.form-success h3{color:var(--gold);font-size:24px;margin:0 0 10px}
.form-success p{color:var(--gold);margin:0;line-height:1.7;font-weight:600}
.form-success.lead-error p{color:#e2685c}

@media(max-width:1000px){
  .hero-grid{grid-template-columns:1fr;gap:20px}
  .visual-wrap img{width:120%;height:420px;mix-blend-mode:none;filter:brightness(1.06) contrast(1.08);object-position:50% 22%;transform:translateX(-6%) scale(1.1)}
  .hero-inner{padding:28px 0}
  .hero-visual{order:1}
  .hero-copy{order:2}
  .hero-title{font-size:28px}
  .hero-ctas .btn{height:48px;min-width:180px}
  .hero-visual .gold-glow{width:320px;height:320px;left:0}
}
@media(max-width:600px){.visual-wrap img{height:260px}.hero-title{font-size:28px}}
@media(max-width:600px){
  .valuation-hero .hero-title{font-size:28px}
  .form-card{padding:1.4rem}
  .btn-cta{width:100%;padding:16px 24px}
}

/* Homepage hero refresh — cleaner hierarchy and stronger conversion focus */
.hero-copy{
  max-width:680px;
  padding:24px 20px 24px 34px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  color:var(--gold);
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
}
.hero-eyebrow > span{
  width:34px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
  display:inline-block;
}
.hero-title{
  font-size:clamp(48px,5.1vw,72px);
  letter-spacing:-.035em;
  margin-bottom:16px;
}
.hero-sub{
  max-width:620px;
  color:#fff;
  font-size:clamp(20px,2vw,25px);
  line-height:1.45;
  font-weight:700;
  margin-bottom:12px;
}
.hero-desc{
  max-width:590px;
  color:rgba(255,255,255,.72);
  font-size:16.5px;
  line-height:1.8;
  margin:0 0 28px;
}
.hero-ctas{
  gap:12px;
}
.hero-ctas .btn{
  min-width:230px;
  height:54px;
  padding:0 25px;
}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  max-width:610px;
  margin-top:30px;
  padding:17px 0;
  border-top:1px solid rgba(212,175,55,.18);
  border-bottom:1px solid rgba(212,175,55,.18);
}
.hero-proof-item{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:0 18px;
  border-left:1px solid rgba(255,255,255,.09);
}
.hero-proof-item:first-child{padding-right:0}
.hero-proof-item:last-child{
  border-left:0;
  padding-left:0;
}
.hero-proof-item strong{
  color:var(--gold);
  font-size:17px;
  line-height:1.35;
}
.hero-proof-item span{
  color:rgba(255,255,255,.66);
  font-size:12.5px;
  line-height:1.45;
}
.hero .hero-eyebrow{animation:heroFadeIn 750ms ease-out both}
.hero .hero-proof{animation:heroFadeIn 800ms ease-out 700ms both}

@media(max-width:1000px){
  .hero-copy{padding:10px 8px 24px;max-width:760px;margin:0 auto;width:100%}
  .hero-title{font-size:clamp(38px,8vw,54px)}
  .hero-sub{font-size:21px}
  .hero-desc{max-width:680px}
}

@media(max-width:600px){
  .hero{min-height:auto}
  .hero-inner{padding-top:18px}
  .hero-grid{gap:8px}
  .hero-copy{padding:8px 2px 26px}
  .hero-eyebrow{font-size:12px;margin-bottom:12px;letter-spacing:.035em}
  .hero-eyebrow > span{width:22px}
  .hero-title{font-size:38px;margin-bottom:12px}
  .hero-sub{font-size:19px;line-height:1.5;margin-bottom:10px}
  .hero-desc{font-size:14.5px;line-height:1.75;margin-bottom:22px}
  .hero-ctas{display:grid;grid-template-columns:1fr;width:100%}
  .hero-ctas .btn{width:100%;min-width:0;height:50px;font-size:14px}
  .hero-proof{margin-top:24px;padding:14px 0}
  .hero-proof-item{padding:0 9px}
  .hero-proof-item strong{font-size:14px}
  .hero-proof-item span{font-size:10.5px}
}

.footer-license{margin-top:7px;color:var(--muted);font-size:12.5px;line-height:1.5}
.license-note{margin:18px auto 0;color:var(--gold);font-size:14px;font-weight:700;letter-spacing:.02em;text-align:center}
@media(max-width:700px){.section-kicker{font-size:14px;margin-bottom:12px}}

.featured-properties-mobile-cta{display:none}
@media(max-width:700px){.featured-properties-mobile-cta{display:block;margin-top:24px}}


/* Valuation V8 */
.valuation-hero-v8{max-width:900px;padding-bottom:28px}
.valuation-hero-v8 .hero-sub{max-width:760px;margin-inline:auto}
.section-kicker{color:var(--gold);font-size:15px;font-weight:800;letter-spacing:.08em;margin-bottom:10px}
.valuation-trust{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:22px}
.valuation-trust span{border:1px solid rgba(198,161,91,.38);border-radius:999px;padding:8px 14px;font-size:13px;font-weight:700;background:rgba(198,161,91,.06)}
.valuation-layout{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:28px;align-items:stretch;max-width:1080px;margin:0 auto}
.valuation-side{border:1px solid rgba(198,161,91,.2);border-radius:24px;padding:34px;background:linear-gradient(145deg,rgba(198,161,91,.08),rgba(255,255,255,.02))}
.valuation-side h2{font-size:30px;line-height:1.2;margin:0 0 14px}
.valuation-side p{color:var(--muted);line-height:1.8;margin-bottom:28px}
.valuation-side-list{display:grid;gap:16px}
.valuation-side-list>div{display:flex;align-items:center;gap:14px;padding-top:16px;border-top:1px solid rgba(255,255,255,.08)}
.valuation-side-list strong{color:var(--gold);font-size:13px;letter-spacing:.08em}
.valuation-side-list span{font-weight:700}
.valuation-license{margin-top:30px;padding-top:18px;border-top:1px solid rgba(198,161,91,.2);font-size:12px;color:var(--muted)}
.valuation-form-card{margin:0;max-width:none;border-radius:24px;padding:34px}
.valuation-form-card .form-section-title{font-size:24px;margin-bottom:24px}
.valuation-form-card input,.valuation-form-card select,.valuation-form-card textarea{min-height:52px;border-radius:12px}
.valuation-form-card textarea{min-height:110px}
.valuation-privacy-note{text-align:center;color:var(--muted);font-size:12px;margin:16px 0 0}
#why-me .card{min-height:100px;display:flex;align-items:center;justify-content:center;text-align:center}
@media(max-width:820px){
 .valuation-layout{grid-template-columns:1fr}
 .valuation-side{order:2;padding:24px}
 .valuation-form-card{order:1;padding:22px}
 .valuation-side h2{font-size:25px}
 .valuation-hero-v8{padding-bottom:10px}
}


/* V9 — light editorial direction */
body{background:#fff;color:#1e252b}
main{background:#fff}
.section{background:#fff}
.site-header{background:rgba(255,255,255,.96)!important;border-bottom:1px solid #e9e5dd!important;backdrop-filter:blur(14px)}
.site-header .main-nav a{color:#20262b!important}
.site-header .main-nav a:hover{color:var(--gold)!important}
.site-header .brand-logo{filter:none}
.hero-v9{position:relative;min-height:690px;overflow:hidden;background:#ece9e2!important;color:#fff;padding:0!important}
.hero-v9-backdrop{position:absolute;inset:0;background:
 linear-gradient(90deg,rgba(10,18,23,.82) 0%,rgba(10,18,23,.63) 38%,rgba(10,18,23,.22) 68%,rgba(10,18,23,.08) 100%),
 linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.24)),
 url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=88') center/cover no-repeat}
.hero-v9-inner{position:relative;z-index:2;min-height:610px;display:grid;grid-template-columns:1.05fr .95fr;align-items:end}
.hero-v9-copy{align-self:center;max-width:650px;padding:70px 0 90px}
.hero-v9 .hero-eyebrow{color:#ead7a6;font-size:15px;font-weight:800}
.hero-v9 .hero-title{font-size:clamp(52px,6.5vw,92px);line-height:.98;margin:18px 0;color:#fff;letter-spacing:-.035em}
.hero-v9 .hero-sub{font-size:clamp(24px,2.6vw,38px);line-height:1.2;font-weight:700;color:#fff;max-width:620px}
.hero-v9 .hero-desc{font-size:17px;line-height:1.8;color:rgba(255,255,255,.82);max-width:590px}
.hero-v9-person{align-self:end;height:590px;display:flex;align-items:flex-end;justify-content:center}
.hero-v9-person img{max-height:570px;max-width:100%;object-fit:contain;filter:drop-shadow(0 24px 35px rgba(0,0,0,.25))}
.btn-hero-light{border:1px solid rgba(255,255,255,.7);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(8px)}
.btn-hero-light:hover{background:#fff;color:#1e252b}
.hero-v9-bar{position:relative;z-index:3;background:#fff;color:#20262b;border-bottom:1px solid #ece7de}
.hero-v9-bar-inner{min-height:80px;display:grid;grid-template-columns:repeat(4,1fr)}
.hero-v9-bar-inner>div{padding:17px 24px;border-left:1px solid #ece7de;display:flex;flex-direction:column;gap:3px}
.hero-v9-bar-inner>div:last-child{border-left:0}
.hero-v9-bar strong{font-size:15px}
.hero-v9-bar span{font-size:12px;color:#747b80}
.card,.form-card{background:#fff!important;color:#20262b!important;border-color:#e8e3da!important;box-shadow:0 14px 36px rgba(20,25,28,.06)!important}
.section-title,.form-section-title,.property-title{color:#20262b!important}
.hero-v9 + .section{padding-top:84px}
.site-footer{background:#182027!important}
@media(max-width:820px){
 .hero-v9{min-height:auto}
 .hero-v9-backdrop{background:
 linear-gradient(180deg,rgba(10,18,23,.64),rgba(10,18,23,.82)),
 url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=85') center/cover no-repeat}
 .hero-v9-inner{min-height:650px;display:block;padding-top:40px}
 .hero-v9-copy{padding:70px 0 20px;position:relative;z-index:3}
 .hero-v9-person{height:310px;position:absolute;left:0;bottom:0;opacity:.9}
 .hero-v9-person img{max-height:310px}
 .hero-v9 .hero-title{font-size:54px}
 .hero-v9 .hero-sub{font-size:26px}
 .hero-v9 .hero-desc{font-size:15px;max-width:90%}
 .hero-v9-bar-inner{grid-template-columns:1fr 1fr}
 .hero-v9-bar-inner>div{border-bottom:1px solid #ece7de}
}


/* V10 — full-width luxury hero, no portrait */
.hero-v10{
  position:relative;
  min-height:730px;
  overflow:hidden;
  background:#111;
  color:#fff;
  padding:0 !important;
}

.hero-v10-backdrop{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(8,14,18,.82) 0%,rgba(8,14,18,.63) 38%,rgba(8,14,18,.28) 68%,rgba(8,14,18,.16) 100%),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.22)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=90') center/cover no-repeat;
}

.hero-v10-inner{
  position:relative;
  z-index:2;
  min-height:650px;
  display:flex;
  align-items:center;
}

.hero-v10-copy{
  max-width:700px;
  padding:90px 0 110px;
}

.hero-v10 .hero-eyebrow{
  color:#ead7a6;
  font-size:15px;
  font-weight:800;
  letter-spacing:.02em;
}

.hero-v10 .hero-title{
  color:#fff !important;
  font-size:clamp(58px,7vw,98px);
  line-height:.98;
  margin:18px 0 22px;
  letter-spacing:-.04em;
}

.hero-v10 .hero-sub{
  color:#fff !important;
  font-size:clamp(24px,2.5vw,38px);
  line-height:1.25;
  font-weight:800;
  max-width:650px;
  margin-bottom:18px;
}

.hero-v10 .hero-desc{
  color:rgba(255,255,255,.88) !important;
  font-size:17px;
  line-height:1.9;
  max-width:610px;
}

.hero-v10 .hero-ctas{
  margin-top:28px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-v10 .btn-primary{
  box-shadow:0 12px 34px rgba(198,161,91,.26);
}

.btn-hero-light{
  border:1px solid rgba(255,255,255,.78);
  color:#fff !important;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.btn-hero-light:hover{
  background:#fff;
  color:#1e252b !important;
}

.hero-v10-bar{
  position:relative;
  z-index:3;
  width:min(1360px,calc(100% - 64px));
  margin:-44px auto 0;
  background:#fff;
  color:#20262b;
  border-radius:16px;
  box-shadow:0 18px 48px rgba(24,32,39,.14);
  border:1px solid #ece7de;
}

.hero-v10-bar-inner{
  min-height:132px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:0;
}

.hero-v10-bar-inner>div{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  padding:22px 28px;
  border-left:1px solid #ece7de;
  text-align:center;
}

.hero-v10-bar-inner>div:last-child{
  border-left:0;
}

.hero-v10-bar strong{
  font-size:17px;
  color:#20262b;
}

.hero-v10-bar span{
  font-size:13px;
  color:#727980;
  line-height:1.55;
}

.hero-v10 + .section{
  padding-top:110px;
}

@media (max-width:820px){
  .hero-v10{
    min-height:auto;
  }

  .hero-v10-backdrop{
    background:
      linear-gradient(180deg,rgba(8,14,18,.58),rgba(8,14,18,.82)),
      url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=88') center/cover no-repeat;
  }

  .hero-v10-inner{
    min-height:610px;
    align-items:flex-end;
  }

  .hero-v10-copy{
    padding:110px 0 90px;
  }

  .hero-v10 .hero-title{
    font-size:56px;
  }

  .hero-v10 .hero-sub{
    font-size:26px;
  }

  .hero-v10 .hero-desc{
    font-size:15px;
  }

  .hero-v10-bar{
    width:calc(100% - 28px);
    margin:-28px auto 0;
  }

  .hero-v10-bar-inner{
    grid-template-columns:1fr 1fr;
  }

  .hero-v10-bar-inner>div{
    min-height:112px;
    padding:18px 14px;
    border-bottom:1px solid #ece7de;
  }

  .hero-v10-bar-inner>div:nth-child(2n){
    border-left:0;
  }
}


/* V11 hotfix — local banner image and visible white info strip */
.hero-v10{
  min-height:720px !important;
  overflow:visible !important;
  background:#111 !important;
}

.hero-v10-backdrop{
  background:
    linear-gradient(90deg,rgba(6,12,16,.88) 0%,rgba(6,12,16,.70) 38%,rgba(6,12,16,.30) 68%,rgba(6,12,16,.12) 100%),
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.20)),
    url('../images/hero-house.jpg') center center / cover no-repeat !important;
}

.hero-v10-inner{
  min-height:640px !important;
}

.hero-v10-copy{
  padding:88px 0 105px !important;
  position:relative;
  z-index:5;
}

.hero-v10 .hero-title,
.hero-v10 .hero-sub,
.hero-v10 .hero-desc{
  text-shadow:0 2px 16px rgba(0,0,0,.32);
}

.hero-v10-bar{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  position:absolute !important;
  z-index:10 !important;
  left:50%;
  bottom:-58px;
  transform:translateX(-50%);
  width:min(1360px,calc(100% - 80px)) !important;
  margin:0 !important;
  background:#fff !important;
  color:#20262b !important;
  border:1px solid #e8e2d8 !important;
  border-radius:14px !important;
  box-shadow:0 18px 50px rgba(20,25,28,.18) !important;
}

.hero-v10-bar-inner{
  min-height:116px !important;
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
}

.hero-v10-bar-inner>div{
  opacity:1 !important;
  color:#20262b !important;
}

.hero-v10 + .section{
  padding-top:145px !important;
}

@media(max-width:820px){
  .hero-v10{
    min-height:670px !important;
  }
  .hero-v10-backdrop{
    background:
      linear-gradient(180deg,rgba(6,12,16,.56),rgba(6,12,16,.86)),
      url('../images/hero-house.jpg') 65% center / cover no-repeat !important;
  }
  .hero-v10-inner{
    min-height:610px !important;
  }
  .hero-v10-bar{
    position:relative !important;
    left:auto;
    bottom:auto;
    transform:none;
    width:calc(100% - 28px) !important;
    margin:-28px auto 0 !important;
  }
  .hero-v10-bar-inner{
    grid-template-columns:1fr 1fr !important;
  }
  .hero-v10 + .section{
    padding-top:70px !important;
  }
}


/* V12 — property card contrast fix on light theme */
.property-card{
  background:#fff !important;
  color:#20262b !important;
  border:1px solid #e5dfd5 !important;
  box-shadow:0 16px 38px rgba(24,32,39,.08) !important;
}

.property-card:hover{
  border-color:rgba(198,161,91,.48) !important;
  box-shadow:0 22px 52px rgba(24,32,39,.13) !important;
}

.property-card h3{
  color:#171d22 !important;
  font-weight:800 !important;
}

.property-card .property-location{
  color:#667078 !important;
  font-weight:500;
}

.property-card .price-badge{
  color:#171d22 !important;
}

.property-card .property-meta{
  color:#59636b !important;
  border-top:1px solid #ebe6de !important;
  border-bottom:1px solid #ebe6de !important;
  font-weight:600;
}

.property-card .property-meta > span + span{
  border-right:1px solid #ebe6de !important;
}

.property-card .property-cta{
  color:#a77f3c !important;
  font-weight:800 !important;
}

.property-card .property-cta:hover{
  color:#7f5d27 !important;
}

.featured-properties-head p{
  color:#667078 !important;
}

.featured-properties-link{
  color:#a77f3c !important;
  font-weight:700;
}


/* V15 — light theme contrast normalization across inner pages */
body,
main,
.section{
  background:#fff !important;
  color:#20262b !important;
}

/* Keep homepage image hero white-text treatment intact */
.hero-v10,
.hero-v10 *{
  color:inherit;
}

/* Inner-page hero text must be dark on white */
main > .section .hero-title,
.properties-hero .hero-title,
.valuation-hero .hero-title{
  color:#182027 !important;
  text-shadow:none !important;
}

main > .section .hero-sub,
.properties-hero .hero-sub,
.valuation-hero .hero-sub{
  color:#4f5a63 !important;
  opacity:1 !important;
  text-shadow:none !important;
}

main > .section .hero-desc{
  color:#59646d !important;
  opacity:1 !important;
}

/* General body copy on light sections */
.section p,
.section-intro,
.value-desc,
.a11y-content p,
.a11y-content ul,
.property-detail-description,
.featured-properties-head p,
.valuation-side p,
.valuation-license,
.valuation-privacy-note,
.field-hint{
  color:#5b6670 !important;
  opacity:1 !important;
}

/* Headings */
.section-title,
.form-section-title,
.property-title,
.valuation-side h2,
.card h3,
.card h2{
  color:#182027 !important;
  opacity:1 !important;
}

/* Gold kickers stay gold but stronger */
.section-kicker,
.hero-eyebrow:not(.hero-v10 .hero-eyebrow),
.wizard-progress-label{
  color:#a77f3c !important;
  opacity:1 !important;
}

/* Contact/about info cards */
.card,
.form-card,
.valuation-side{
  background:#fff !important;
  color:#20262b !important;
  border-color:#e6dfd4 !important;
}

.card p,
.card span,
.card small{
  color:#5a6570 !important;
  opacity:1 !important;
}

/* Valuation form labels were still using the old dark-theme white */
.valuation-form label,
.form label{
  color:#26313a !important;
  opacity:1 !important;
}

/* Keep dark inputs readable */
.valuation-form input,
.valuation-form select,
.valuation-form textarea,
.form input,
.form select,
.form textarea{
  color:#fff !important;
}

.valuation-form input::placeholder,
.valuation-form textarea::placeholder,
.form input::placeholder,
.form textarea::placeholder{
  color:#c4cbd1 !important;
  opacity:1 !important;
}

/* Progress track needs contrast on white cards */
.wizard-progress-track{
  background:#e9e4dc !important;
}

/* Property page controls remain intentionally dark */
.filter-bar,
.view-toggle{
  color:#fff !important;
}
.filter-bar label,
.filter-bar select,
.view-toggle button{
  color:#fff !important;
}

/* Footer remains dark */
.site-footer,
.site-footer *{
  color:inherit;
}
.site-footer .footer-heading,
.site-footer .footer-name{
  color:#fff !important;
}
.site-footer .footer-role,
.site-footer .footer-license,
.site-footer .footer-list li,
.site-footer .footer-list a,
.site-footer .footer-bottom{
  color:#aeb7c2 !important;
}

/* Make top page intros feel deliberate rather than washed out */
.properties-hero,
.valuation-hero,
main > .section.container.center:first-child{
  padding-top:70px !important;
  padding-bottom:42px !important;
}

.properties-hero .hero-title,
.valuation-hero .hero-title,
main > .section.container.center:first-child .hero-title{
  font-weight:850 !important;
}


/* =========================================================
   V16 — mobile polish
   ========================================================= */

.mobile-menu-toggle,
.mobile-action-bar{display:none}

@media(max-width:760px){
  html{scroll-padding-top:76px}
  body{padding-bottom:68px}

  .container{padding-left:16px;padding-right:16px}

  /* Header */
  .site-header{
    position:sticky !important;
    top:0;
    z-index:100 !important;
    box-shadow:0 6px 22px rgba(21,28,33,.10) !important;
  }

  .site-header .container{
    min-height:72px;
    padding:6px 16px !important;
    gap:10px;
  }

  .brand{order:1;margin-right:auto}
  .brand-logo,
  .site-header .brand-logo{
    height:62px !important;
    width:auto !important;
  }

  .header-phone{
    order:3;
    font-size:0 !important;
    width:42px;
    height:42px;
    padding:0 !important;
    justify-content:center;
    border-radius:50% !important;
  }

  .header-phone span{
    font-size:18px;
    margin:0;
  }

  .mobile-menu-toggle{
    order:2;
    display:flex;
    width:44px;
    height:44px;
    padding:0;
    border:0;
    border-radius:12px;
    background:#f6f3ed;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }

  .mobile-menu-toggle span{
    width:20px;
    height:2px;
    background:#20262b;
    border-radius:3px;
    transition:transform .2s ease, opacity .2s ease;
  }

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

  .main-nav{
    display:none !important;
    position:absolute;
    top:72px;
    right:14px;
    left:14px;
    padding:10px;
    background:#fff;
    border:1px solid #e8e2d8;
    border-radius:16px;
    box-shadow:0 20px 45px rgba(20,28,34,.16);
  }

  .main-nav.mobile-open{
    display:grid !important;
    gap:2px;
  }

  .main-nav a{
    margin:0 !important;
    padding:13px 14px !important;
    border-radius:10px;
    color:#20262b !important;
    font-weight:700;
  }

  .main-nav a:hover,
  .main-nav a:focus{
    background:#f7f4ee;
    color:#9b7333 !important;
  }

  .main-nav a::after{display:none}
  body.nav-open{overflow:hidden}

  /* Homepage hero */
  .hero-v10{
    min-height:auto !important;
  }

  .hero-v10-inner{
    min-height:560px !important;
    align-items:flex-end !important;
  }

  .hero-v10-backdrop{
    background:
      linear-gradient(180deg,rgba(6,12,16,.30) 0%,rgba(6,12,16,.52) 42%,rgba(6,12,16,.91) 100%),
      url('../images/hero-house.jpg') 62% center / cover no-repeat !important;
  }

  .hero-v10-copy{
    width:100%;
    padding:125px 0 78px !important;
  }

  .hero-v10 .hero-eyebrow{
    font-size:13px !important;
  }

  .hero-v10 .hero-title{
    font-size:46px !important;
    line-height:1.02 !important;
    margin:12px 0 16px !important;
  }

  .hero-v10 .hero-sub{
    font-size:23px !important;
    line-height:1.28 !important;
    margin-bottom:12px !important;
  }

  .hero-v10 .hero-desc{
    font-size:15px !important;
    line-height:1.7 !important;
  }

  .hero-v10 .hero-ctas{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    margin-top:22px !important;
  }

  .hero-v10 .hero-ctas .btn{
    min-height:50px;
    width:100%;
    justify-content:center;
  }

  .hero-v10-bar{
    width:calc(100% - 24px) !important;
    margin:-22px auto 0 !important;
    border-radius:14px !important;
  }

  .hero-v10-bar-inner{
    grid-template-columns:1fr 1fr !important;
    min-height:auto !important;
  }

  .hero-v10-bar-inner>div{
    min-height:96px !important;
    padding:14px 10px !important;
  }

  .hero-v10-bar strong{font-size:14px !important}
  .hero-v10-bar span{font-size:11.5px !important}

  .hero-v10 + .section{padding-top:58px !important}

  /* General sections */
  .section{padding:54px 0 !important}
  .section-heading{margin-bottom:24px !important}
  .section-kicker{font-size:13px !important}
  .section-title{
    font-size:29px !important;
    line-height:1.2 !important;
    margin-bottom:12px !important;
  }
  .section-intro{
    font-size:15px !important;
    line-height:1.75 !important;
  }

  .cards-grid,
  .cards-grid.three,
  .why-grid,
  .process-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .card{
    padding:22px 18px !important;
    border-radius:16px !important;
  }

  /* Property listings */
  .properties-grid,
  #propertiesGrid{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .property-card{
    border-radius:16px !important;
  }

  .filter-bar{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    padding:14px !important;
    border-radius:16px !important;
  }

  .filter-bar > *{
    min-width:0 !important;
    width:100% !important;
  }

  .view-toggle{
    width:100%;
    margin-bottom:14px;
    justify-content:stretch;
  }

  .view-toggle button{
    flex:1;
    min-height:42px;
  }

  /* Inner-page intros */
  .properties-hero,
  .valuation-hero,
  main > .section.container.center:first-child{
    padding-top:42px !important;
    padding-bottom:28px !important;
  }

  /* Valuation */
  .valuation-layout{
    display:flex !important;
    flex-direction:column !important;
    gap:16px !important;
  }

  .valuation-form-card{
    order:1 !important;
    padding:20px !important;
    border-radius:16px !important;
  }

  .valuation-side{
    order:2 !important;
    padding:20px !important;
    border-radius:16px !important;
  }

  .valuation-trust{gap:7px !important}
  .valuation-trust span{font-size:12px !important;padding:7px 10px !important}

  .wizard-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:9px !important;
  }

  .wizard-actions .btn{
    width:100% !important;
    min-height:50px;
    justify-content:center;
  }

  /* Forms */
  .field input,
  .field select,
  .field textarea,
  .form input,
  .form select,
  .form textarea{
    font-size:16px !important; /* prevents iOS zoom */
    min-height:50px !important;
  }

  /* Footer */
  .footer-cols{
    grid-template-columns:1fr 1fr !important;
    gap:28px 18px !important;
  }

  .footer-col:first-child{
    grid-column:1 / -1;
  }

  .footer-logo{max-height:58px}

  /* Floating WhatsApp is replaced by a more usable action bar on phones */
  .whatsapp-float{display:none !important}

  .mobile-action-bar{
    position:fixed;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:8px;
    z-index:95;
    right:10px;
    left:10px;
    bottom:8px;
    padding:7px;
    background:rgba(255,255,255,.96);
    border:1px solid #e4ddd1;
    border-radius:16px;
    box-shadow:0 12px 34px rgba(20,28,34,.18);
    backdrop-filter:blur(12px);
  }

  .mobile-action-bar a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    border-radius:11px;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
  }

  .mobile-action-call{
    color:#20262b;
    background:#f4f1eb;
  }

  .mobile-action-wa{
    color:#fff;
    background:#1f8f55;
  }
}

@media(max-width:420px){
  .hero-v10 .hero-title{font-size:41px !important}
  .hero-v10 .hero-sub{font-size:21px !important}
  .hero-v10-bar-inner{grid-template-columns:1fr !important}
  .hero-v10-bar-inner>div{
    min-height:70px !important;
    border-left:0 !important;
    border-bottom:1px solid #ece7de !important;
  }
  .hero-v10-bar-inner>div:last-child{border-bottom:0 !important}
  .filter-bar{grid-template-columns:1fr !important}
  .footer-cols{grid-template-columns:1fr !important}
  .footer-col:first-child{grid-column:auto}
}

/* V17 — lead conversion success state */
.lead-success-title{display:block;font-size:24px;font-weight:900;margin-bottom:8px}
.lead-success-copy{display:block;line-height:1.7;margin-bottom:18px}
.lead-success-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.lead-success-actions .btn{min-width:170px}
@media(max-width:760px){
  .lead-success-actions{display:grid;grid-template-columns:1fr;width:100%}
  .lead-success-actions .btn{width:100%;min-width:0}
}


/* =========================================================
   V18 — professional property system
   ========================================================= */
.property-detail-image{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#eee9e0;
  aspect-ratio:16/8.4;
  box-shadow:0 18px 50px rgba(20,28,34,.10);
}
.property-detail-image img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.property-detail-image .status-badge{
  position:absolute;top:18px;right:18px;
}
.gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:12px;
}
.gallery-thumb-btn{
  border:2px solid transparent;
  padding:0;
  border-radius:12px;
  overflow:hidden;
  background:#eee;
  aspect-ratio:4/3;
  cursor:pointer;
  opacity:.78;
}
.gallery-thumb-btn img{width:100%;height:100%;object-fit:cover;display:block}
.gallery-thumb-btn.active{border-color:var(--gold);opacity:1}
.property-detail-body{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px 28px;
  align-items:end;
  padding:28px 2px 0;
}
.property-detail-body h1{
  font-size:clamp(34px,5vw,58px);
  line-height:1.06;
  margin:0;
}
.property-detail-body .property-location{font-size:18px;margin:0}
.property-detail-body .price-badge{
  grid-column:2;
  grid-row:1 / span 2;
  align-self:center;
  font-size:24px;
  padding:11px 17px;
}
.property-detail-ctas{
  grid-column:1/-1;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding-top:12px;
}
.property-ref{
  grid-column:1/-1;
  color:#8b8174;
  font-size:13px;
}
.property-location-actions{margin-top:20px}
.detail-grid{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
}
.detail-card{min-height:130px;text-align:center}
.detail-card .value-icon{font-size:23px;margin-bottom:8px}
.detail-label{font-size:13px;color:#82786c}
.detail-value{font-size:18px;font-weight:800;margin-top:4px}
.property-detail-description{
  max-width:900px;
  font-size:17px;
  line-height:1.9;
  color:#3f474d !important;
}
.feature-tags{display:flex;gap:9px;flex-wrap:wrap}
.feature-tag{
  padding:9px 13px;
  border:1px solid #ded6c9;
  border-radius:999px;
  background:#faf8f4;
  font-weight:700;
  font-size:14px;
}
.property-card-actions{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  margin-top:auto;
}
.property-card-actions .property-cta{margin:0 !important}
.property-wa-mini{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 13px;
  border-radius:9px;
  background:#f1f8f4;
  border:1px solid #cce3d5;
  color:#17663d;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}
.property-wa-mini:hover{background:#e7f3ec}
@media(max-width:760px){
  .property-detail-image{
    aspect-ratio:4/3;
    border-radius:16px;
  }
  .gallery-thumbs{
    display:flex;
    overflow-x:auto;
    gap:8px;
    padding-bottom:4px;
    scrollbar-width:none;
  }
  .gallery-thumb-btn{
    flex:0 0 88px;
  }
  .property-detail-body{
    grid-template-columns:1fr;
    padding-top:20px;
  }
  .property-detail-body h1{font-size:34px}
  .property-detail-body .price-badge{
    grid-column:auto;
    grid-row:auto;
    justify-self:start;
    font-size:20px;
  }
  .property-detail-ctas{
    display:grid;
    grid-template-columns:1fr;
  }
  .property-detail-ctas .btn{width:100%;justify-content:center}
  .detail-grid{
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }
  .detail-card{min-height:115px !important;padding:16px 10px !important}
}
@media(max-width:420px){
  .detail-grid{grid-template-columns:1fr 1fr !important}
  .property-card-actions{grid-template-columns:1fr}
}


/* =========================================================
   V18.1 — property page contrast + status badges
   ========================================================= */

/* Strong readable text on white property pages */
.property-detail-body,
.property-detail-body h1,
.property-detail-body .property-location,
.property-ref,
.property-section,
.property-section h2,
.property-detail-description,
.detail-label,
.detail-value,
.feature-tag,
.property-location-actions,
.tour-box,
.tour-box h2,
.tour-box p{
  color:#1f252a !important;
}

.property-detail-body .property-location,
.property-ref,
.detail-label,
.tour-box p{
  color:#6f767d !important;
}

.detail-value{
  color:#20262b !important;
  font-weight:800 !important;
}

.property-detail-description{
  color:#3f474d !important;
}

.feature-tag{
  background:#faf8f4 !important;
  border-color:#d8cfbf !important;
  color:#2a3035 !important;
}

/* Buttons: make all labels visible */
.property-detail-ctas .btn-outline,
.property-location-actions .btn-outline{
  background:#fff !important;
  color:#9a7330 !important;
  border:1px solid #cda95e !important;
}

.property-detail-ctas .btn-outline:hover,
.property-location-actions .btn-outline:hover{
  background:#f8f3e9 !important;
  color:#6f4f18 !important;
}

.property-detail-ctas .btn-primary{
  color:#20262b !important;
  background:#d9b76b !important;
  border-color:#d9b76b !important;
}

.property-detail-ctas .btn-whatsapp{
  color:#fff !important;
}

/* Price badge */
.property-detail-body .price-badge{
  background:#fff !important;
  color:#20262b !important;
  border:1px solid #d6c6a5 !important;
}

/* Property detail cards */
.detail-card{
  background:#fff !important;
  border:1px solid #e1d8ca !important;
}
.detail-card .value-icon{
  opacity:1 !important;
}

/* STATUS BADGES */
.status-badge{
  border:none !important;
  box-shadow:0 7px 18px rgba(0,0,0,.13) !important;
  font-weight:900 !important;
  letter-spacing:.01em !important;
}

/* Default / "חדש" */
.status-badge,
.status-badge.new,
.status-badge[data-status="חדש"]{
  background:#d8b56a !important;
  color:#1d2328 !important;
}

/* "בלעדי" */
.status-badge.exclusive,
.status-badge[data-status="בלעדי"]{
  background:#fff8e8 !important;
  color:#8c6728 !important;
  border:1px solid #d1ac61 !important;
}

/* Generic property card badges too */
.property-card .status-badge{
  background:#d8b56a !important;
  color:#1d2328 !important;
}
.property-card .status-badge.exclusive{
  background:#fff8e8 !important;
  color:#8c6728 !important;
  border:1px solid #d1ac61 !important;
}

/* Extra readability for "additional features" and environment */
#pdEnvironment,
#pdDescription{
  color:#41484e !important;
}

#pdFeatures .feature-tag{
  color:#2b3136 !important;
}

/* Mobile contrast */
@media(max-width:760px){
  .property-detail-body h1{
    color:#1f252a !important;
  }
  .property-detail-body .property-location{
    color:#687078 !important;
  }
  .property-detail-ctas .btn,
  .property-location-actions .btn{
    min-height:48px;
  }
}


/* =========================================================
   V18.2 — definitive property-page readability/layout fix
   ========================================================= */

.property-page{
  background:#fff !important;
  color:#20262b !important;
}

.property-page main,
.property-page #propertyDetail,
.property-page .section{
  background:#fff !important;
  color:#20262b !important;
}

/* Remove the oversized empty space above the property */
.property-page .property-back-section{
  padding-top:34px !important;
  padding-bottom:14px !important;
}

.property-page .property-hero-section{
  padding-top:14px !important;
  padding-bottom:34px !important;
}

.property-page .property-back-btn{
  display:inline-flex !important;
  background:#fff !important;
  color:#8f6929 !important;
  border:1px solid #d4b36a !important;
  opacity:1 !important;
  font-weight:800 !important;
  box-shadow:none !important;
}

.property-page .property-back-btn:hover{
  background:#fbf7ee !important;
  color:#65470f !important;
}

/* Main property typography */
.property-page .property-detail-body h1,
.property-page .section-title,
.property-page .form-card .section-title{
  color:#182027 !important;
  opacity:1 !important;
}

.property-page .property-detail-body .property-location,
.property-page .property-ref{
  color:#66717a !important;
  opacity:1 !important;
}

.property-page .property-detail-body .price-badge{
  color:#182027 !important;
  background:#fff !important;
  border:1px solid #d9c7a1 !important;
  opacity:1 !important;
}

/* Detail cards — force readable values */
.property-page .detail-card{
  background:#fff !important;
  border:1px solid #e1d8ca !important;
  box-shadow:0 10px 28px rgba(20,28,34,.055) !important;
}

.property-page .detail-card .detail-label{
  color:#7a838b !important;
  opacity:1 !important;
}

.property-page .detail-card .detail-value{
  color:#20262b !important;
  opacity:1 !important;
  font-weight:800 !important;
}

.property-page .detail-card .value-icon{
  opacity:1 !important;
}

/* Descriptions and features */
.property-page #pdDescription,
.property-page #pdEnvironment,
.property-page .property-detail-description{
  color:#41494f !important;
  opacity:1 !important;
}

.property-page #pdFeatures .feature-tag,
.property-page .feature-tag{
  color:#252c31 !important;
  background:#faf7f1 !important;
  border:1px solid #d9cfbf !important;
  opacity:1 !important;
}

/* Form copy */
.property-page .form-card,
.property-page .form-card label,
.property-page .form-card h2{
  color:#20262b !important;
}

.property-page .form-card > p{
  color:#636d75 !important;
}

/* All outline buttons on property page must be readable */
.property-page .btn-outline{
  color:#8f6929 !important;
  background:#fff !important;
  border-color:#d4b36a !important;
  opacity:1 !important;
}

/* Status tags — exact styles based on actual property status */
.property-page .status-badge{
  opacity:1 !important;
  font-weight:900 !important;
  border-radius:999px !important;
  padding:8px 15px !important;
  box-shadow:0 6px 18px rgba(24,32,39,.13) !important;
}

.property-page .status-badge.new,
.property-page .status-badge[data-status="חדש"]{
  background:#d8b56a !important;
  color:#182027 !important;
  border:1px solid #caa45b !important;
}

.property-page .status-badge.exclusive,
.property-page .status-badge[data-status="בלעדי"]{
  background:#fff7e5 !important;
  color:#765317 !important;
  border:1px solid #cfa85c !important;
}

/* More compact, premium desktop rhythm */
@media(min-width:761px){
  .property-page .property-detail-image{
    margin-top:0 !important;
  }
  .property-page .property-detail-body{
    margin-top:24px !important;
  }
  .property-page #propertyDetail > .section:not(.property-back-section):not(.property-hero-section){
    padding-top:46px !important;
    padding-bottom:46px !important;
  }
}

@media(max-width:760px){
  .property-page .property-back-section{
    padding-top:18px !important;
    padding-bottom:8px !important;
  }
  .property-page .property-hero-section{
    padding-top:8px !important;
    padding-bottom:26px !important;
  }
}


/* =========================================================
   V19 — smart valuation funnel + seller conversion CTA
   ========================================================= */
.valuation-smart-form .wizard-step{min-height:365px}
.wizard-question-kicker{
  color:#a27a36;font-size:13px;font-weight:900;letter-spacing:.04em;margin-bottom:6px
}
.wizard-question-copy{color:#657079 !important;margin:-2px 0 22px;line-height:1.7}
.optional-label{font-size:12px;color:#8b9298;font-weight:500}
.choice-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:18px 0 22px
}
.choice-card,.toggle-choice{
  border:1px solid #ddd4c5;background:#fff;color:#283037;border-radius:14px;
  min-height:88px;padding:14px;cursor:pointer;font:inherit;font-weight:800;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;
  transition:.18s ease
}
.choice-card:hover,.toggle-choice:hover{border-color:#c9a45a;background:#fcf8ef}
.choice-card.selected,.toggle-choice.selected{
  border-color:#c79c48;background:#f8f0df;color:#6e4c13;
  box-shadow:0 0 0 2px rgba(199,156,72,.10)
}
.choice-error{animation:choiceShake .28s ease 2}
.choice-error .choice-card{border-color:#b34a4a}
@keyframes choiceShake{50%{transform:translateX(4px)}}
.choice-grid-small{grid-template-columns:repeat(3,1fr)}
.choice-grid-small .toggle-choice{min-height:64px;flex-direction:row}
.valuation-two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.valuation-final-note{
  margin-top:18px;padding:12px 14px;border-radius:12px;background:#f8f5ee;
  color:#6d5731;font-size:13px;font-weight:700;text-align:center
}
.valuation-smart-form .wizard-actions{
  border-top:1px solid #eee7dc;margin-top:8px;padding-top:18px
}
.valuation-smart-form .wizard-progress-fill{transition:width .28s ease}
.property-seller-cta{padding-top:26px !important;padding-bottom:54px !important}
.seller-cta-inner{
  border:1px solid #d9c8a8;background:linear-gradient(135deg,#fbf8f1,#fff);
  border-radius:22px;padding:30px 34px;display:flex;align-items:center;
  justify-content:space-between;gap:28px;box-shadow:0 16px 40px rgba(30,36,40,.06)
}
.seller-cta-inner h2{margin:4px 0 8px;color:#20262b;font-size:clamp(24px,3vw,34px)}
.seller-cta-inner p{margin:0;color:#626b72;max-width:680px;line-height:1.7}
.seller-cta-inner .btn{flex:0 0 auto}
@media(max-width:760px){
  .valuation-smart-form .wizard-step{min-height:0}
  .choice-grid{grid-template-columns:1fr 1fr}
  .choice-grid-small{grid-template-columns:1fr}
  .valuation-two-col{grid-template-columns:1fr}
  .seller-cta-inner{padding:24px 20px;display:block;text-align:center}
  .seller-cta-inner .btn{width:100%;justify-content:center;margin-top:20px}
}


/* =========================================================
   V19.1 — valuation back button visibility fix
   ========================================================= */
.valuation-smart-form #wizardBackBtn{
  background:#fff !important;
  color:#20262b !important;
  border:1px solid #cfa85c !important;
  opacity:1 !important;
  box-shadow:none !important;
  font-weight:800 !important;
}

.valuation-smart-form #wizardBackBtn:hover,
.valuation-smart-form #wizardBackBtn:focus{
  background:#fbf7ef !important;
  color:#6d4d17 !important;
  border-color:#b98d3f !important;
}

.valuation-smart-form #wizardBackBtn:disabled{
  background:#f5f3ee !important;
  color:#9a9a96 !important;
  border-color:#ddd6ca !important;
  opacity:.85 !important;
  cursor:not-allowed;
}

@media(max-width:760px){
  .valuation-smart-form #wizardBackBtn{
    min-height:48px !important;
  }
}


/* =========================================================
   V19.2 — contact page centering/alignment fix
   ========================================================= */

body:has(main .contact-hero),
body.contact-page{
  background:#fff !important;
}

.contact-hero,
.contact-hero .container,
.contact-page .contact-hero,
.contact-page .contact-hero .container{
  text-align:center !important;
}

.contact-hero .hero-title,
.contact-hero .hero-sub,
.contact-hero .hero-desc{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-hero .hero-sub,
.contact-hero .hero-desc{
  max-width:760px !important;
}

.contact-grid,
.contact-cards,
.contact-methods{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:20px !important;
  align-items:stretch !important;
  justify-content:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-card{
  text-align:center !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:160px !important;
}

.contact-card > *,
.contact-card h3,
.contact-card p,
.contact-card a{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-card .icon,
.contact-card .contact-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 auto 12px !important;
}

.contact-form-wrap,
.contact-form-card,
.contact-section .form-card{
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-form-wrap .section-title,
.contact-form-wrap .section-intro,
.contact-form-card .section-title,
.contact-form-card .section-intro,
.contact-section .form-card .section-title,
.contact-section .form-card .section-intro{
  text-align:center !important;
}

@media(max-width:900px){
  .contact-grid,
  .contact-cards,
  .contact-methods{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media(max-width:560px){
  .contact-grid,
  .contact-cards,
  .contact-methods{
    grid-template-columns:1fr !important;
  }
}


/* =========================================================
   V22.1 — valuation city/neighborhood same-row alignment
   ========================================================= */
.valuation-smart-form .wizard-step[data-step="1"]{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:16px !important;
  align-items:start !important;
}

.valuation-smart-form .wizard-step[data-step="1"] .wizard-question-kicker,
.valuation-smart-form .wizard-step[data-step="1"] .form-section-title,
.valuation-smart-form .wizard-step[data-step="1"] .wizard-question-copy{
  grid-column:1 / -1 !important;
}

.valuation-smart-form .wizard-step[data-step="1"] .field{
  margin:0 !important;
}

@media(max-width:760px){
  .valuation-smart-form .wizard-step[data-step="1"]{
    grid-template-columns:1fr !important;
  }
}


/* =========================================================
   V22.2 — valuation page compact / remove empty space
   ========================================================= */

/* Keep the valuation form content grouped near the top */
.valuation-smart-form .wizard-step{
  min-height:0 !important;
}

.valuation-smart-form .wizard-step[data-step="1"]{
  align-content:start !important;
  row-gap:14px !important;
}

.valuation-smart-form .wizard-question-kicker{
  margin-top:0 !important;
  margin-bottom:4px !important;
}

.valuation-smart-form .form-section-title{
  margin-top:0 !important;
  margin-bottom:8px !important;
}

.valuation-smart-form .wizard-question-copy{
  margin-top:0 !important;
  margin-bottom:16px !important;
}

.valuation-smart-form .wizard-actions{
  margin-top:22px !important;
  padding-top:16px !important;
}

/* Reduce empty vertical room inside the two-column valuation area */
.valuation-layout{
  align-items:start !important;
}

.valuation-form-card,
.valuation-side{
  min-height:0 !important;
  height:auto !important;
}

.valuation-form-card{
  padding-top:24px !important;
  padding-bottom:24px !important;
}

.valuation-side{
  padding-top:24px !important;
  padding-bottom:24px !important;
}

/* Keep the progress area compact */
.valuation-progress,
.wizard-progress{
  margin-bottom:20px !important;
}

/* Desktop spacing */
@media(min-width:761px){
  .valuation-hero + .section,
  .valuation-page .section{
    padding-top:34px !important;
    padding-bottom:40px !important;
  }

  .valuation-smart-form .wizard-step[data-step="1"]{
    grid-template-columns:1fr 1fr !important;
    column-gap:16px !important;
  }
}

/* Mobile remains comfortable */
@media(max-width:760px){
  .valuation-form-card,
  .valuation-side{
    padding:20px !important;
  }
}


/* =========================================================
   V22.3 — valuation wizard: show one step at a time
   ========================================================= */

/* Inactive steps must stay hidden */
.valuation-smart-form .wizard-step{
  display:none !important;
}

/* Only the active step is visible */
.valuation-smart-form .wizard-step.active{
  display:block !important;
}

/* Step 1 uses a two-column layout only when active */
.valuation-smart-form .wizard-step[data-step="1"].active{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  column-gap:16px !important;
  row-gap:14px !important;
  align-items:start !important;
  align-content:start !important;
}

.valuation-smart-form .wizard-step[data-step="1"].active .wizard-question-kicker,
.valuation-smart-form .wizard-step[data-step="1"].active .form-section-title,
.valuation-smart-form .wizard-step[data-step="1"].active .wizard-question-copy{
  grid-column:1 / -1 !important;
}

@media(max-width:760px){
  .valuation-smart-form .wizard-step[data-step="1"].active{
    grid-template-columns:1fr !important;
  }
}


/* V22.4 — hard wizard isolation */
#valuationForm > .wizard-step:not(.active){
  display:none !important;
}
#valuationForm > .wizard-step.active:not([data-step="1"]){
  display:block !important;
}
#valuationForm > .wizard-step.active[data-step="1"]{
  display:grid !important;
}


/* V22.5 — slightly wider valuation fields */
@media (min-width: 761px){
  .valuation-smart-form .wizard-step[data-step="1"].active{
    column-gap:12px !important;
  }

  .valuation-smart-form .wizard-step[data-step="1"].active .field{
    width:100% !important;
    min-width:0 !important;
  }

  .valuation-smart-form .wizard-step[data-step="1"].active .field input,
  .valuation-smart-form .wizard-step[data-step="1"].active .field select,
  .valuation-smart-form .wizard-step[data-step="1"].active .field textarea{
    width:100% !important;
    box-sizing:border-box !important;
    padding-left:18px !important;
    padding-right:18px !important;
  }
}


/* V22.7 — balanced city/neighborhood field sizing only */
@media (min-width:761px){
  .valuation-smart-form .wizard-step[data-step="1"].active{
    display:grid !important;
    grid-template-columns: 132px 132px !important;
    justify-content:center !important;
    gap:14px !important;
  }

  .valuation-smart-form .wizard-step[data-step="1"].active .field{
    width:132px !important;
    max-width:132px !important;
  }

  .valuation-smart-form .wizard-step[data-step="1"].active .field input{
    width:132px !important;
    max-width:132px !important;
    box-sizing:border-box !important;
    padding-inline:14px !important;
  }
}


/* =========================================================
   V22.8 — contact page truly centered
   ========================================================= */
.contact-page .contact-intro{
  max-width:900px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
  padding-left:20px !important;
  padding-right:20px !important;
}

.contact-page .contact-intro .hero-title,
.contact-page .contact-intro .hero-sub{
  width:100% !important;
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

.contact-page .contact-methods-section{
  max-width:1100px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-page .contact-methods-grid{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  max-width:1060px !important;
  margin:0 auto !important;
  gap:20px !important;
}

.contact-page .contact-methods-grid .card{
  width:100% !important;
  box-sizing:border-box !important;
  text-align:center !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:158px !important;
}

.contact-page .contact-methods-grid .card h3,
.contact-page .contact-methods-grid .card p,
.contact-page .contact-methods-grid .card .value-icon{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-page .contact-form-section{
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-page .contact-form-card{
  max-width:640px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.contact-page .contact-form-card .section-title{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media(max-width:900px){
  .contact-page .contact-methods-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media(max-width:560px){
  .contact-page .contact-methods-grid{
    grid-template-columns:1fr !important;
    max-width:420px !important;
  }
}


/* =========================================================
   V23 — full-screen property gallery / lightbox
   ========================================================= */
.property-detail-image{cursor:zoom-in}
.gallery-all-btn{
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:3;
  border:1px solid rgba(255,255,255,.7);
  background:rgba(18,24,29,.80);
  color:#fff;
  border-radius:10px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
  backdrop-filter:blur(8px);
}
.gallery-all-btn:hover{background:rgba(18,24,29,.94)}

.property-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.property-lightbox.open{display:block}
.property-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,11,14,.94);
}
.property-lightbox-dialog{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:80px minmax(0,1fr) 80px;
  align-items:center;
  padding:28px 30px;
}
.property-lightbox-figure{
  margin:0;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.property-lightbox-figure img{
  display:block;
  max-width:min(1280px,90vw);
  max-height:82vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 18px 60px rgba(0,0,0,.38);
}
.property-lightbox-figure figcaption{
  color:#fff;
  font-size:13px;
  font-weight:700;
}
.property-lightbox-close{
  position:absolute;
  top:18px;
  right:22px;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  z-index:3;
}
.property-lightbox-nav{
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.26);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  justify-self:center;
}
.property-lightbox-nav:hover,
.property-lightbox-close:hover{
  background:rgba(255,255,255,.16);
}
body.lightbox-open{overflow:hidden}

@media(max-width:760px){
  .property-lightbox-dialog{
    grid-template-columns:50px minmax(0,1fr) 50px;
    padding:18px 8px;
  }
  .property-lightbox-figure img{
    max-width:94vw;
    max-height:76vh;
    border-radius:8px;
  }
  .property-lightbox-nav{
    width:42px;
    height:42px;
    font-size:28px;
  }
  .gallery-all-btn{
    left:10px;
    bottom:10px;
    padding:9px 12px;
    font-size:13px;
  }
}
/* V24 — About page visual hero */
.about-visual-hero{max-width:1120px;margin:48px auto 28px;padding:0;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.08fr);direction:rtl;overflow:hidden;border:1px solid rgba(183,135,45,.24);border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(19,28,39,.08)}
.about-visual-copy{padding:58px 54px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;text-align:right}.about-visual-copy .hero-title{margin:8px 0 20px}.about-visual-copy .hero-sub,.about-visual-copy .hero-desc{max-width:520px;margin:0 0 18px;color:#4d5865!important;line-height:1.9}.about-kicker{color:var(--gold);font-size:15px;font-weight:800}.about-visual-copy .license-note{margin-top:10px}.about-visual-image{min-height:520px}.about-visual-image img{display:block;width:100%;height:100%;min-height:520px;object-fit:cover}
@media(max-width:820px){.about-visual-hero{grid-template-columns:1fr;margin:24px 16px}.about-visual-image{order:-1;min-height:300px}.about-visual-image img{min-height:300px;max-height:380px}.about-visual-copy{padding:34px 24px}}


/* =========================================================
   V24.1 — About page matching the approved visual direction
   ========================================================= */
.about-page{background:#fff;color:#1e252b!important}
.about-page *{box-sizing:border-box}
.about-showcase{display:grid;grid-template-columns:1fr 1fr;min-height:560px;background:#fff;direction:ltr}
.about-showcase-image{min-height:560px;overflow:hidden}
.about-showcase-image img{display:block;width:100%;height:100%;min-height:560px;object-fit:cover;object-position:center}
.about-showcase-copy{direction:rtl;text-align:right;padding:72px 9vw 64px 7vw;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;color:#1e252b!important}
.about-showcase-copy .about-eyebrow{color:#b9862a!important;font-weight:800;font-size:16px;margin-bottom:10px}
.about-showcase-copy h1{color:#1c2329!important;font-size:clamp(40px,4.5vw,68px);line-height:1.08;margin:0 0 16px;font-weight:900}
.about-gold-line{width:54px;height:2px;background:#c89537;margin:0 0 24px}
.about-showcase-copy p{color:#3e474f!important;font-size:18px;line-height:1.9;margin:0 0 18px;max-width:600px}
.about-license-pill{margin-top:12px;border:1px solid #cfa552;color:#9b6e1c!important;border-radius:999px;padding:11px 20px;font-weight:800;background:#fff}

.about-values,.about-process{padding-top:58px!important;padding-bottom:58px!important;background:#fff!important;color:#1e252b!important}
.about-section-head{text-align:center;margin-bottom:34px}
.about-section-head h2{color:#1c2329!important;font-size:clamp(30px,3vw,42px);margin:0 0 12px;font-weight:900}
.about-section-head .about-gold-line{margin:0 auto}
.about-values-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.about-value-card{background:#fff;border:1px solid #e4ddd1;border-radius:14px;padding:30px 22px;text-align:center;min-height:235px;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;box-shadow:0 8px 24px rgba(24,31,36,.035)}
.about-value-icon{color:#b98118!important;font-size:42px;line-height:1;margin-bottom:16px}
.about-value-card h3{color:#1f262c!important;font-size:20px;margin:0 0 10px;font-weight:900}
.about-value-card p{color:#4f5962!important;font-size:15px;line-height:1.75;margin:0}

.about-process-line{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px;position:relative;padding-top:10px}
.about-process-line:before{content:"";position:absolute;top:31px;right:9%;left:9%;border-top:1px dashed #cda556;z-index:0}
.about-process-step{text-align:center;position:relative;z-index:1;color:#1f262c!important}
.about-process-number{width:48px;height:48px;border-radius:50%;background:#bf861c;color:#fff!important;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;font-weight:900;font-size:18px;box-shadow:0 6px 16px rgba(191,134,28,.18)}
.about-process-step h3{color:#20272d!important;margin:0 0 10px;font-size:17px;font-weight:900}
.about-process-step p{color:#4f5962!important;margin:0;font-size:14px;line-height:1.7}

.about-final-cta{margin-top:24px;margin-bottom:64px;border:1px solid #e2dacd;border-radius:18px;background:#fff;padding:28px 34px;display:flex;align-items:center;justify-content:space-between;gap:28px;box-shadow:0 12px 32px rgba(24,31,36,.05);color:#1e252b!important}
.about-final-copy h2{color:#1d242a!important;margin:0 0 8px;font-size:30px;font-weight:900}
.about-final-copy p{color:#4e5961!important;margin:0;line-height:1.7}
.about-final-actions .btn{white-space:nowrap;color:#1e252b!important}

/* Override any old light text inherited from previous themes */
.about-page .hero-title,.about-page .hero-sub,.about-page .hero-desc,.about-page .section-title,.about-page h1,.about-page h2,.about-page h3,.about-page p,.about-page span{opacity:1}

@media(max-width:900px){
  .about-showcase{grid-template-columns:1fr;direction:rtl}
  .about-showcase-image{min-height:360px;order:1}
  .about-showcase-image img{min-height:360px;max-height:420px}
  .about-showcase-copy{order:2;padding:42px 24px 48px}
  .about-values-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .about-process-line{grid-template-columns:1fr 1fr;gap:28px 20px}
  .about-process-line:before{display:none}
  .about-final-cta{display:block;text-align:center;margin-left:16px;margin-right:16px}
  .about-final-actions{margin-top:18px}
}
@media(max-width:560px){
  .about-values-grid{grid-template-columns:1fr}
  .about-process-line{grid-template-columns:1fr}
  .about-showcase-copy h1{font-size:40px}
  .about-showcase-copy p{font-size:16px}
  .about-final-actions .btn{width:100%;justify-content:center;white-space:normal}
}


/* V24.2 — About hero text panel tint */
.about-visual-copy{
  background:linear-gradient(135deg,#fbf8f1 0%,#f6f1e8 100%) !important;
  border-radius:0 24px 24px 0;
}

.about-visual-copy .hero-title{
  color:#182027 !important;
}

.about-visual-copy .hero-sub,
.about-visual-copy .hero-desc,
.about-visual-copy .license-note{
  color:#3f4950 !important;
  opacity:1 !important;
}

.about-visual-copy .license-note{
  background:#fff !important;
  border:1px solid #d8b56a !important;
  color:#8a6422 !important;
  padding:10px 16px !important;
  border-radius:999px !important;
  display:inline-flex !important;
}

@media(max-width:820px){
  .about-visual-copy{
    border-radius:0 0 24px 24px;
  }
}


/* =========================================================
   V24.3 — actual About hero tint fix
   ========================================================= */
.about-page .about-showcase{
  background:#fff !important;
}

.about-page .about-showcase-copy{
  background:linear-gradient(135deg,#fbf8f1 0%,#f4eee4 100%) !important;
  color:#1d252b !important;
}

.about-page .about-showcase-copy h1,
.about-page .about-showcase-copy p,
.about-page .about-showcase-copy .about-license-pill{
  opacity:1 !important;
}

.about-page .about-showcase-copy h1{
  color:#192128 !important;
}

.about-page .about-showcase-copy p{
  color:#3d474f !important;
}

.about-page .about-showcase-copy .about-license-pill{
  background:#fff !important;
  color:#8a6422 !important;
  border:1px solid #d4ad61 !important;
}

@media(min-width:821px){
  .about-page .about-showcase-copy{
    border-radius:0 0 0 28px !important;
  }
}

@media(max-width:820px){
  .about-page .about-showcase-copy{
    border-radius:0 0 22px 22px !important;
  }
}

/* =========================================================
   V25 REAL — Properties redesign
   ========================================================= */
.properties-page{background:#fbfaf7;color:#1d252b}
.properties-page main{background:#fbfaf7}
.properties-hero-new{
  padding:58px 20px 30px;
  text-align:center;
  background:linear-gradient(180deg,#fff 0%,#fbfaf7 100%);
}
.properties-hero-new .properties-kicker{
  color:#b88a36;font-weight:800;font-size:14px;margin-bottom:10px
}
.properties-hero-new h1{
  margin:0 auto 12px;max-width:850px;color:#1a2228!important;
  font-size:clamp(34px,4vw,54px);line-height:1.08;letter-spacing:-.03em
}
.properties-hero-new p{
  margin:0 auto;max-width:720px;color:#5b6268!important;
  font-size:17px;line-height:1.8
}
.properties-page main > .section.container:nth-of-type(2){
  padding-top:20px!important
}
.properties-page .view-toggle{
  margin:0 auto 18px!important;background:#fff!important;border:1px solid #e1d7c6!important;
  padding:5px!important;border-radius:999px!important;width:max-content!important;
  box-shadow:0 8px 24px rgba(29,37,43,.05)
}
.properties-page .view-toggle-btn{
  background:transparent!important;color:#4e565c!important;border:0!important;border-radius:999px!important;
  min-width:112px;padding:10px 18px!important
}
.properties-page .view-toggle-btn.active{
  background:#c79b4d!important;color:#fff!important;box-shadow:0 5px 14px rgba(174,126,45,.18)
}
.properties-page .filter-bar{
  max-width:1120px;margin:0 auto 34px!important;padding:14px!important;
  display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:10px!important;
  background:#fff!important;border:1px solid #e4ddd2!important;border-radius:18px!important;
  box-shadow:0 12px 34px rgba(29,37,43,.06)!important
}
.properties-page .filter-bar select{
  background:#faf8f4!important;color:#293138!important;border:1px solid #e5ddd0!important;
  border-radius:12px!important;padding:13px 14px!important;min-height:48px!important;
  font-weight:650!important
}
.properties-page .cards-grid{
  max-width:1120px!important;margin:0 auto!important;display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important
}
.properties-page .property-card{
  border:1px solid #e4ddd3!important;border-radius:20px!important;overflow:hidden!important;
  background:#fff!important;box-shadow:0 10px 28px rgba(29,37,43,.055)!important;
  transition:.2s ease!important
}
.properties-page .property-card:hover{
  transform:translateY(-5px);box-shadow:0 18px 40px rgba(29,37,43,.1)!important;
  border-color:#d7bd8c!important
}
.properties-page .property-media{height:245px!important;position:relative;overflow:hidden}
.properties-page .property-media img{width:100%;height:100%;object-fit:cover;transition:.35s ease}
.properties-page .property-card:hover .property-media img{transform:scale(1.035)}
.properties-page .status-badge{
  top:16px!important;right:16px!important;background:#d2a852!important;color:#20262b!important;
  border:0!important;border-radius:999px!important;padding:7px 13px!important;font-weight:850!important
}
.properties-page .property-body{padding:20px 20px 18px!important}
.properties-page .property-body h3{font-size:21px!important;color:#1b2329!important;margin-bottom:7px!important}
.properties-page .property-location{color:#747b80!important;font-size:14px!important;margin-bottom:14px!important}
.properties-page .price-badge{
  display:block!important;background:transparent!important;border:0!important;padding:0!important;
  color:#182027!important;font-size:25px!important;font-weight:900!important;margin:0 0 16px!important
}
.properties-page .property-meta{
  display:grid!important;grid-template-columns:repeat(3,1fr)!important;
  border-top:1px solid #eee8df!important;border-bottom:1px solid #eee8df!important;
  padding:13px 0!important;margin-bottom:15px!important;gap:0!important
}
.properties-page .property-meta span{
  color:#555e64!important;text-align:center!important;font-size:13px!important;
  border-left:1px solid #eee8df
}
.properties-page .property-meta span:last-child{border-left:0}
.properties-page .property-card-actions{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:12px!important}
.properties-page .property-cta{
  background:transparent!important;color:#9b7129!important;border:0!important;padding:8px 0!important;
  box-shadow:none!important
}
.properties-page .property-cta:after{content:" ←";margin-right:5px}
.properties-page .property-wa-mini{
  border:1px solid #dbe8de!important;background:#f4faf5!important;color:#26713e!important;
  border-radius:10px!important;padding:9px 12px!important;text-decoration:none!important;font-weight:750!important
}
.properties-page .property-seller-cta{padding-top:58px!important}
.properties-page .seller-cta-inner{
  background:linear-gradient(135deg,#f7f1e6,#fff)!important;border:1px solid #decba6!important;
  border-radius:22px!important;box-shadow:0 10px 30px rgba(29,37,43,.04)!important
}
@media(max-width:900px){
  .properties-page .filter-bar{grid-template-columns:repeat(2,1fr)!important}
  .properties-page .cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:620px){
  .properties-hero-new{padding:38px 18px 22px}
  .properties-page .filter-bar{grid-template-columns:1fr!important}
  .properties-page .cards-grid{grid-template-columns:1fr!important}
  .properties-page .property-media{height:230px!important}
}


/* =========================================================
   V26 — Property detail page redesign
   ========================================================= */
.property-detail-page{background:#fbfaf7;color:#1c242a}
.property-detail-page main{background:#fbfaf7}
.property-detail-page .property-page{
  max-width:1120px!important;
  margin-inline:auto!important;
}
.property-detail-page .property-gallery{
  margin-top:34px!important;
  margin-bottom:30px!important;
}
.property-detail-page .property-gallery-main,
.property-detail-page .gallery-main{
  border-radius:22px!important;
  overflow:hidden!important;
  box-shadow:0 14px 38px rgba(27,34,40,.08)!important;
}
.property-detail-page .property-gallery-thumbs,
.property-detail-page .gallery-thumbs{
  gap:10px!important;
  margin-top:10px!important;
}
.property-detail-page .property-gallery-thumbs img,
.property-detail-page .gallery-thumbs img{
  border-radius:12px!important;
  height:112px!important;
  object-fit:cover!important;
}
.property-detail-page .property-head,
.property-detail-page .property-hero-info{
  background:#fff!important;
  border:1px solid #e5ddd1!important;
  border-radius:22px!important;
  padding:28px 30px!important;
  box-shadow:0 10px 30px rgba(27,34,40,.05)!important;
  margin-bottom:24px!important;
}
.property-detail-page h1{
  color:#192127!important;
  font-size:clamp(34px,4vw,52px)!important;
  line-height:1.1!important;
  margin-bottom:8px!important;
}
.property-detail-page .property-price,
.property-detail-page .price{
  color:#9c7128!important;
  font-weight:900!important;
}
.property-detail-page .property-actions{
  gap:10px!important;
  flex-wrap:wrap!important;
}
.property-detail-page .property-actions .btn{
  border-radius:12px!important;
  min-height:48px!important;
}
.property-detail-page .property-stats,
.property-detail-page .details-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:12px!important;
  margin:22px auto 34px!important;
}
.property-detail-page .property-stat,
.property-detail-page .detail-card{
  min-height:112px!important;
  padding:18px 14px!important;
  border:1px solid #e5ddd1!important;
  background:#fff!important;
  border-radius:16px!important;
  box-shadow:none!important;
}
.property-detail-page .property-stat strong,
.property-detail-page .detail-card strong{
  color:#1d252b!important;
  font-size:18px!important;
}
.property-detail-page .property-stat span,
.property-detail-page .detail-card span{
  color:#747c82!important;
}
.property-detail-page .property-description,
.property-detail-page .property-location-section,
.property-detail-page .property-features-section,
.property-detail-page .property-section{
  max-width:1120px!important;
  margin:0 auto 18px!important;
}
.property-detail-page .property-description,
.property-detail-page .property-location-section,
.property-detail-page .property-features-section{
  background:#fff!important;
  border:1px solid #e5ddd1!important;
  border-radius:20px!important;
  padding:28px 30px!important;
}
.property-detail-page .property-description h2,
.property-detail-page .property-location-section h2,
.property-detail-page .property-features-section h2{
  margin-top:0!important;
  color:#1c242a!important;
}
.property-detail-page .property-description p,
.property-detail-page .property-location-section p{
  color:#4f5960!important;
  line-height:1.9!important;
}
.property-detail-page .features-list,
.property-detail-page .property-features{
  gap:9px!important;
}
.property-detail-page .feature-chip,
.property-detail-page .feature{
  background:#faf7f1!important;
  border:1px solid #dfd3bf!important;
  color:#3f484e!important;
  border-radius:999px!important;
}
.property-detail-page .tour-section,
.property-detail-page .property-tour,
.property-detail-page .lead-card{
  max-width:820px!important;
  margin:34px auto!important;
  background:linear-gradient(135deg,#f8f3e9 0%,#fff 70%)!important;
  border:1px solid #dfcfb2!important;
  border-radius:22px!important;
  padding:34px!important;
  box-shadow:0 12px 34px rgba(27,34,40,.05)!important;
}
.property-detail-page .tour-section input,
.property-detail-page .tour-section textarea,
.property-detail-page .tour-section select,
.property-detail-page .property-tour input,
.property-detail-page .property-tour textarea,
.property-detail-page .property-tour select,
.property-detail-page .lead-card input,
.property-detail-page .lead-card textarea,
.property-detail-page .lead-card select{
  background:#fff!important;
  color:#252d33!important;
  border:1px solid #dcd4c8!important;
  border-radius:12px!important;
  min-height:50px!important;
  box-shadow:none!important;
}
.property-detail-page textarea{min-height:110px!important}
.property-detail-page input::placeholder,
.property-detail-page textarea::placeholder{color:#8a9094!important}
.property-detail-page .related-properties{
  margin-top:48px!important;
  padding-top:10px!important;
}
.property-detail-page .related-properties h2{
  margin-bottom:22px!important;
}
@media(max-width:850px){
  .property-detail-page .property-stats,
  .property-detail-page .details-grid{grid-template-columns:repeat(2,1fr)!important}
}
@media(max-width:560px){
  .property-detail-page .property-stats,
  .property-detail-page .details-grid{grid-template-columns:repeat(2,1fr)!important;gap:9px!important}
  .property-detail-page .property-head,
  .property-detail-page .property-hero-info,
  .property-detail-page .property-description,
  .property-detail-page .property-location-section,
  .property-detail-page .property-features-section,
  .property-detail-page .tour-section,
  .property-detail-page .property-tour,
  .property-detail-page .lead-card{padding:20px!important;border-radius:16px!important}
}


/* =========================================================
   V26.1 — Compact property page
   ========================================================= */
.property-detail-page .property-page{max-width:1120px!important}

.property-detail-page .property-stats,
.property-detail-page .details-grid{
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:10px!important;
  margin:18px auto 22px!important;
}

.property-detail-page .property-stat,
.property-detail-page .detail-card{
  min-height:88px!important;
  padding:13px 10px!important;
  border-radius:14px!important;
}

.property-detail-page .property-stat .icon,
.property-detail-page .detail-card .icon{
  margin-bottom:5px!important;
  font-size:18px!important;
}

.property-detail-page .property-stat strong,
.property-detail-page .detail-card strong{
  font-size:16px!important;
  line-height:1.25!important;
}

.property-detail-page .property-stat span,
.property-detail-page .detail-card span{
  font-size:12px!important;
  line-height:1.25!important;
}

.property-detail-page .property-description,
.property-detail-page .property-location-section,
.property-detail-page .property-features-section{
  padding:22px 24px!important;
  margin-bottom:8px!important;
  border-radius:14px!important;
}

.property-detail-page .property-description h2,
.property-detail-page .property-location-section h2,
.property-detail-page .property-features-section h2{
  font-size:26px!important;
  margin-bottom:10px!important;
}

.property-detail-page .property-description p,
.property-detail-page .property-location-section p{
  line-height:1.75!important;
  margin-bottom:0!important;
}

.property-detail-page .property-features-section{
  padding-top:18px!important;
  padding-bottom:18px!important;
  margin-bottom:18px!important;
}

.property-detail-page .features-list,
.property-detail-page .property-features{gap:7px!important}

.property-detail-page .feature-chip,
.property-detail-page .feature{
  padding:8px 12px!important;
  font-size:13px!important;
}

.property-detail-page .tour-section,
.property-detail-page .property-tour,
.property-detail-page .lead-card{
  margin:24px auto!important;
  padding:28px!important;
}

.property-detail-page .related-properties{margin-top:30px!important}
.property-detail-page .section{
  padding-top:26px!important;
  padding-bottom:26px!important;
}

@media(max-width:1000px){
  .property-detail-page .property-stats,
  .property-detail-page .details-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
  }
}

@media(max-width:760px){
  .property-detail-page .property-stats,
  .property-detail-page .details-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .property-detail-page .property-stat,
  .property-detail-page .detail-card{min-height:84px!important}
  .property-detail-page .property-description,
  .property-detail-page .property-location-section,
  .property-detail-page .property-features-section{padding:18px!important}
}


/* =========================================================
   V27 — Real property page structural redesign
   ========================================================= */
.property-detail-page{
  background:#fbfaf7!important;
  color:#1d252b!important;
}
.property-detail-page main{background:#fbfaf7!important}
.property-detail-page #propertyDetail{padding-bottom:20px}
.property-detail-page .container{max-width:1120px}

.property-detail-page .property-back-section{
  padding-top:28px;
  padding-bottom:14px;
}
.property-detail-page .property-back-btn{
  background:#fff!important;
  color:#855f22!important;
  border-color:#d9bd88!important;
  min-height:42px;
}

.property-detail-page .property-gallery-shell{
  padding-bottom:22px;
}
.property-detail-page .property-detail-image{
  position:relative;
  height:520px;
  border-radius:22px;
  overflow:hidden;
  background:#eee;
  box-shadow:0 14px 38px rgba(25,31,35,.08);
}
.property-detail-page .property-detail-image>img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.property-detail-page .gallery-open-btn{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:3;
  border:1px solid rgba(255,255,255,.7);
  background:rgba(20,26,31,.78);
  color:#fff;
  backdrop-filter:blur(8px);
  padding:10px 16px;
  border-radius:999px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.property-detail-page .gallery-thumbs{
  display:grid!important;
  grid-template-columns:repeat(5,1fr)!important;
  gap:10px!important;
  margin-top:10px!important;
}
.property-detail-page .gallery-thumb-btn{
  height:110px!important;
  border-radius:13px!important;
  overflow:hidden!important;
}
.property-detail-page .gallery-thumb-btn img{width:100%;height:100%;object-fit:cover}

.property-detail-page .property-summary-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:30px;
  align-items:center;
  background:#fff;
  border:1px solid #e5ddd1;
  border-radius:20px;
  padding:25px 28px;
  box-shadow:0 10px 30px rgba(25,31,35,.045);
  margin-bottom:22px;
}
.property-detail-page .property-summary-main{
  min-width:0;
}
.property-detail-page .property-summary-copy .property-location{
  margin:0 0 5px!important;
  color:#8a7350!important;
  font-size:14px!important;
  font-weight:750;
}
.property-detail-page .property-summary-copy h1{
  margin:0!important;
  color:#182027!important;
  font-size:clamp(34px,4vw,50px)!important;
  line-height:1.08!important;
}
.property-detail-page .property-ref{
  margin-top:9px;
  color:#8b9296;
  font-size:12px;
}
.property-detail-page .property-detail-ctas{
  display:flex!important;
  gap:9px!important;
  flex-wrap:wrap!important;
  margin-top:20px!important;
}
.property-detail-page .property-detail-ctas .btn{
  min-height:44px!important;
  padding:10px 18px!important;
  border-radius:11px!important;
}
.property-detail-page .property-summary-price{
  min-width:210px;
  text-align:center;
  padding:20px 24px;
  border-right:1px solid #eee7dd;
}
.property-detail-page .summary-price-label{
  display:block;
  font-size:12px;
  color:#8b9195;
  margin-bottom:5px;
}
.property-detail-page .property-summary-price .price-badge{
  display:block!important;
  background:transparent!important;
  border:0!important;
  padding:0!important;
  color:#9b7027!important;
  font-size:30px!important;
  font-weight:900!important;
}

.property-detail-page .property-facts-section{
  background:#fff;
  border:1px solid #e5ddd1;
  border-radius:20px;
  padding:24px;
  margin-bottom:18px;
}
.property-detail-page .section-kicker{
  display:block;
  color:#b18439;
  font-size:12px;
  font-weight:850;
  margin-bottom:4px;
}
.property-detail-page .property-section-heading h2,
.property-detail-page .property-info-block h2,
.property-detail-page .property-features-heading h2,
.property-detail-page .tour-copy h2{
  margin:0!important;
  color:#1c242a!important;
}
.property-detail-page .property-section-heading{margin-bottom:17px}
.property-detail-page .property-facts-grid{
  display:grid!important;
  grid-template-columns:repeat(7,minmax(0,1fr))!important;
  gap:8px!important;
}
.property-detail-page .property-fact{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
  min-height:68px;
  padding:11px 10px;
  background:#faf8f4;
  border:1px solid #ebe3d8;
  border-radius:12px;
}
.property-detail-page .fact-icon{
  flex:0 0 auto;
  font-size:17px;
}
.property-detail-page .fact-copy{
  min-width:0;
}
.property-detail-page .property-fact .detail-label{
  color:#8a9195!important;
  font-size:10px!important;
  line-height:1.2;
  margin-bottom:3px;
}
.property-detail-page .property-fact .detail-value{
  color:#20282e!important;
  font-size:14px!important;
  font-weight:850!important;
  line-height:1.2;
  white-space:normal;
}

.property-detail-page .property-info-panel{
  background:#fff;
  border:1px solid #e5ddd1;
  border-radius:20px;
  padding:26px;
  margin-bottom:18px;
}
.property-detail-page .property-info-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
}
.property-detail-page .property-info-block{
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  padding:0!important;
  margin:0!important;
}
.property-detail-page .property-info-block + .property-info-block{
  padding-right:28px!important;
  border-right:1px solid #eee7dc!important;
}
.property-detail-page .property-info-block h2{
  font-size:25px!important;
  margin-bottom:10px!important;
}
.property-detail-page .property-info-block p{
  margin:0!important;
  color:#535d64!important;
  line-height:1.8!important;
  font-size:15px!important;
}
.property-detail-page .property-location-actions{
  margin-top:15px!important;
}
.property-detail-page .property-location-actions .btn{
  min-height:40px!important;
  padding:8px 15px!important;
}
.property-detail-page .property-features-section{
  background:transparent!important;
  border:0!important;
  border-top:1px solid #eee7dc!important;
  border-radius:0!important;
  padding:18px 0 0!important;
  margin:22px 0 0!important;
}
.property-detail-page .property-features-heading{
  margin-bottom:10px;
}
.property-detail-page .property-features-heading h2{font-size:21px!important}
.property-detail-page .feature-tags{
  display:flex!important;
  gap:8px!important;
  flex-wrap:wrap!important;
}
.property-detail-page .feature-tag{
  background:#faf7f1!important;
  color:#40484e!important;
  border:1px solid #dfd3bf!important;
  border-radius:999px!important;
  padding:8px 12px!important;
  font-size:12px!important;
  font-weight:700!important;
}

.property-detail-page .property-tour-section{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:28px;
  align-items:start;
  background:linear-gradient(135deg,#f8f2e7 0%,#fff 72%);
  border:1px solid #ddc9a3;
  border-radius:20px;
  padding:28px;
  margin-bottom:24px;
}
.property-detail-page .tour-copy p{
  color:#687177;
  line-height:1.7;
  margin:9px 0 0;
}
.property-detail-page .tour-form-card{
  max-width:none!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.property-detail-page .tour-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.property-detail-page .tour-form-card label{
  display:block;
  margin-bottom:5px;
  font-size:12px;
  font-weight:750;
  color:#545d63;
}
.property-detail-page .tour-form-card input{
  width:100%;
  min-height:46px!important;
  background:#fff!important;
  color:#252d33!important;
  border:1px solid #dcd4c8!important;
  border-radius:10px!important;
  padding:10px 12px!important;
  box-shadow:none!important;
}
.property-detail-page .tour-submit{
  margin-top:12px;
  min-height:46px!important;
  border-radius:10px!important;
}

.property-detail-page .related-properties{
  padding-top:20px!important;
  padding-bottom:28px!important;
}
.property-detail-page .related-properties .section-title{
  margin-bottom:20px!important;
}

@media(max-width:1000px){
  .property-detail-page .property-facts-grid{grid-template-columns:repeat(4,1fr)!important}
  .property-detail-page .property-detail-image{height:450px}
}
@media(max-width:760px){
  .property-detail-page .property-detail-image{height:320px}
  .property-detail-page .gallery-thumbs{
    display:flex!important;
    overflow-x:auto;
  }
  .property-detail-page .gallery-thumb-btn{min-width:120px!important}
  .property-detail-page .property-summary-card{
    grid-template-columns:1fr;
    padding:20px;
  }
  .property-detail-page .property-summary-price{
    order:-1;
    text-align:right;
    padding:0 0 15px;
    border-right:0;
    border-bottom:1px solid #eee7dd;
  }
  .property-detail-page .property-facts-grid{grid-template-columns:repeat(2,1fr)!important}
  .property-detail-page .property-info-grid{grid-template-columns:1fr}
  .property-detail-page .property-info-block + .property-info-block{
    padding-right:0!important;
    padding-top:20px!important;
    border-right:0!important;
    border-top:1px solid #eee7dc!important;
  }
  .property-detail-page .property-tour-section{grid-template-columns:1fr}
  .property-detail-page .tour-form-grid{grid-template-columns:1fr}
}


/* =========================================================
   V28 — Hero gallery + summary matching approved visual
   ========================================================= */
.property-detail-page .property-back-section{
  padding-top:24px!important;
  padding-bottom:14px!important;
}
.property-detail-page .property-gallery-shell{
  padding-bottom:18px!important;
}
.property-detail-page .property-detail-image{
  height:500px!important;
  border-radius:24px!important;
  box-shadow:0 14px 34px rgba(24,30,35,.09)!important;
}
.property-detail-page .gallery-count-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:4;
  background:rgba(22,28,33,.82);
  color:#fff;
  border-radius:999px;
  padding:9px 13px;
  font-weight:800;
  font-size:13px;
  backdrop-filter:blur(8px);
}
.property-detail-page .gallery-open-btn{
  left:auto!important;
  right:18px!important;
  bottom:18px!important;
  background:rgba(255,255,255,.92)!important;
  color:#1f272d!important;
  border:1px solid rgba(255,255,255,.95)!important;
  box-shadow:0 7px 22px rgba(0,0,0,.12)!important;
}
.property-detail-page .gallery-thumbs{
  grid-template-columns:repeat(5,1fr)!important;
  gap:9px!important;
}
.property-detail-page .gallery-thumb-btn{
  height:108px!important;
  border-radius:14px!important;
  border:2px solid transparent!important;
  background:#fff!important;
  padding:0!important;
  overflow:hidden!important;
}
.property-detail-page .gallery-thumb-btn:first-child{
  border-color:#c99c4d!important;
}
.property-detail-page .gallery-more-tile{
  min-height:108px;
  border-radius:14px;
  border:1px solid #dfd6c9;
  background:linear-gradient(135deg,#f6f0e7,#fff);
  color:#373f45;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:7px;
  font-weight:800;
  font-family:inherit;
  cursor:pointer;
}
.property-detail-page .gallery-more-icon{
  font-size:24px;
  line-height:1;
}

.property-detail-page .property-summary-card{
  grid-template-columns:245px minmax(0,1fr)!important;
  gap:28px!important;
  padding:28px 30px!important;
  border-radius:22px!important;
  margin-bottom:18px!important;
}
.property-detail-page .property-summary-price{
  order:0!important;
  min-width:0!important;
  padding:12px 0 12px 28px!important;
  border-right:0!important;
  border-left:1px solid #ece3d7!important;
  text-align:right!important;
}
.property-detail-page .summary-price-label{
  font-size:12px!important;
  margin-bottom:7px!important;
}
.property-detail-page .property-summary-price .price-badge{
  font-size:32px!important;
  color:#a6792d!important;
}
.property-detail-page .property-summary-copy{
  text-align:right!important;
}
.property-detail-page .property-summary-copy .property-location{
  color:#9a7a42!important;
  font-weight:800!important;
}
.property-detail-page .property-summary-copy h1{
  font-size:clamp(36px,4.2vw,56px)!important;
  letter-spacing:-.025em!important;
}
.property-detail-page .property-ref{
  color:#8a9195!important;
  margin-top:6px!important;
}
.property-detail-page .property-detail-ctas{
  display:grid!important;
  grid-template-columns:1fr 1fr 1.2fr!important;
  gap:10px!important;
  margin-top:20px!important;
}
.property-detail-page .property-detail-ctas .btn{
  min-height:48px!important;
  border-radius:12px!important;
  justify-content:center!important;
  text-align:center!important;
  font-size:14px!important;
}
.property-detail-page .property-detail-ctas .btn-whatsapp{
  box-shadow:0 10px 22px rgba(35,180,82,.18)!important;
}

.property-detail-page .property-facts-section{
  margin-top:0!important;
  border-radius:18px!important;
}

@media(max-width:900px){
  .property-detail-page .property-summary-card{
    grid-template-columns:1fr!important;
  }
  .property-detail-page .property-summary-price{
    border-left:0!important;
    border-bottom:1px solid #ece3d7!important;
    padding:0 0 16px!important;
  }
  .property-detail-page .property-detail-ctas{
    grid-template-columns:1fr!important;
  }
}
@media(max-width:620px){
  .property-detail-page .property-detail-image{height:300px!important}
  .property-detail-page .gallery-thumbs{
    display:flex!important;
    overflow-x:auto!important;
  }
  .property-detail-page .gallery-thumb-btn,
  .property-detail-page .gallery-more-tile{
    min-width:120px!important;
  }
}


/* =========================================================
   V28.1 — final hero polish
   ========================================================= */

/* 1) Shorter main image so title enters the first screen */
.property-detail-page .property-detail-image{
  height:420px!important;
}

/* 2) Tighter thumbnail strip + dedicated "all photos" tile */
.property-detail-page .gallery-thumbs{
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:6px!important;
  margin-top:8px!important;
}

.property-detail-page .gallery-thumb-btn{
  height:94px!important;
  border-radius:12px!important;
}

.property-detail-page .gallery-more-tile{
  min-height:94px!important;
  height:94px!important;
  border-radius:12px!important;
  background:linear-gradient(135deg,#f4ede2 0%,#fff 100%)!important;
  border:1px solid #d9c8aa!important;
  color:#30383e!important;
  font-size:13px!important;
  box-shadow:0 5px 16px rgba(25,31,35,.04)!important;
}

.property-detail-page .gallery-more-icon{
  font-size:21px!important;
}

/* Move "all photos" action away from the main image */
.property-detail-page .gallery-open-btn{
  display:none!important;
}

/* 3) Tighter summary card and slightly smaller title */
.property-detail-page .property-summary-card{
  grid-template-columns:220px minmax(0,1fr)!important;
  gap:24px!important;
  padding:24px 26px!important;
  border-radius:20px!important;
}

.property-detail-page .property-summary-copy h1{
  font-size:clamp(32px,3.7vw,48px)!important;
  line-height:1.06!important;
}

.property-detail-page .property-summary-price{
  padding:10px 0 10px 24px!important;
}

.property-detail-page .property-summary-price .price-badge{
  font-size:29px!important;
}

.property-detail-page .property-detail-ctas{
  margin-top:16px!important;
  gap:8px!important;
}

.property-detail-page .property-detail-ctas .btn{
  min-height:46px!important;
  padding:9px 14px!important;
}

/* Slightly reduce top/bottom space around gallery */
.property-detail-page .property-gallery-shell{
  padding-bottom:14px!important;
}

@media(max-width:900px){
  .property-detail-page .property-summary-card{
    grid-template-columns:1fr!important;
  }
  .property-detail-page .property-summary-price{
    padding:0 0 14px!important;
  }
}

@media(max-width:620px){
  .property-detail-page .property-detail-image{
    height:285px!important;
  }
  .property-detail-page .gallery-thumb-btn,
  .property-detail-page .gallery-more-tile{
    min-width:108px!important;
    height:82px!important;
    min-height:82px!important;
  }
}

/* =========================================================
   V28.2 — tighten thumbnails + pull summary closer
   ========================================================= */
@media(min-width:901px){
  .property-detail-page .gallery-thumbs{
    display:flex!important;
    justify-content:center!important;
    align-items:center!important;
    gap:8px!important;
    width:100%!important;
    margin:8px auto 0!important;
  }
  .property-detail-page .gallery-thumb-btn,
  .property-detail-page .gallery-more-tile{
    flex:0 0 132px!important;
    width:132px!important;
    min-width:132px!important;
    height:86px!important;
    min-height:86px!important;
  }
  .property-detail-page .property-gallery-shell{
    padding-bottom:4px!important;
  }
  .property-detail-page .property-summary-card{
    margin-top:-12px!important;
  }
}


/* =========================================================
   V28.3 — main gallery arrows + final spacing
   ========================================================= */

/* Keep thumbnails close together but leave breathing room above the info card */
.property-detail-page .gallery-thumbs{
  gap:6px!important;
  margin-top:8px!important;
  margin-bottom:20px!important;
}
.property-detail-page .property-summary-card{
  margin-top:0!important;
}

/* Large, easy-to-hit arrows on the main image */
.property-detail-page .main-gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:6;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.92);
  background:rgba(255,255,255,.92);
  color:#20282e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Arial,sans-serif;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.16);
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease;
  backdrop-filter:blur(5px);
}
.property-detail-page .main-gallery-arrow:hover{
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.22);
}
.property-detail-page .main-gallery-arrow:active{
  transform:translateY(-50%) scale(.94);
}
.property-detail-page .main-gallery-prev{
  left:16px;
}
.property-detail-page .main-gallery-next{
  right:16px;
}
.property-detail-page .main-gallery-arrow:focus-visible{
  outline:3px solid rgba(199,155,77,.55);
  outline-offset:3px;
}

/* On a single-image property the arrows are unnecessary */
.property-detail-page .property-detail-image:has(.gallery-count-badge:first-child){
  position:relative;
}

@media(max-width:620px){
  .property-detail-page .main-gallery-arrow{
    width:40px;
    height:40px;
    font-size:28px;
  }
  .property-detail-page .main-gallery-prev{left:10px}
  .property-detail-page .main-gallery-next{right:10px}
  .property-detail-page .gallery-thumbs{margin-bottom:16px!important}
}


/* =========================================================
   V28.4 — related properties: cleaner, informative, fully clickable
   ========================================================= */
.property-detail-page .related-properties .cards-grid{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:24px!important;
}
.property-detail-page .related-property-card{
  display:block;
  text-decoration:none!important;
  color:inherit!important;
  cursor:pointer;
  overflow:hidden;
  background:#fff!important;
  border:1px solid #e5ded3!important;
  border-radius:18px!important;
  box-shadow:0 10px 28px rgba(28,35,41,.06)!important;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.property-detail-page .related-property-card:hover{
  transform:translateY(-3px);
  border-color:#d6bd8a!important;
  box-shadow:0 15px 34px rgba(28,35,41,.10)!important;
}
.property-detail-page .related-property-card .property-media{
  aspect-ratio:16/9!important;
  min-height:0!important;
  height:auto!important;
}
.property-detail-page .related-property-card .property-media::after{
  display:none!important;
}
.property-detail-page .related-property-card .property-body{
  padding:20px 22px 18px!important;
}
.property-detail-page .related-property-card h3{
  color:#1d252b!important;
  font-size:20px!important;
  margin-bottom:6px!important;
}
.property-detail-page .related-property-card .property-location{
  color:#747b80!important;
  margin-bottom:12px!important;
}
.property-detail-page .related-property-card .price-badge{
  color:#1d252b!important;
  font-size:22px!important;
  margin:14px 0 14px!important;
}
.property-detail-page .related-property-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:0;
  color:#525b62;
  font-size:12.5px;
  font-weight:650;
  padding:10px 0;
  border-top:1px solid #eee8df;
  border-bottom:1px solid #eee8df;
}
.property-detail-page .related-property-meta span{
  padding:0 10px;
  white-space:nowrap;
}
.property-detail-page .related-property-meta span:first-child{
  padding-right:0;
}
.property-detail-page .related-property-meta span + span{
  border-right:1px solid #ddd5ca;
}
.property-detail-page .related-property-link{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  color:#9b6d20!important;
  font-size:13.5px;
  font-weight:800;
}
.property-detail-page .related-property-link b{
  font-size:18px;
  font-weight:500;
  transition:transform .2s ease;
}
.property-detail-page .related-property-card:hover .related-property-link b{
  transform:translateX(-4px);
}
.property-detail-page .related-property-card:focus-visible{
  outline:3px solid rgba(199,155,77,.45);
  outline-offset:4px;
}

@media(max-width:760px){
  .property-detail-page .related-properties .cards-grid{
    grid-template-columns:1fr!important;
    gap:16px!important;
  }
  .property-detail-page .related-property-card .property-media{
    aspect-ratio:16/10!important;
  }
}


/* =========================================================
   V28.5 — GLOBAL MOBILE COMPACT PASS
   Keep desktop unchanged; tighten iPhone/mobile layout.
   ========================================================= */
@media (max-width: 760px){

  html, body{
    max-width:100%;
    overflow-x:hidden!important;
  }

  body{
    padding-bottom:92px;
  }

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

  img, video, iframe, svg{
    max-width:100%;
  }

  /* Global page gutters */
  main,
  section,
  .section,
  .container,
  .wrap,
  .page-shell,
  .page-container{
    max-width:100%;
  }

  .container,
  .wrap,
  .page-shell,
  .page-container{
    width:100%!important;
    padding-left:16px!important;
    padding-right:16px!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }

  /* Mobile typography */
  h1{
    font-size:clamp(30px, 8.2vw, 40px)!important;
    line-height:1.08!important;
    letter-spacing:-.02em!important;
    overflow-wrap:anywhere;
  }
  h2{
    font-size:clamp(27px, 7vw, 34px)!important;
    line-height:1.12!important;
    overflow-wrap:anywhere;
  }
  h3{
    font-size:20px!important;
    line-height:1.25!important;
  }
  p{
    line-height:1.65;
  }

  /* Header — much less vertical real estate */
  header,
  .site-header,
  .main-header{
    min-height:0!important;
  }
  .site-header .container,
  .main-header .container,
  header .container{
    min-height:92px!important;
    height:auto!important;
    padding-top:10px!important;
    padding-bottom:10px!important;
  }
  .logo img,
  .site-logo img,
  header .logo img{
    max-height:68px!important;
    width:auto!important;
  }
  .menu-toggle,
  .mobile-menu-toggle,
  .header-call,
  .phone-circle{
    transform:scale(.9);
    transform-origin:center;
  }

  /* Generic sections/cards */
  section{
    padding-top:44px!important;
    padding-bottom:44px!important;
  }
  .card,
  .info-card,
  .content-card,
  .property-card,
  .contact-form-card,
  .property-info-card,
  .property-tour-card,
  .property-summary-card{
    max-width:100%!important;
    min-width:0!important;
    border-radius:16px!important;
  }

  /* Prevent fixed desktop widths from escaping viewport */
  form,
  fieldset,
  input,
  select,
  textarea,
  button,
  .btn{
    max-width:100%!important;
    min-width:0;
  }
  input,
  select,
  textarea{
    width:100%;
  }

  .btn{
    min-height:48px!important;
    padding:12px 20px!important;
    font-size:16px!important;
  }

  /* Valuation wizard */
  .valuation-page main,
  .valuation-page .valuation-main,
  .valuation-page .valuation-section{
    overflow:hidden;
  }
  .valuation-page .valuation-card,
  .valuation-page .valuation-form,
  .valuation-page .wizard-card,
  .valuation-page .valuation-wizard{
    width:100%!important;
    max-width:100%!important;
    margin-left:auto!important;
    margin-right:auto!important;
    padding-left:16px!important;
    padding-right:16px!important;
  }
  .valuation-page .property-types,
  .valuation-page .property-type-grid,
  .valuation-page .type-grid,
  .valuation-page .property-options{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    width:100%!important;
  }
  .valuation-page .property-type,
  .valuation-page .type-option,
  .valuation-page .property-option{
    width:100%!important;
    min-width:0!important;
    min-height:104px!important;
    padding:12px 8px!important;
    margin:0!important;
  }
  .valuation-page .property-type:last-child,
  .valuation-page .type-option:last-child,
  .valuation-page .property-option:last-child{
    grid-column:auto;
  }
  .valuation-page h1,
  .valuation-page h2{
    text-align:center;
    max-width:100%;
  }

  /* Property listing */
  .properties-page .cards-grid,
  .properties-grid,
  #propertiesGrid{
    grid-template-columns:1fr!important;
    gap:16px!important;
  }
  .properties-page .property-card .property-media,
  .property-card .property-media{
    min-height:0!important;
    height:auto!important;
    aspect-ratio:16/10;
  }

  /* Property detail */
  .property-detail-page .property-gallery-shell,
  .property-detail-page .property-summary-card,
  .property-detail-page .property-facts-section,
  .property-detail-page .property-info-card,
  .property-detail-page .property-tour-card{
    width:100%!important;
    max-width:100%!important;
  }
  .property-detail-page .property-detail-image{
    height:280px!important;
    min-height:0!important;
  }
  .property-detail-page .gallery-thumbs{
    gap:6px!important;
    overflow-x:auto!important;
    justify-content:flex-start!important;
    padding-bottom:4px;
  }
  .property-detail-page .gallery-thumb-btn,
  .property-detail-page .gallery-more-tile{
    flex:0 0 84px!important;
    width:84px!important;
    min-width:84px!important;
    height:58px!important;
    min-height:58px!important;
  }
  .property-detail-page .property-summary-card{
    padding:18px!important;
  }
  .property-detail-page .property-facts-grid,
  .property-detail-page .facts-grid{
    gap:8px!important;
  }

  /* Related cards */
  .property-detail-page .related-properties .cards-grid{
    grid-template-columns:1fr!important;
    gap:14px!important;
  }

  /* About/contact */
  .about-page .about-hero,
  .about-page .about-grid,
  .contact-page .contact-methods-grid{
    grid-template-columns:1fr!important;
  }
  .about-page .about-hero,
  .contact-page .contact-form-card{
    width:100%!important;
    max-width:100%!important;
  }

  /* Testimonials — reduce oversized vertical blocks */
  .testimonials,
  .testimonials-section{
    padding-top:40px!important;
    padding-bottom:40px!important;
  }
  .testimonial-card{
    min-height:0!important;
    padding:24px 18px!important;
  }

  /* CTA sections */
  .cta-section,
  .valuation-cta,
  .home-valuation-cta{
    min-height:0!important;
    padding-top:46px!important;
    padding-bottom:46px!important;
  }

  /* Fixed mobile contact bar: compact + safe */
  .mobile-contact-bar,
  .mobile-sticky-cta,
  .sticky-contact-bar{
    left:10px!important;
    right:10px!important;
    bottom:max(10px, env(safe-area-inset-bottom))!important;
    width:auto!important;
    max-width:calc(100vw - 20px)!important;
    padding:7px!important;
    border-radius:16px!important;
  }
  .mobile-contact-bar .btn,
  .mobile-sticky-cta .btn,
  .sticky-contact-bar .btn{
    min-height:48px!important;
    padding:10px 12px!important;
    font-size:16px!important;
  }

  footer,
  .site-footer{
    padding-bottom:112px!important;
  }
}

/* Extra-tight iPhones */
@media (max-width: 390px){
  .container,
  .wrap,
  .page-shell,
  .page-container{
    padding-left:14px!important;
    padding-right:14px!important;
  }

  h1{font-size:30px!important;}
  h2{font-size:27px!important;}

  .property-detail-page .property-detail-image{
    height:250px!important;
  }
}


/* =========================================================
   V28.7 — targeted mobile fix only:
   smart header + visible "show all properties" button
   ========================================================= */
@media (max-width:760px){
  .site-header{
    position:fixed!important;
    top:0!important;
    right:0!important;
    left:0!important;
    width:100%!important;
    z-index:9998!important;
    background:rgba(255,255,255,.98)!important;
    border-bottom:1px solid #e6dfd3!important;
    box-shadow:0 8px 24px rgba(22,28,33,.08)!important;
    backdrop-filter:blur(12px)!important;
    -webkit-backdrop-filter:blur(12px)!important;
    transform:translateY(0);
    transition:transform .24s ease, box-shadow .24s ease!important;
    will-change:transform;
  }

  .site-header.mobile-header-hidden{
    transform:translateY(calc(-100% - 4px))!important;
    box-shadow:none!important;
  }

  .site-header.mobile-header-visible{
    transform:translateY(0)!important;
  }

  body{
    padding-top:92px!important;
  }

  .site-header .container{
    min-height:82px!important;
    padding-top:6px!important;
    padding-bottom:6px!important;
  }

  .site-header .brand-logo{
    height:64px!important;
    max-height:64px!important;
    width:auto!important;
  }

  body.nav-open .site-header{
    transform:translateY(0)!important;
  }

  /* This was the faded element in the iPhone screenshot */
  .featured-properties-mobile-cta .btn-outline{
    color:#1c242a!important;
    background:#fff!important;
    border:1.5px solid #cda54e!important;
    opacity:1!important;
    box-shadow:0 8px 22px rgba(28,36,42,.06);
    font-weight:700!important;
  }

  .featured-properties-mobile-cta .btn-outline:hover,
  .featured-properties-mobile-cta .btn-outline:focus{
    color:#1c242a!important;
    background:#fbf6ea!important;
    border-color:#b88a32!important;
  }
}

@media (max-width:390px){
  body{padding-top:84px!important;}
  .site-header .container{min-height:76px!important;}
  .site-header .brand-logo{height:58px!important;max-height:58px!important;}
}
