/* ═══════════════════════════════════════════════════════════
   GRIHAPRAVESH — MAIN STYLESHEET
   Dark luxury real estate theme · gold accent · fully responsive
   Fonts: Cormorant Garamond (display) · DM Sans (body) · Space Mono (data/labels)
   ═══════════════════════════════════════════════════════════ */

:root{
  --black:#0A0A0B;
  --black-2:#131315;
  --black-3:#1B1B1E;
  --ivory:#F3EFE6;
  --muted:rgba(243,239,230,.62);
  --muted-2:rgba(243,239,230,.4);
  --gold:#C9A84C;
  --gold-light:#E4CC7C;
  --gold-dim:rgba(201,168,76,.15);
  --border:rgba(201,168,76,.16);
  --radius:12px;
  --radius-sm:8px;
  --maxw:1280px;
  --gutter:30px;
  --ff-display:'Cormorant Garamond', serif;
  --ff-body:'DM Sans', sans-serif;
  --ff-mono:'Space Mono', monospace;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--black);
  color:var(--ivory);
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
input{ font-family:inherit; }

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

h1,h2,h3,h4{ font-family:var(--ff-display); font-weight:600; margin:0; color:var(--ivory); }
p{ margin:0; }

em{
  font-style:italic;
  color:var(--gold);
  font-weight:500;
}

section{
  max-width:var(--maxw);
  margin:0 auto;
  padding:100px var(--gutter);
}

@media (max-width:900px){
  section{ padding:70px 22px; }
}
@media (max-width:600px){
  section{ padding:56px 18px; }
}

/* ═══ BUTTONS ═══ */
.btn-hero-primary,
.btn-hero-secondary,
.btn-outline,
.btn-calc{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--ff-body);
  font-size:14px;
  font-weight:600;
  letter-spacing:.02em;
  padding:15px 30px;
  border-radius:999px;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}

.btn-hero-primary{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:#191104;
  box-shadow:0 8px 24px rgba(201,168,76,.25);
}
.btn-hero-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(201,168,76,.4); }

.btn-hero-secondary{
  background:rgba(255,255,255,.04);
  color:var(--ivory);
  border-color:rgba(255,255,255,.16);
  backdrop-filter:blur(6px);
}
.btn-hero-secondary:hover{ border-color:var(--gold); color:var(--gold-light); }

.btn-outline{
  background:transparent;
  color:var(--gold-light);
  border:1px solid var(--border);
  padding:12px 24px;
  flex-shrink:0;
}
.btn-outline:hover{ border-color:var(--gold); background:var(--gold-dim); }

.btn-calc{
  width:100%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:#191104;
  border-radius:var(--radius-sm);
  padding:16px 20px;
  margin-top:8px;
}
.btn-calc:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(201,168,76,.3); }

/* ═══ NAVIGATION ═══ */
#mainNav, .main-nav{
  position:sticky; top:0; z-index:500;
  background:rgba(10,10,11,.75);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:background .3s ease, box-shadow .3s ease;
}
#mainNav.scrolled, .main-nav.scrolled{
  background:rgba(10,10,11,.95);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.nav-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:10px var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.nav-logo{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}
.nav-logo-img{
  height:56px;
  width:auto;
  display:block;
  background:#fff;
  padding:6px 10px;
  border-radius:10px;
}
.nav-links{
  display:flex;
  gap:36px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
}
.nav-links a{
  position:relative;
  font-size:14px;
  font-weight:500;
  color:var(--muted);
  transition:color .2s ease;
  padding:4px 0;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:1px;
  background:var(--gold-light);
  transition:width .25s ease;
}
.nav-links a:hover{ color:var(--ivory); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color:var(--gold-light); }
.nav-links a.active::after{ width:100%; }

.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:#191104;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  padding:10px 20px;
  border-radius:999px;
  flex-shrink:0;
  transition:transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover{ transform:translateY(-2px); box-shadow:0 8px 20px rgba(201,168,76,.3); }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--ivory);
  font-size:24px;
  padding:4px;
  line-height:1;
  flex-shrink:0;
}

@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:block; }
}

/* Mobile slide-in menu */
.nav-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:499;
}
.nav-overlay.open{ opacity:1; pointer-events:auto; }

