/* =========================================================
   APPROVED CREST REALTY COLOR SYSTEM
   Deep Aubergine        #24141F
   Plum Black            #170F16
   Antique Champagne Gold #B9985A
   Limestone Ivory       #F3EEE5
   Soft Taupe            #A89E95
   ========================================================= */

/* =========================================================
   STALLION CREST REALTY LLC
   Refined Living, Rooted in Trust.
   Premium Dubai Real Estate — Custom CSS
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Root Variables ---------- */
:root{
  /* Crest Realty Luxury Palette */
  --deep-aubergine:#24141F;
  --plum-black:#170F16;
  --antique-gold:#B9985A;
  --limestone-ivory:#F3EEE5;
  --soft-taupe:#A89E95;

  /* Existing variable aliases mapped to the approved palette */
  --white:#F3EEE5;
  --offwhite:#F3EEE5;
  --light-grey:#F3EEE5;
  --border-grey:#A89E95;
  --charcoal:#24141F;
  --dark:#170F16;
  --luxury-black:#170F16;
  --gold:#B9985A;
  --gold-lux:#B9985A;
  --champagne:#B9985A;

  --heading:'Cormorant Garamond', Georgia, serif;
  --body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:4px;
  --shadow-sm:0 4px 14px rgba(23,15,22,0.07);
  --shadow-md:0 18px 50px rgba(23,15,22,0.13);
  --ease:cubic-bezier(.2,.7,.2,1);
}



/* =====================================
   PROPERTIES DROPDOWN
===================================== */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}


/* Dropdown Box */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 180px;

  background: #170F16;
  border: 1px solid rgba(185, 152, 90, 0.35);

  padding: 8px;

  border-radius: 6px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

  z-index: 9999;
}


/* invisible bridge so dropdown doesn't disappear */
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}


/* Show Dropdown */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}


/* Dropdown Link */
.dropdown-menu a {
  display: block;

  padding: 12px 15px;

  color: #F3EEE5 !important;

  font-size: 14px;

  border-radius: 4px;

  transition: all 0.25s ease;
}

.dropdown-menu a:hover {
  background: #B9985A;
  color: #170F16 !important;
}


/* =====================================
   MOBILE PROPERTIES SUB LINKS
===================================== */

.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown .mobile-parent-link {
  padding-bottom: 8px;
}

.mobile-sub-link {
  position: relative;

  margin-left: 18px;
  padding: 8px 15px 12px 20px !important;

  font-size: 14px !important;

  color: #A89E95 !important;

  border-left: 1px solid rgba(185, 152, 90, 0.5);
}

.mobile-sub-link::before {
  content: "";
  position: absolute;

  width: 6px;
  height: 6px;

  background: #B9985A;

  border-radius: 50%;

  left: -3.5px;
  top: 15px;
}

.mobile-sub-link:hover {
  color: #B9985A !important;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--body);
  color:var(--dark);
  background:var(--limestone-ivory);
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none}
ul{list-style:none}
h1,h2,h3,h4{font-family:var(--heading);font-weight:500;color:var(--deep-aubergine);line-height:1.15;letter-spacing:-.01em}
h1{font-size:clamp(2.4rem,5.5vw,4.6rem)}
h2{font-size:clamp(2rem,4vw,3.4rem)}
h3{font-size:clamp(1.4rem,2.2vw,1.9rem)}
p{color:var(--soft-taupe);font-size:1rem}

/* ---------- Layout Helpers ---------- */
.container{width:100%;max-width:1280px;margin:0 auto;padding:0 28px}
.section{padding:110px 0}
.section-sm{padding:70px 0}
.eyebrow{
  display:inline-block;
  font-family:var(--body);
  font-size:.72rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:18px;
  position:relative;
  padding-left:52px;
}
.eyebrow::before{
  content:"";
  position:absolute;left:0;top:50%;
  width:36px;height:1px;background:var(--gold);
}
.center{text-align:center}
.gold{color:var(--gold)}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 30px;
  font-size:.82rem;letter-spacing:.18em;text-transform:uppercase;
  font-weight:600;
  border-radius:2px;
  transition:all .4s var(--ease);
  position:relative;overflow:hidden;
  cursor:pointer;white-space:nowrap;
}
.btn svg{width:14px;height:14px;transition:transform .4s var(--ease)}
.btn:hover svg{transform:translateX(4px)}

.btn-primary{background:var(--antique-gold);color:var(--plum-black);border:1px solid var(--antique-gold)}
.btn-primary:hover{background:var(--plum-black);color:var(--limestone-ivory);border-color:var(--antique-gold)}

.btn-secondary{background:transparent;color:var(--plum-black);border:1px solid var(--antique-gold)}
.btn-secondary:hover{background:var(--plum-black);color:var(--limestone-ivory);border-color:var(--antique-gold)}

.btn-dark-gold{background:var(--antique-gold);color:var(--plum-black);border:1px solid var(--antique-gold)}
.btn-dark-gold:hover{background:var(--limestone-ivory);color:var(--plum-black);border-color:var(--antique-gold)}

.btn-ghost-light{background:transparent;color:var(--limestone-ivory);border:1px solid var(--antique-gold)}
.btn-ghost-light:hover{background:var(--antique-gold);color:var(--plum-black);border-color:var(--antique-gold)}

.btn-whatsapp{background:var(--deep-aubergine);color:var(--limestone-ivory);border:1px solid var(--antique-gold)}
.btn-whatsapp:hover{background:var(--plum-black);border-color:var(--antique-gold);color:var(--antique-gold)}

.btn-lg{padding:18px 38px;font-size:.85rem}

/* ---------- Navbar ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  background:var(--plum-black);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;
  transition:all .35s var(--ease);
}
.nav.scrolled{
  background:var(--plum-black);
  border-bottom-color:rgba(185,152,90,.25);
  box-shadow:0 4px 24px rgba(23,15,22,.18);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 28px;
  max-width:1400px;margin:0 auto;
}
/* =========================
   STALLION CREST LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 115px;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}


/* Tablet */
@media (max-width: 991px) {
  .logo-img {
    height: 100px;
    max-width: 250px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 88px;
    max-width: 220px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {
  .logo-img {
    height: 80px;
    max-width: 200px;
  }
}
.nav-links{display:flex;align-items:center;gap:34px}
.nav-links a{
  font-size:.78rem;font-weight:500;letter-spacing:.16em;
  text-transform:uppercase;color:var(--limestone-ivory);
  position:relative;padding:6px 0;
  transition:color .3s var(--ease);
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:0;
  width:0;height:1px;background:var(--gold);
  transition:width .4s var(--ease);
}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a.active{color:var(--antique-gold)}
.nav-cta{margin-left:10px}

.hamburger{
  display:none;width:44px;height:44px;
  position:relative;z-index:1001;
}
.hamburger span{
  position:absolute;left:10px;right:10px;height:1.5px;
  background:var(--antique-gold);
  transition:transform .4s var(--ease),top .4s var(--ease),opacity .3s;
}
.hamburger span:nth-child(1){top:16px}
.hamburger span:nth-child(2){top:22px}
.hamburger span:nth-child(3){top:28px}
.hamburger.open span:nth-child(1){top:22px;transform:rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){top:22px;transform:rotate(-45deg)}

/* Mobile drawer */
.mobile-menu{
  position:fixed;top:0;right:0;bottom:0;
  width:min(420px,100%);
  background:var(--plum-black);
  z-index:950;
  transform:translateX(100%);
  transition:transform .5s var(--ease);
  display:flex;flex-direction:column;
  padding:100px 40px 40px;
  overflow-y:auto;
  box-shadow:-20px 0 60px rgba(23,15,22,.15);
}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu a{
  font-family:var(--heading);
  font-size:1.8rem;color:var(--limestone-ivory);
  padding:14px 0;border-bottom:1px solid rgba(185,152,90,.22);
  transition:color .3s,padding-left .3s;
}
.mobile-menu a:hover{color:var(--gold);padding-left:10px}
.mobile-menu .mob-cta{display:flex;flex-direction:column;gap:12px;margin-top:30px}
.mobile-menu .mob-cta .btn{justify-content:center}
.mobile-menu .mob-contact{margin-top:30px;font-size:.85rem;color:var(--soft-taupe);line-height:1.9}
.mobile-menu .mob-contact a{display:inline;font-family:var(--body);font-size:.85rem;border:0;padding:0}
.overlay{
  position:fixed;inset:0;background:rgba(23,15,22,.40);
  opacity:0;pointer-events:none;transition:opacity .4s;z-index:940;
}
.overlay.show{opacity:1;pointer-events:auto}

/* ---------- HERO ---------- */
.hero{
  position:relative;min-height:92vh;
  display:flex;align-items:center;
  color:var(--limestone-ivory);overflow:hidden;
  padding-top:90px;
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transform:scale(1.05);
  animation:heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom{to{transform:scale(1)}}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(23,15,22,.88) 0%,rgba(23,15,22,.68) 50%,rgba(23,15,22,.45) 100%);
  z-index:1;
}
.hero-inner{position:relative;z-index:2;width:100%;padding:60px 0}
.hero h1{color:var(--limestone-ivory);max-width:860px;font-weight:500;letter-spacing:-.015em}
.hero h1 em{font-style:italic;color:var(--antique-gold);font-weight:400}
.hero-sub{
  max-width:620px;font-size:1.08rem;color:var(--soft-taupe);
  margin:28px 0 38px;line-height:1.75;
}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:42px}
.hero-trust{
  display:flex;gap:32px;flex-wrap:wrap;
  padding-top:30px;border-top:1px solid rgba(243,238,229,.15);
  max-width:620px;
}
.hero-trust li{
  font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--soft-taupe);display:flex;align-items:center;gap:10px;
}
.hero-trust li::before{
  content:"";width:6px;height:6px;background:var(--gold);display:inline-block;
}
.scroll-ind{
  position:absolute;bottom:34px;left:50%;transform:translateX(-50%);
  z-index:2;color:var(--soft-taupe);font-size:.7rem;
  letter-spacing:.3em;text-transform:uppercase;text-align:center;
}
.scroll-ind::after{
  content:"";display:block;width:1px;height:40px;margin:12px auto 0;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ---------- Quick Action ---------- */
.quick-action{padding:90px 0;background:var(--limestone-ivory)}
.qa-head{text-align:center;margin-bottom:60px}
.qa-head h2{margin-bottom:14px}
.qa-head p{color:var(--soft-taupe);max-width:560px;margin:0 auto}
.qa-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.qa-card{
  background:var(--limestone-ivory);border:1px solid var(--border-grey);
  padding:48px 36px;text-align:center;
  transition:all .45s var(--ease);
  position:relative;overflow:hidden;
}
.qa-card::before{
  content:"";position:absolute;left:0;top:0;width:100%;height:2px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;
  transition:transform .5s var(--ease);
}
.qa-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent}
.qa-card:hover::before{transform:scaleX(1)}
.qa-icon{
  width:64px;height:64px;margin:0 auto 24px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.qa-icon svg{width:42px;height:42px;stroke-width:1.3}
.qa-card h3{margin-bottom:12px;font-size:1.55rem}
.qa-card p{color:var(--soft-taupe);font-size:.95rem;margin-bottom:26px}

/* ---------- About Preview split ---------- */
.about-prev{padding:120px 0;background:var(--limestone-ivory)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.about-img{position:relative;overflow:hidden}
.about-img img{width:100%;aspect-ratio:4/5;object-fit:cover;transition:transform 1.2s var(--ease)}
.about-img:hover img{transform:scale(1.04)}
.about-img .badge{
  position:absolute;bottom:30px;left:30px;
  background:var(--deep-aubergine);color:var(--limestone-ivory);
  padding:18px 26px;font-family:var(--heading);font-size:1rem;
  letter-spacing:.1em;
}
.about-img .badge span{color:var(--gold)}
.about-content h2{margin-bottom:24px}
.about-content p{margin-bottom:18px;color:var(--soft-taupe)}
.about-points{margin:28px 0 36px;display:grid;grid-template-columns:1fr 1fr;gap:10px 24px}
.about-points li{
  display:flex;align-items:center;gap:10px;
  font-size:.92rem;color:var(--soft-taupe);
}
.about-points li::before{
  content:"";width:18px;height:1px;background:var(--gold);
}

/* ---------- Properties Showcase ---------- */
.showcase{padding:120px 0;background:var(--limestone-ivory)}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:60px;gap:30px;flex-wrap:wrap}
.sec-head h2{max-width:620px}
.sec-head p{color:var(--soft-taupe);max-width:420px;margin-top:10px}
.prop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.prop-card{
  background:var(--limestone-ivory);border:1px solid var(--border-grey);
  transition:all .45s var(--ease);overflow:hidden;
  position:relative;
}
.prop-card:hover{border-color:var(--gold);box-shadow:var(--shadow-md);transform:translateY(-4px)}
.prop-img{position:relative;aspect-ratio:4/3;overflow:hidden}
.prop-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.prop-card:hover .prop-img img{transform:scale(1.06)}
.prop-status{
  position:absolute;top:16px;left:16px;
  background:var(--deep-aubergine);color:var(--limestone-ivory);
  padding:6px 14px;font-size:.68rem;letter-spacing:.2em;
  text-transform:uppercase;
}
.prop-status.sample{background:var(--antique-gold);color:var(--plum-black)}
.prop-body{padding:24px 26px 26px}
.prop-loc{
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:8px;
  display:flex;align-items:center;gap:6px;
}
.prop-loc svg{width:12px;height:12px}
.prop-card h3{font-size:1.35rem;margin-bottom:10px;line-height:1.25}
.prop-meta{
  display:flex;gap:16px;padding:14px 0;margin:14px 0;
  border-top:1px solid var(--border-grey);border-bottom:1px solid var(--border-grey);
  font-size:.82rem;color:var(--soft-taupe);
}
.prop-meta span{display:flex;align-items:center;gap:6px}
.prop-meta svg{width:14px;height:14px;color:var(--gold)}
.prop-foot{display:flex;justify-content:space-between;align-items:center;margin-top:14px}
.prop-price{font-family:var(--heading);font-size:1.45rem;color:var(--luxury-black);font-weight:600}
.prop-price small{display:block;font-family:var(--body);font-size:.7rem;color:var(--soft-taupe);letter-spacing:.1em;text-transform:uppercase;font-weight:500}
.prop-enquire{
  font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--dark);font-weight:600;display:inline-flex;align-items:center;gap:8px;
  transition:color .3s,gap .3s;
}
.prop-enquire:hover{color:var(--gold);gap:14px}
.prop-enquire svg{width:14px;height:14px}