#mobileMenu{
  position:fixed; top:0; right:0; bottom:0;
  width:78%; max-width:320px;
  background:var(--black-2);
  transform:translateX(100%);
  transition:transform .3s ease;
  z-index:500;
  padding:26px 24px;
  border-left:1px solid var(--border);
  display:flex;
  flex-direction:column;
  gap:6px;
  overflow-y:auto;
}
#mobileMenu.open{ transform:translateX(0); }
.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.mobile-menu-close{
  background:none; border:none; color:var(--muted); font-size:22px;
}
#mobileMenu a{
  display:block;
  font-size:16px;
  font-weight:500;
  color:var(--ivory);
  padding:14px 4px;
  border-bottom:1px solid var(--border);
}
#mobileMenu a:hover{ color:var(--gold-light); }
#mobileMenu .nav-cta{ display:inline-flex; margin-top:18px; text-align:center; justify-content:center; }

/* ═══ HERO ═══ */
#hero{
  position:relative;
  max-width:none;
  padding:150px var(--gutter) 110px;
  overflow:hidden;
  text-align:center;
  isolation:isolate;
}
.hero-bg{
  position:absolute; inset:0; z-index:-2;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(201,168,76,.14), transparent 70%),
    radial-gradient(80% 60% at 90% 100%, rgba(201,168,76,.06), transparent 70%),
    var(--black);
}
.hero-grid-lines{
  position:absolute; inset:0; z-index:-1;
  background-image:
    linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 90%);
}
.hero-content{
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-mono);
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold-light);
  border:1px solid var(--border);
  background:var(--gold-dim);
  padding:8px 16px;
  border-radius:999px;
}
.hero-badge span{
  width:7px; height:7px; border-radius:50%;
  background:var(--gold-light);
  box-shadow:0 0 10px 2px var(--gold);
  display:inline-block;
}
.hero-title{
  font-size:clamp(40px, 7vw, 74px);
  line-height:1.05;
  font-weight:600;
  letter-spacing:-.01em;
}
.hero-sub{
  font-size:clamp(15px, 2vw, 18px);
  color:var(--muted);
  max-width:640px;
  line-height:1.7;
}
.hero-tags{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
}
.hero-tag{
  font-size:12.5px; font-weight:500;
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  padding:8px 16px;
  border-radius:999px;
}
.hero-btns{ margin-top:10px; display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

@media (max-width:600px){
  #hero{ padding:120px 20px 80px; }
}

/* ═══ TRUST STRIP ═══ */
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:36px;
  max-width:var(--maxw);
  margin:0 auto;
  padding:26px var(--gutter);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.trust-item{
  display:flex; align-items:center; gap:9px;
  font-size:13.5px; font-weight:500; color:var(--muted);
}
.trust-item svg{ color:var(--gold); flex-shrink:0; }

@media (max-width:700px){
  .trust-strip{ gap:20px 26px; }
}

/* ═══ SECTION HEADER (shared) ═══ */
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:52px;
}
.section-header-text{ max-width:640px; }
.section-badge{
  display:inline-block;
  font-family:var(--ff-mono);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:16px;
}
.section-title{
  font-size:clamp(30px, 4vw, 44px);
  line-height:1.15;
  margin-bottom:14px;
}
.section-sub{
  font-size:15.5px;
  color:var(--muted);
  line-height:1.7;
}

@media (max-width:800px){
  .section-header{ flex-direction:column; align-items:flex-start; }
}