/* ---------- Live Property Portals ---------- */
.portal-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px}
.portal-card{
  background:var(--limestone-ivory);border:1px solid var(--border-grey);
  padding:26px;transition:all .45s var(--ease);overflow:hidden;
}
.portal-card:hover{border-color:var(--gold);box-shadow:var(--shadow-md);transform:translateY(-4px)}
.portal-profile{display:grid;grid-template-columns:130px 1fr;gap:24px;align-items:center;margin-bottom:26px}
.portal-profile img{
  width:130px;height:160px;object-fit:cover;object-position:center top;
  display:block;border:1px solid rgba(185,152,90,.35)
}
.portal-profile .eyebrow{margin-bottom:8px}
.portal-profile h3{font-size:1.8rem;line-height:1.15;margin-bottom:8px}
.portal-profile p{color:var(--soft-taupe);font-size:.9rem;line-height:1.65}
.portal-links{display:grid;gap:10px}
.portal-link{
  display:grid;grid-template-columns:42px 1fr 18px;gap:14px;align-items:center;
  min-height:68px;padding:12px 16px;border:1px solid var(--border-grey);
  background:rgba(255,255,255,.35);transition:all .3s var(--ease)
}
.portal-link:hover{border-color:var(--gold);background:var(--limestone-ivory);transform:translateX(4px)}
.portal-mark{
  width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  background:var(--deep-aubergine);color:var(--gold);font-size:.72rem;
  font-weight:700;letter-spacing:.08em;border-radius:50%
}
.portal-link strong{display:block;color:var(--luxury-black);font-size:.94rem}
.portal-link small{display:block;color:var(--soft-taupe);font-size:.72rem;margin-top:2px}
.portal-link svg{width:18px;height:18px;color:var(--gold);transition:transform .3s var(--ease)}
.portal-link:hover svg{transform:translateX(3px)}

/* ---------- Buying Process ---------- */
.buying{padding:120px 0;background:var(--limestone-ivory)}
.buy-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:80px;align-items:center}
.buy-content h2{margin-bottom:20px}
.buy-content p{color:var(--soft-taupe);margin-bottom:30px}
.timeline{margin-top:50px;display:grid;grid-template-columns:1fr 1fr;gap:36px}
.tl-item{position:relative;padding-top:18px;border-top:1px solid var(--border-grey)}
.tl-num{
  font-family:var(--heading);font-size:2.6rem;color:var(--gold);
  font-weight:500;line-height:1;margin-bottom:8px;
}
.tl-item h4{font-family:var(--heading);font-size:1.3rem;margin-bottom:6px;color:var(--luxury-black)}
.tl-item p{font-size:.88rem;color:var(--soft-taupe)}
.buy-visual{position:relative;aspect-ratio:4/5;overflow:hidden}
.buy-visual img{width:100%;height:100%;object-fit:cover}

/* ---------- Selling ---------- */
.selling{padding:120px 0;background:var(--limestone-ivory)}
.sell-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:80px;align-items:center}
.sell-visual{position:relative;aspect-ratio:4/5;overflow:hidden}
.sell-visual img{width:100%;height:100%;object-fit:cover}
.sell-features{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:34px 0}
.sf-item{padding:22px;border:1px solid var(--border-grey);transition:all .35s var(--ease)}
.sf-item:hover{border-color:var(--gold);background:var(--offwhite)}
.sf-item svg{width:24px;height:24px;color:var(--gold);margin-bottom:10px;stroke-width:1.4}
.sf-item h4{font-family:var(--heading);font-size:1.1rem;color:var(--luxury-black);margin-bottom:4px}
.sf-item p{font-size:.82rem;color:var(--soft-taupe)}