/* ═══ PROPERTY CARDS ═══ */
.properties-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.property-card{
  display:block;
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.property-card:hover{
  transform:translateY(-6px);
  border-color:rgba(201,168,76,.45);
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}
.prop-image{
  height:220px;
  background:var(--black-3);
  position:relative;
}
.prop-image.bg-commercial{
  background:linear-gradient(160deg, #1c1a12, #100f0c);
}
.prop-badges{
  position:absolute; top:14px; left:14px; z-index:2;
  display:flex; gap:8px;
}
.prop-badge{
  font-family:var(--ff-mono);
  font-size:10.5px;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:6px 11px;
  border-radius:999px;
  backdrop-filter:blur(6px);
}
.badge-hot{ background:rgba(201,168,76,.9); color:#191104; }
.badge-luxury{ background:rgba(0,0,0,.55); color:var(--gold-light); border:1px solid rgba(201,168,76,.4); }
.prop-wishlist{
  position:absolute; top:14px; right:14px; z-index:2;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.5);
  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;
  color:#fff;
  font-size:16px;
  backdrop-filter:blur(6px);
  transition:background .2s ease, color .2s ease;
}
.property-card:hover .prop-wishlist{ color:var(--gold-light); border-color:var(--gold); }

.prop-body{ padding:22px 22px 26px; }
.prop-type{
  font-family:var(--ff-mono);
  font-size:11px;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin-bottom:8px;
}
.prop-name{
  font-family:var(--ff-display);
  font-size:20px;
  font-weight:600;
  color:var(--ivory);
  line-height:1.3;
  margin-bottom:8px;
  min-height:52px;
}
.prop-location{
  font-size:13px;
  color:var(--muted);
  margin-bottom:16px;
}
.prop-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 10px;
  padding:14px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:16px;
}
.prop-meta-label{
  font-size:10.5px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--muted-2);
  margin-bottom:3px;
}
.prop-meta-val{
  font-size:13.5px;
  font-weight:600;
  color:var(--ivory);
}
.prop-meta-val.gold{ color:var(--gold-light); }
.prop-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.prop-price{
  font-family:var(--ff-display);
  font-size:19px;
  font-weight:600;
  color:var(--gold-light);
}
.prop-price span{
  font-family:var(--ff-body);
  font-size:11px;
  font-weight:400;
  color:var(--muted-2);
  margin-left:4px;
}
.prop-cta{
  font-size:12.5px;
  font-weight:600;
  color:var(--ivory);
  white-space:nowrap;
}

@media (max-width:1100px){
  .properties-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:600px){
  .properties-grid{ grid-template-columns:1fr; }
  .prop-name{ min-height:auto; }
}

.db-properties-grid .prop-body{ padding-bottom:22px; }

/* ═══ BROWSE BY CATEGORY ═══ */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}
.cat-card{
  display:block;
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 20px;
  transition:transform .25s ease, border-color .25s ease;
}
.cat-card:hover{ transform:translateY(-4px); border-color:rgba(201,168,76,.4); }
.cat-card-icon{ font-size:28px; margin-bottom:14px; }
.cat-card-title{
  font-family:var(--ff-display);
  font-size:17px;
  font-weight:600;
  color:var(--ivory);
  margin-bottom:8px;
  line-height:1.25;
}
.cat-card-desc{
  font-size:12.5px;
  line-height:1.6;
  color:var(--muted);
}

@media (max-width:1000px){
  .cat-grid{ grid-template-columns:repeat(3, 1fr); }
}
@media (max-width:600px){
  .cat-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:420px){
  .cat-grid{ grid-template-columns:1fr; }
}

/* ═══ 4-COLUMN "HOW/WHY" GRID (shared — used by property-category pages'
   "Why Choose Us" sections) ═══ */
.cw-how-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.cw-how-item{
  text-align:center;
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px 20px;
}
.cw-how-icon{ font-size:28px; margin-bottom:14px; }
.cw-how-title{ font-family:var(--ff-display); font-size:18px; font-weight:600; color:var(--ivory); margin-bottom:8px; }
.cw-how-desc{ font-size:13px; color:var(--muted); line-height:1.6; }

@media (max-width:900px){ .cw-how-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:500px){ .cw-how-grid{ grid-template-columns:1fr; } }

/* ═══ AI FEATURES ═══ */
.ai-features-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.ai-feat-card{
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 26px;
  transition:transform .25s ease, border-color .25s ease;
}
.ai-feat-card:hover{ transform:translateY(-4px); border-color:rgba(201,168,76,.4); }
.ai-feat-icon{ font-size:30px; margin-bottom:18px; }
.ai-feat-title{
  font-family:var(--ff-display);
  font-size:21px;
  font-weight:600;
  color:var(--ivory);
  margin-bottom:10px;
}
.ai-feat-desc{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}