/* ---------- Why Choose (dark) ---------- */
.why{padding:130px 0;background:var(--deep-aubergine);color:var(--limestone-ivory);position:relative;overflow:hidden}
.why::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 20%,rgba(185,152,90,.08),transparent 50%),
             radial-gradient(circle at 80% 80%,rgba(185,152,90,.06),transparent 50%);
  pointer-events:none;
}
.why .container{position:relative;z-index:1}
.why .sec-head h2,.why h2{color:var(--limestone-ivory)}
.why .eyebrow{color:var(--gold-lux)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:20px}
.why-card{
  padding:40px 32px;border:1px solid rgba(243,238,229,.08);
  background:rgba(243,238,229,.02);
  transition:all .45s var(--ease);
}
.why-card:hover{border-color:var(--gold);background:rgba(185,152,90,.04);transform:translateY(-4px)}
.why-card svg{width:34px;height:34px;color:var(--gold);margin-bottom:20px;stroke-width:1.2}
.why-card h3{color:var(--limestone-ivory);font-size:1.4rem;margin-bottom:10px}
.why-card p{color:var(--soft-taupe);font-size:.92rem}

/* ---------- Destinations ---------- */
.destinations{padding:120px 0;background:var(--limestone-ivory)}
.dest-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:280px;gap:20px}
.dest-card{
  position:relative;overflow:hidden;cursor:pointer;
  background:var(--plum-black);
}
.dest-card.tall{grid-row:span 2}
.dest-card img{width:100%;height:100%;object-fit:cover;transition:transform .9s var(--ease),opacity .4s;opacity:.85}
.dest-card:hover img{transform:scale(1.08);opacity:.7}
.dest-card::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(23,15,22,.88) 0%,rgba(23,15,22,.25) 60%,transparent 100%);
}
.dest-body{
  position:absolute;left:26px;right:26px;bottom:24px;z-index:2;
  color:var(--white);
}
.dest-body h3{color:var(--limestone-ivory);font-size:1.5rem;margin-bottom:6px}
.dest-body span{
  font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;
  color:var(--gold);display:inline-flex;align-items:center;gap:8px;
  transition:gap .4s;
}
.dest-card:hover .dest-body span{gap:14px}
.dest-body span svg{width:12px;height:12px}

/* ---------- Stats / Credentials ---------- */
.stats{padding:100px 0;background:var(--limestone-ivory);border-top:1px solid var(--border-grey);border-bottom:1px solid var(--border-grey)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;text-align:center}
.stat-item{padding:20px}
.stat-num{
  font-family:var(--heading);font-size:clamp(2rem,4vw,3.4rem);
  color:var(--luxury-black);font-weight:500;line-height:1;margin-bottom:10px;
}
.stat-num .gold-accent{color:var(--gold)}
.stat-label{
  font-size:.72rem;letter-spacing:.3em;text-transform:uppercase;
  color:var(--soft-taupe);font-weight:600;
}

/* ---------- Experience Banner ---------- */
.experience{
  position:relative;padding:140px 0;
  background-size:cover;background-position:center;
  color:var(--white);text-align:center;
  background-attachment:fixed;
}
.experience::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(23,15,22,.82),rgba(23,15,22,.66));
}
.experience .container{position:relative;z-index:1;max-width:900px}
.experience h2{color:var(--limestone-ivory);margin-bottom:22px}
.experience p{color:rgba(243,238,229,.82);font-size:1.08rem;margin-bottom:38px;max-width:680px;margin-left:auto;margin-right:auto}

/* ---------- FAQ ---------- */
.faq{padding:120px 0;background:var(--limestone-ivory)}
.faq-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:80px;align-items:flex-start}
.faq-left h2{margin-bottom:20px}
.faq-left p{color:var(--soft-taupe);margin-bottom:28px}
.faq-item{
  border-bottom:1px solid var(--border-grey);
  padding:22px 0;cursor:pointer;
}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:20px;
  font-family:var(--heading);font-size:1.25rem;color:var(--luxury-black);
}
.faq-q .plus{
  width:22px;height:22px;position:relative;flex-shrink:0;
  transition:transform .35s var(--ease);
}
.faq-q .plus::before,.faq-q .plus::after{
  content:"";position:absolute;background:var(--gold);
  left:50%;top:50%;transform:translate(-50%,-50%);
  transition:transform .35s var(--ease);
}
.faq-q .plus::before{width:14px;height:1px}
.faq-q .plus::after{width:1px;height:14px}
.faq-item.open .faq-q .plus::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item.open .faq-q{color:var(--gold)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .45s var(--ease);
  color:var(--soft-taupe);font-size:.95rem;
}
.faq-a-inner{padding-top:14px}

/* ---------- Final CTA ---------- */
.final-cta{
  padding:140px 0;color:var(--white);
  background-size:cover;background-position:center;
  position:relative;text-align:center;
}
.final-cta::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(23,15,22,.86),rgba(23,15,22,.92));
}
.final-cta .container{position:relative;z-index:1;max-width:820px}
.final-cta h2{color:var(--limestone-ivory);margin-bottom:18px}
.final-cta p{color:rgba(243,238,229,.78);font-size:1.08rem;margin-bottom:40px}
.final-cta .btn-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* ---------- Footer ---------- */
footer{background:var(--plum-black);color:var(--limestone-ivory);padding:90px 0 0}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:50px;padding-bottom:60px}
.foot-brand .logo-text .brand{color:var(--limestone-ivory)}
.foot-tag{margin-top:20px;color:var(--soft-taupe);font-size:.95rem;max-width:320px;font-family:var(--heading);font-style:italic}
.foot h4{
  font-family:var(--body);font-size:.75rem;letter-spacing:.28em;
  text-transform:uppercase;color:var(--gold);font-weight:600;
  margin-bottom:22px;
}
.foot ul li{margin-bottom:12px}
.foot ul li a{font-size:.92rem;color:var(--soft-taupe);transition:color .3s,padding-left .3s;display:inline-block}
.foot ul li a:hover{color:var(--gold);padding-left:6px}
.foot .contact-line{display:flex;gap:12px;align-items:flex-start;margin-bottom:14px;font-size:.9rem;color:var(--soft-taupe)}
.foot .contact-line svg{width:16px;height:16px;color:var(--gold);flex-shrink:0;margin-top:4px}
.foot .cred-line{font-size:.88rem;color:var(--soft-taupe);margin-bottom:10px}
.foot .cred-line strong{color:var(--limestone-ivory);font-weight:500;margin-right:6px}
.foot-bottom{
  border-top:1px solid rgba(243,238,229,.08);
  padding:24px 0;display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:16px;font-size:.82rem;
  color:var(--soft-taupe);
}
.foot-bottom a:hover{color:var(--gold)}