@media (max-width:900px){
  .ai-features-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:600px){
  .ai-features-grid{ grid-template-columns:1fr; }
}

/* ═══ ROI CALCULATOR ═══ */
.calc-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:0;
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.calc-inputs{
  padding:44px 40px;
  display:flex;
  flex-direction:column;
  gap:26px;
}
.input-group{ display:flex; flex-direction:column; gap:8px; }
.input-label{
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.02em;
  color:var(--muted);
  text-transform:uppercase;
}
.calc-input{
  background:var(--black-3);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  color:var(--gold-light);
  font-family:var(--ff-mono);
  font-size:17px;
  padding:12px 14px;
}
.calc-input:focus{ border-color:var(--gold); }
.calc-slider{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold), var(--gold-dim));
  outline:none;
}
.calc-slider::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:16px; height:16px;
  border-radius:50%;
  background:var(--gold-light);
  border:2px solid var(--black);
  box-shadow:0 0 0 3px rgba(201,168,76,.3);
  cursor:pointer;
}
.calc-slider::-moz-range-thumb{
  width:16px; height:16px;
  border-radius:50%;
  background:var(--gold-light);
  border:2px solid var(--black);
  cursor:pointer;
}

.calc-result{
  background:linear-gradient(165deg, #16140d, #0d0c09);
  padding:44px 40px;
  border-left:1px solid var(--border);
}
.result-metric{
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.result-metric:last-of-type{ border-bottom:none; }
.result-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--muted-2);
  margin-bottom:6px;
}
.result-val{
  font-family:var(--ff-display);
  font-size:26px;
  font-weight:600;
  color:var(--gold-light);
}
.result-val.white{ color:var(--ivory); }
.result-note{ font-size:12.5px; color:var(--muted); margin-top:4px; }