/* ---------- Floating WhatsApp ---------- */
.wa-float{
  position:fixed;bottom:28px;right:28px;z-index:800;
  width:60px;height:60px;border-radius:50%;
  background:var(--deep-aubergine);color:var(--limestone-ivory);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px rgba(23,15,22,.28);
  transition:transform .3s var(--ease);
}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:30px;height:30px}
.wa-float::before{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:var(--antique-gold);opacity:.32;
  animation:waPulse 2s var(--ease) infinite;z-index:-1;
}
@keyframes waPulse{
  0%{transform:scale(1);opacity:.5}
  100%{transform:scale(1.6);opacity:0}
}
.wa-float .tip{
  position:absolute;right:70px;top:50%;transform:translateY(-50%);
  background:var(--plum-black);color:var(--limestone-ivory);padding:8px 14px;
  font-size:.75rem;letter-spacing:.1em;white-space:nowrap;
  opacity:0;pointer-events:none;transition:opacity .3s;
}
.wa-float:hover .tip{opacity:1}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero{
  padding:200px 0 100px;
  background:var(--deep-aubergine);color:var(--limestone-ivory);
  position:relative;text-align:center;overflow:hidden;
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background-size:cover;background-position:center;opacity:.25;
}
.page-hero .container{position:relative;z-index:1}
.page-hero h1{color:var(--limestone-ivory);max-width:880px;margin:0 auto}
.page-hero p{color:var(--soft-taupe);max-width:620px;margin:22px auto 0;font-size:1.05rem}
.breadcrumb{
  display:flex;justify-content:center;gap:10px;align-items:center;
  margin-bottom:24px;font-size:.78rem;letter-spacing:.22em;
  text-transform:uppercase;color:var(--soft-taupe);
}
.breadcrumb a{color:var(--gold)}
.breadcrumb span{color:rgba(243,238,229,.40)}

/* ---------- About page ---------- */
.about-intro{padding:120px 0;background:var(--limestone-ivory)}
.about-intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.values{padding:110px 0;background:var(--limestone-ivory)}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px}
.value-card{
  background:var(--limestone-ivory);padding:40px 32px;
  border:1px solid var(--border-grey);transition:all .4s var(--ease);
}
.value-card:hover{border-color:var(--gold);transform:translateY(-4px);box-shadow:var(--shadow-sm)}
.value-card .v-num{
  font-family:var(--heading);font-size:1.5rem;color:var(--gold);
  margin-bottom:14px;display:block;
}
.value-card h3{font-size:1.35rem;margin-bottom:10px}
.value-card p{font-size:.92rem;color:var(--soft-taupe)}

/* ---------- Buy/Sell feature sections ---------- */
.feature-section{padding:110px 0}
.feature-section.alt{background:var(--limestone-ivory)}
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.feature-grid.reverse .feat-visual{order:2}
.feat-visual{position:relative;aspect-ratio:5/6;overflow:hidden}
.feat-visual img{width:100%;height:100%;object-fit:cover}
.feat-list{margin-top:24px}
.feat-list li{
  display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--border-grey);
}
.feat-list li:last-child{border-bottom:0}
.feat-list .fl-icon{
  width:44px;height:44px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--offwhite);color:var(--gold);border-radius:50%;
}
.feat-list .fl-icon svg{width:20px;height:20px}
.feat-list h4{font-family:var(--heading);font-size:1.15rem;color:var(--luxury-black);margin-bottom:4px}
.feat-list p{font-size:.9rem;color:var(--soft-taupe)}

/* ---------- Properties page ---------- */
.filter-bar{
  padding:30px;background:var(--limestone-ivory);
  border:1px solid var(--border-grey);
  margin-bottom:50px;
  display:grid;grid-template-columns:repeat(5,1fr) auto;gap:14px;align-items:end;
}
.filter-bar .field{display:flex;flex-direction:column;gap:6px}
.filter-bar label{
  font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--soft-taupe);font-weight:600;
}
.filter-bar select,.filter-bar input{
  padding:12px 14px;border:1px solid var(--border-grey);
  background:var(--limestone-ivory);font-family:inherit;font-size:.9rem;
  color:var(--dark);transition:border-color .3s;
  border-radius:2px;appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23C9A24A' d='M5 6L0 0h10z'/></svg>");
  background-repeat:no-repeat;background-position:right 14px center;
  padding-right:36px;
}
.filter-bar input{background-image:none;padding-right:14px}
.filter-bar select:focus,.filter-bar input:focus{outline:0;border-color:var(--gold)}

/* ---------- Contact ---------- */
.contact-split{padding:120px 0;background:var(--limestone-ivory)}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:70px;align-items:flex-start}
.contact-info h2{margin-bottom:20px}
.contact-info > p{color:var(--soft-taupe);margin-bottom:34px}
.ci-block{margin-bottom:26px;padding-bottom:26px;border-bottom:1px solid var(--border-grey)}
.ci-block:last-child{border-bottom:0}
.ci-block .ci-label{
  font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:8px;
}
.ci-block .ci-val{font-size:1.05rem;color:var(--luxury-black);font-weight:500}
.ci-block .ci-val a{transition:color .3s}
.ci-block .ci-val a:hover{color:var(--gold)}

.contact-form{
  background:var(--limestone-ivory);padding:46px;
  border:1px solid var(--border-grey);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-field{margin-bottom:18px;display:flex;flex-direction:column}
.form-field label{
  font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--soft-taupe);font-weight:600;margin-bottom:8px;
}
.form-field input,.form-field select,.form-field textarea{
  padding:14px 16px;border:1px solid var(--border-grey);
  background:var(--limestone-ivory);font-family:inherit;font-size:.95rem;
  color:var(--dark);transition:border-color .3s;
  border-radius:2px;
}
.form-field textarea{min-height:130px;resize:vertical}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  outline:0;border-color:var(--gold);
}
.form-field .err{color:#c23;font-size:.78rem;margin-top:6px;display:none}
.form-field.has-err input,.form-field.has-err select,.form-field.has-err textarea{border-color:#c23}
.form-field.has-err .err{display:block}

/* ---------- Privacy ---------- */
.privacy{padding:120px 0;background:var(--limestone-ivory)}
.privacy .container{max-width:880px}
.privacy h2{margin:40px 0 14px;font-size:1.7rem}
.privacy h2:first-of-type{margin-top:20px}
.privacy p{color:var(--soft-taupe);margin-bottom:14px}
.privacy ul{margin:10px 0 18px 20px;list-style:disc}
.privacy ul li{color:var(--soft-taupe);margin-bottom:6px}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}

/* ---------- Hero reveal (first paint) ---------- */
.hero .rev{opacity:0;transform:translateY(22px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.hero .rev.in{opacity:1;transform:none}
.hero .rev-1{transition-delay:.15s}
.hero .rev-2{transition-delay:.35s}
.hero .rev-3{transition-delay:.55s}
.hero .rev-4{transition-delay:.75s}

/* ---------- Page transition ---------- */
.page-fade{position:fixed;inset:0;background:var(--limestone-ivory);z-index:9999;pointer-events:none;opacity:0;transition:opacity .3s}
.page-fade.show{opacity:1}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .nav-links{display:none}
  .hamburger{display:block}
  .qa-grid,.prop-grid,.why-grid,.values-grid{grid-template-columns:repeat(2,1fr)}
  .portal-profile{grid-template-columns:105px 1fr;gap:18px}
  .portal-profile img{width:105px;height:135px}
  .about-grid,.buy-grid,.sell-grid,.faq-grid,.about-intro-grid,.feature-grid,.contact-grid{grid-template-columns:1fr;gap:50px}
  .feature-grid.reverse .feat-visual{order:0}
  .dest-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:260px}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:40px}
  .foot-grid{grid-template-columns:1fr 1fr;gap:40px}
  .filter-bar{grid-template-columns:1fr 1fr;gap:12px}
  .section{padding:80px 0}
}
@media (max-width:640px){
  .qa-grid,.prop-grid,.why-grid,.values-grid,.dest-grid,.stats-grid,.portal-grid{grid-template-columns:1fr}
  .portal-card{padding:20px}
  .portal-profile{grid-template-columns:92px 1fr;gap:16px}
  .portal-profile img{width:92px;height:118px}
  .portal-profile h3{font-size:1.5rem}
  .portal-link{grid-template-columns:38px 1fr 16px;padding:10px 12px}
  .portal-mark{width:38px;height:38px}
  .dest-grid{grid-auto-rows:240px}
  .dest-card.tall{grid-row:span 1}
  .foot-grid{grid-template-columns:1fr}
  .filter-bar{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .contact-form{padding:30px 24px}
  .hero-trust{gap:16px}
  .hero-trust li{font-size:.7rem;letter-spacing:.12em}
  .hero{min-height:85vh}
  .timeline{grid-template-columns:1fr;gap:22px}
  .sell-features,.about-points{grid-template-columns:1fr}
  .sec-head{flex-direction:column;align-items:flex-start}
  .btn{padding:14px 24px;font-size:.76rem}
  .btn-lg{padding:16px 28px}
  .wa-float{width:54px;height:54px;bottom:20px;right:20px}
  .wa-float svg{width:26px;height:26px}
  .logo-mark{width:46px;height:46px}
  .logo-text .brand{font-size:1.05rem}
  .logo-text .sub{font-size:.56rem;letter-spacing:.28em}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .hero-bg{animation:none;transform:scale(1)}
}