@media (max-width:900px){
  .calc-wrap{ grid-template-columns:1fr; }
  .calc-result{ border-left:none; border-top:1px solid var(--border); }
}
@media (max-width:600px){
  .calc-inputs, .calc-result{ padding:32px 22px; }
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.testimonial-card{
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px 26px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.stars{ color:var(--gold); font-size:15px; letter-spacing:2px; }
.testimonial-text{
  font-size:14.5px;
  line-height:1.75;
  color:var(--muted);
  flex-grow:1;
}
.testimonial-user{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.avatar{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--gold-dim);
  color:var(--gold-light);
  font-family:var(--ff-mono);
  font-weight:700;
  font-size:14px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.testimonial-name{ font-size:14px; font-weight:600; color:var(--ivory); }
.testimonial-role{ font-size:12px; color:var(--muted-2); margin-top:2px; }
.testimonial-roi{ font-size:12px; color:var(--gold-light); font-weight:600; margin-top:4px; }

@media (max-width:900px){
  .testimonials-grid{ grid-template-columns:1fr; }
}

/* ═══ BLOGS ═══ */
.blogs-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.blog-card{
  display:block;
  background:var(--black-2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease;
}
.blog-card:hover{
  transform:translateY(-4px);
  border-color:rgba(201,168,76,.45);
}
.blog-image{
  height:190px;
  background:var(--black-3);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.blog-image img{ width:100%; height:100%; object-fit:cover; }
.blog-image-fallback{ font-size:48px; opacity:.3; }
.blog-body{ padding:22px 24px 26px; }
.blog-category{
  font-family:var(--ff-mono);
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:10px;
}
.blog-title{
  font-family:var(--ff-display);
  font-size:21px;
  font-weight:600;
  color:var(--ivory);
  margin-bottom:10px;
  line-height:1.3;
}
.blog-excerpt{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:16px;
}
.blog-cta{ font-size:12.5px; font-weight:600; color:var(--gold-light); }

@media (max-width:1100px){
  .blogs-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:600px){
  .blogs-grid{ grid-template-columns:1fr; }
}

/* ═══ FAQ ═══ */
#faq{ max-width:900px; }
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--black-2);
  overflow:hidden;
}
.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  font-family:var(--ff-body);
  font-size:15.5px;
  font-weight:600;
  color:var(--ivory);
  cursor:pointer;
}
.faq-arrow{
  flex-shrink:0;
  width:26px; height:26px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border);
  border-radius:50%;
  color:var(--gold-light);
  font-size:16px;
  transition:transform .25s ease, background .25s ease;
}
.faq-a{
  max-height:0;
  overflow:hidden;
  padding:0 24px;
  font-size:14px;
  line-height:1.75;
  color:var(--muted);
  transition:max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a{ max-height:300px; padding:0 24px 22px; }
.faq-item.open .faq-arrow{ transform:rotate(45deg); background:var(--gold-dim); }

/* ═══ CTA BANNER ═══ */
.cta-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  background:linear-gradient(120deg, #15130c, #0c0b08);
  border:1px solid var(--border);
  border-radius:20px;
  padding:56px 50px;
}
.cta-text h2{
  font-size:clamp(26px, 3.4vw, 36px);
  line-height:1.2;
  margin-bottom:12px;
}
.cta-text p{
  font-size:14.5px;
  color:var(--muted);
  max-width:440px;
  line-height:1.7;
}
.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width:700px){
  .cta-banner{ padding:38px 26px; flex-direction:column; align-items:flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   SITEWIDE ANIMATION SYSTEM
   - Hero entrance: fades in the badge/subtitle/buttons on every
     page (uses tag-based sibling selectors so it works on every
     page's differently-named hero classes without per-page edits).
     The H1 itself is deliberately left untouched so it paints
     instantly — protects LCP on every page.
   - Pulsing hero badge dot.
   - Image zoom-on-hover for card thumbnails.
   - Scroll-reveal for below-the-fold content (paired with the
     shared IntersectionObserver in footer.php).
   - Respects prefers-reduced-motion via the existing global rule
     above (animation-duration/transition-duration forced to ~0).
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeUpIn{
  from{ opacity:0; transform:translateY(14px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes dotPulse{
  0%, 100%{ box-shadow:0 0 10px 2px var(--gold); opacity:1; }
  50%{ box-shadow:0 0 16px 5px var(--gold); opacity:.7; }
}

.hero-badge, .bt-pill{ animation:fadeUpIn .4s ease both; }
.hero-badge ~ p, .bt-pill ~ p,
.hero-badge ~ .hero-sub, .hero-badge ~ .bt-hero-sub{ animation:fadeUpIn .45s ease .08s both; }
.hero-badge ~ div, .bt-pill ~ div{ animation:fadeUpIn .45s ease .16s both; }
.hero-badge span{ animation:dotPulse 2.2s ease-in-out infinite; }

/* Image zoom-on-hover — container already has overflow:hidden site-wide */
.prop-image, .blog-list-image, .blog-image, .cw-card-image,
.bt-hero-img, .bt-gallery-main, .bt-gallery-side-item, .cp-featured-card{
  overflow:hidden;
}
.prop-image img, .blog-list-image img, .blog-image img, .cw-card-image img,
.bt-hero-img img, .bt-gallery-main img, .bt-gallery-side-item img, .cp-featured-card img{
  transition:transform .5s ease;
}
.property-card:hover .prop-image img,
.blog-list-card:hover .blog-list-image img,
.blog-card:hover .blog-image img,
.cw-card:hover .cw-card-image img,
.bt-hero-img:hover img, .bt-gallery-main:hover img, .bt-gallery-side-item:hover img,
.cp-featured-card:hover img{
  transform:scale(1.08);
}

/* Button shine-sweep on hover */
.btn-hero-primary, .bt-btn-gold, .nav-cta{
  position:relative;
  overflow:hidden;
}
.btn-hero-primary::before, .bt-btn-gold::before, .nav-cta::before{
  content:'';
  position:absolute; top:0; left:-120%;
  width:60%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg);
  transition:left .55s ease;
}
.btn-hero-primary:hover::before, .bt-btn-gold:hover::before, .nav-cta:hover::before{ left:130%; }

/* FAQ question hover feedback */
.faq-q{ transition:background .2s ease; }
.faq-q:hover{ background:rgba(201,168,76,.06); }

/* Scroll-reveal (class added by shared JS in footer.php) */
.reveal-el{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal-el.is-visible{
  opacity:1;
  transform:translateY(0);
}