:root {
  --gold: #D4AF37;
  --deep-gold: #AA7A13;
  --soft-gold: #F2E0A6;
  --champagne: #FFF8E6;
  --navy: #0B1F33;
  --deep-navy: #071827;
  --teal: #0F766E;
  --soft-teal: #EAF6F3;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F8F3E7;
  --light: #F7F8FA;
  --border: #E7E8EC;
  --text: #243042;
  --muted: #6B7280;
  --shadow: 0 18px 48px rgba(11, 31, 51, .09);
  --shadow-soft: 0 10px 28px rgba(11, 31, 51, .065);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Jost, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.58;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.loading main { opacity: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; padding: 68px 0; overflow: hidden; }
.container { max-width: var(--container); }

.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--muted) !important; }
.bg-light-soft { background: var(--light); }
.bg-cream { background: var(--cream); }
.bg-champagne { background: var(--champagne); }
.bg-teal-soft { background: var(--soft-teal); }

.btn {
  border-radius: 10px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  font-size: .91rem;
  padding: 9px 16px;
  border-width: 1px;
  letter-spacing: -.005em;
  transition: transform .25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .25s ease, background .25s ease, color .25s ease, border .25s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::after {
  left: 150%;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-lg { min-height: 46px; padding: 10px 18px; font-size: .96rem; }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(212, 175, 55, .20);
}
.btn-gold:hover, .btn-gold:focus { background: var(--deep-gold); border-color: var(--deep-gold); color: var(--white); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-navy:hover, .btn-navy:focus { background: var(--deep-navy); border-color: var(--deep-navy); color: var(--gold); }
.btn-whatsapp { background: #25D366; border-color: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .18); }
.btn-whatsapp:hover, .btn-whatsapp:focus { background: #1DA851; border-color: #1DA851; color: #fff; }
.btn-outline-whatsapp { background: transparent; border-color: #25D366; color: #25D366; }
.btn-outline-whatsapp:hover, .btn-outline-whatsapp:focus { background: #25D366; border-color: #25D366; color: #fff; }
.btn-outline-gold { background: rgba(255,255,255,.88); border-color: rgba(212,175,55,.58); color: var(--navy); }
.btn-outline-gold:hover, .btn-outline-gold:focus { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.navbar .btn { white-space: nowrap; }

.navbar {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: all .35s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 18px 0;
}
.navbar.scrolled { 
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(7, 24, 39, 0.08); 
  background: rgba(255,255,255,0.96) !important;
}
.navbar-brand img { height: 48px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .navbar-brand img { height: 40px; }
.nav-link {
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px !important;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}
.nav-link:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 16px;
  right: 16px;
  bottom: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 2px;
}
.nav-link:hover:after, .nav-link.active:after { transform: scaleX(1); }
.navbar-toggler { border: 0; box-shadow: none !important; }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* layered overlay: navy vignette + gold glow + directional fade */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 10% 25%, rgba(212,175,55,.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 75%, rgba(15,118,110,.12) 0%, transparent 40%),
    linear-gradient(105deg,
      rgba(7,24,39,.92) 0%,
      rgba(7,24,39,.72) 42%,
      rgba(7,24,39,.30) 100%);
}
/* animated noise texture overlay for depth */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
/* floating gold particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: .45; }
  90%  { opacity: .25; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero .container { position: relative; z-index: 2; }

/* gold top accent line */
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--soft-gold), var(--gold), transparent);
  z-index: 10;
  opacity: .85;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.40);
  background: rgba(212,175,55,.10);
  backdrop-filter: blur(12px);
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

.hero h1 {
  font-family: Jost, Arial, sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 740px;
}
.hero h1 .gold-word {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 .gold-word:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--soft-gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn .6s ease .4s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.hero .lead {
  color: rgba(255,255,255,.82);
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), #c9a227);
  color: var(--navy);
  border: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(212,175,55,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(212,175,55,.50); color: var(--navy); }
.btn-hero-secondary {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.50); color: var(--white); transform: translateY(-2px); }

/* trust strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}
.hero-trust-item i { color: var(--gold); font-size: .9rem; }
.hero-trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,.18); }

/* hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 720px;
}
.hero-stat {
  border: 1px solid rgba(212,175,55,.20);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
  transition: background .2s ease, border-color .2s ease;
}
.hero-stat:hover { background: rgba(212,175,55,.10); border-color: rgba(212,175,55,.40); }
.hero-stat strong { display: block; color: var(--gold); font-size: 1.4rem; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.hero-stat span { display: block; color: rgba(255,255,255,.68); font-size: .72rem; line-height: 1.35; margin-top: 5px; font-weight: 500; }

/* slide dots */
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  align-items: center;
}
.hero-dot {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.30);
  cursor: pointer;
  transition: width .4s ease, background .4s ease;
  width: 20px;
}
.hero-dot.active { background: var(--gold); width: 36px; }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.50);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBob 2s ease infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* enquiry card */
.hero-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,.30);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--soft-gold), var(--gold));
}
.hero-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.hero-card-subtitle { font-size: .84rem; color: rgba(255,255,255,.62); margin-bottom: 20px; }
.hero-card .form-control,
.hero-card .form-select {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 10px;
}
.hero-card .form-control::placeholder { color: rgba(255,255,255,.40); }
.hero-card .form-control:focus,
.hero-card .form-select:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
.hero-card .form-select option { background: var(--navy); color: var(--white); }
.hero-card .form-label { color: rgba(255,255,255,.78); font-size: .80rem; font-weight: 600; margin-bottom: 5px; }
.hero-card-guarantee {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: .76rem;
  color: rgba(255,255,255,.50);
}
.hero-card-guarantee i { color: var(--gold); }

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero h1 { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-card { margin-top: 24px; }
}
@media (max-width: 575.98px) {
  .hero { padding-top: 100px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 11px 9px; }
  .hero-stat strong { font-size: 1.15rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
}



.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--deep-gold);
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: .66rem;
  padding: 6px 10px;
  margin-bottom: 12px;
}
.eyebrow:before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.section-title {
  font-family: Jost, Arial, sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.038em;
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
  line-height: 1.12;
  margin-bottom: 12px;
}
.section-subtitle { color: var(--muted); max-width: 700px; font-size: .98rem; line-height: 1.68; margin-bottom: 0; }
.section-center { text-align: center; max-width: 800px; margin: 0 auto 34px; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}
.marquee-wrap:before, .marquee-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap:before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.marquee-wrap:after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 40s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.partners-section {
  position: relative;
  background: #FAFAF7;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}
.partners-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.partners-section .marquee-wrap::before {
  background: linear-gradient(90deg, #FAFAF7 0%, transparent 100%);
  width: 200px;
  z-index: 5;
}
.partners-section .marquee-wrap::after {
  background: linear-gradient(270deg, #FAFAF7 0%, transparent 100%);
  width: 200px;
  z-index: 5;
}
.partner-card {
  flex: 0 0 auto;
  min-width: 260px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(255,255,255,1);
  padding: 15px 35px;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 
    0 10px 30px rgba(11,31,51,0.03),
    inset 0 2px 4px rgba(255,255,255,0.8),
    inset 0 -2px 5px rgba(11,31,51,0.02);
  cursor: pointer;
  z-index: 1;
}
.partner-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #D4AF37, #FFF8E6, #D4AF37);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(0.98);
}
.partner-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 
    0 40px 80px rgba(11,31,51,0.08),
    0 15px 35px rgba(212,175,55,0.15),
    inset 0 2px 4px rgba(255,255,255,1);
  z-index: 10;
}
.partner-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.partner-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.partner-card img {
  max-height: 55px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}
.partner-card:hover img {
  transform: scale(1.12);
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.15));
}

.partner-name {
  font-weight: 700;
  font-size: .90rem;
  letter-spacing: -.01em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.card-premium {
  position: relative;
  height: 100%;
  background: var(--white);
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11,31,51,0.05);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}
.card-premium:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(11,31,51,0.10); }
.card-premium:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--soft-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-premium:hover:before { opacity: 1; }
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.1);
}
.card-premium h3, .card-premium h4 { color: var(--navy); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.card-premium .h4 { font-size: 1.22rem; }
.card-premium p { color: var(--muted); margin-bottom: 0; font-size: .95rem; line-height: 1.6; }

.infographic-card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(11,31,51,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.infographic-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(11,31,51,0.12); }
.info-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(212,175,55,0.1);
}
.infographic-card h4 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.infographic-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; margin: 0; }
.info-chart-bg {
  position: absolute;
  right: -15px;
  bottom: -20px;
  font-size: 140px;
  opacity: 0.03;
  color: var(--navy);
  pointer-events: none;
  transform: rotate(-10deg);
}
.infographic-card.highlight { background: linear-gradient(135deg, var(--deep-navy), var(--navy)); color: var(--white); }
.infographic-card.highlight h4 { color: var(--white); }
.infographic-card.highlight p { color: rgba(255,255,255,0.7); }
.infographic-card.highlight .info-icon-wrap { background: rgba(255,255,255,0.08); color: var(--gold); box-shadow: none; }
.infographic-card.highlight .info-chart-bg { color: var(--white); opacity: 0.05; }
.info-tag {
  background: rgba(212,175,55,0.15);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
}
.infographic-card.highlight .info-tag {
  background: rgba(212,175,55,0.2);
  color: var(--gold);
  border-color: rgba(212,175,55,0.4);
}
.infographic-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-radius: 50%;
  z-index: 10;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(255, 248, 230, 1), 0 10px 30px rgba(212,175,55,0.4);
}

.property-card {
  border-radius: 20px;
  border: none;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(11,31,51,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  position: relative;
}
.property-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(11,31,51,0.12); }
.property-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  padding-bottom: 65%;
}
.property-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.property-card:hover .property-img { transform: scale(1.06); }
.property-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.02) 40%, rgba(11,31,51,0.85) 100%);
  pointer-events: none;
}
.property-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .70rem;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.property-tag i { color: var(--gold); }
.property-price {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(212,175,55,0.95);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.property-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.property-body h3 { color: var(--navy); font-weight: 800; letter-spacing: -.03em; font-size: 1.18rem; line-height: 1.35; margin-bottom: 8px; }
.property-location { font-size: .92rem; color: var(--muted); margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }
.property-location i { color: var(--gold); }
.property-meta-new {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px dashed rgba(11,31,51,.1);
  border-bottom: 1px dashed rgba(11,31,51,.1);
  margin-top: auto;
}
.meta-item { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--navy); font-weight: 600; }
.meta-item i { color: var(--gold); font-size: 1.05rem; }
.property-actions { display: flex; flex-direction: column; gap: 10px; }

.area-card {
  height: 100%;
  border: none;
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11,31,51,0.04);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.area-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(11,31,51,0.08); }
.area-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.area-card:hover:before { opacity: 1; }
.area-card h4 { color: var(--navy); font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; font-size: 1.15rem; }
.area-card p { font-size: .94rem; line-height: 1.6; color: var(--muted); margin-bottom: 20px; }
.area-tag { display: inline-flex; color: var(--navy); background: rgba(212,175,55,0.15); border-radius: 999px; padding: 6px 12px; font-weight: 700; font-size: .72rem; margin-bottom: 16px; border: 1px solid rgba(212,175,55,0.3); }

.split-card {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: var(--white);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 24px 64px rgba(11,31,51,0.25);
  overflow: hidden;
  position: relative;
}
.split-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(212,175,55,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.split-card .section-title { color: var(--white); }
.split-card .section-subtitle, .split-card p { color: rgba(255,255,255,.76); }
.split-card .card-premium { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); box-shadow: none; color: var(--white); backdrop-filter: blur(16px); }
.split-card .card-premium h3, .split-card .card-premium h4 { color: var(--white); }
.split-card .card-premium p { color: rgba(255,255,255,.74); }
.split-card .icon-box { background: rgba(255,255,255,0.1); color: var(--gold); box-shadow: none; }

.global-hub-wrapper {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  border-radius: 40px;
  padding: clamp(40px, 6vw, 80px) clamp(30px, 4vw, 50px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(7, 24, 39, 0.4);
}
.global-hub-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(212,175,55,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.global-hub-wrapper .section-title { color: var(--white); }
.global-hub-wrapper .section-subtitle { color: rgba(255,255,255,0.7); }
.global-orbit-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.15);
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}
.pulse-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.5);
  animation: radarPulse 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes radarPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.orbit-item {
  position: absolute;
  width: 250px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}
.orbit-item:hover {
  transform: scale(1.05) translateY(-10px) !important;
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.2);
  z-index: 20;
}
.orbit-item h4 { font-size: 1.05rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.orbit-item p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }

.orbit-item:nth-child(2) { top: -10%; left: -15%; transform: translate(0, 0); }
.orbit-item:nth-child(3) { top: -10%; right: -15%; transform: translate(0, 0); }
.orbit-item:nth-child(4) { bottom: -10%; left: -15%; transform: translate(0, 0); }
.orbit-item:nth-child(5) { bottom: -10%; right: -15%; transform: translate(0, 0); }

@media (max-width: 991.98px) {
  .global-orbit-container { display: flex; flex-direction: column; gap: 20px; border: none; aspect-ratio: auto; }
  .orbit-center { position: relative; top: 0; left: 0; transform: none; margin: 0 auto 30px; }
  .orbit-item { position: relative; top: auto !important; left: auto !important; right: auto !important; width: 100%; text-align: left !important; }
}
.split-card .icon-box { background: rgba(255,255,255,0.1); color: var(--gold); box-shadow: none; }

.note-box {
  background: rgba(212,175,55,.11);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 14px;
  padding: 13px 15px;
  color: var(--navy);
  font-weight: 600;
  font-size: .91rem;
}

.roi-highlight {
  background: linear-gradient(135deg, var(--navy), var(--deep-navy));
  color: var(--white);
  border-radius: 22px;
  padding: 28px;
  height: 100%;
  box-shadow: var(--shadow);
}
.roi-highlight strong { display: block; font-family: Jost, Arial, sans-serif; font-size: clamp(1.75rem, 3.2vw, 2.75rem); line-height: 1.03; color: var(--gold); letter-spacing: -.05em; margin-bottom: 10px; font-weight: 700; }
.roi-highlight p { color: rgba(255,255,255,.75); font-size: .93rem; }

.process-list { counter-reset: step; display: grid; gap: 14px; }
.process-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(11,31,51,.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process-item:hover { transform: translateX(4px); box-shadow: 0 12px 28px rgba(11,31,51,.08); }
.process-item:before {
  content: counter(step, decimal-leading-zero);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  color: var(--gold);
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 4px 12px rgba(212,175,55,0.1);
}
.process-item span { font-weight: 700; color: var(--navy); font-size: 1rem; }

.matcher-card {
  background: linear-gradient(135deg, #fff, var(--champagne));
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(212,175,55,0.12);
  padding: clamp(32px, 4vw, 48px);
}
textarea.form-control { min-height: 118px; resize: vertical; }
.form-control, .form-select {
  border-radius: 10px;
  border-color: var(--border);
  min-height: 43px;
  padding: 9px 12px;
  color: var(--text);
  font-size: .92rem;
  box-shadow: none !important;
}
.form-control:focus, .form-select:focus { border-color: var(--gold); }
.form-label { color: var(--navy); font-weight: 600; font-size: .82rem; margin-bottom: 6px; }
.invalid-feedback { font-size: .78rem; }

.accordion-item { border: 1px solid var(--border) !important; border-radius: 14px !important; overflow: hidden; margin-bottom: 10px; }
.accordion-button { font-weight: 700; color: var(--navy); box-shadow: none !important; padding: 15px 18px; font-size: .96rem; }
.accordion-button:not(.collapsed) { background: var(--champagne); color: var(--navy); }
.accordion-body { font-size: .93rem; color: var(--muted); }

footer {
  background: var(--navy);
  color: var(--white);
  padding: 58px 0 26px;
}

/* ── Rental Infographic ─────────────────────────── */
.roi-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2640 60%, #071827 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.roi-section:before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.roi-section:after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,.10), transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}
.roi-section .container { position: relative; z-index: 1; }

.roi-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.roi-gauge {
  position: relative;
  width: 200px; height: 200px;
}
.roi-gauge svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.roi-gauge-track { fill: none; stroke: rgba(255,255,255,.10); stroke-width: 14; }
.roi-gauge-bar {
  fill: none;
  stroke: url(#roiGrad);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1);
}
.roi-gauge-bar.animated { stroke-dashoffset: 100; }
.roi-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.roi-gauge-center strong {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.04em;
  line-height: 1;
}
.roi-gauge-center span {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.roi-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.roi-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  gap: 6px;
}
.roi-badge i { color: var(--gold); }

.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 10px 0 28px;
}
.flow-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: background .22s ease, border-color .22s ease;
}
.flow-step:hover { background: rgba(212,175,55,.10); border-color: rgba(212,175,55,.35); }
.flow-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.flow-step-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.flow-step h4 { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
.flow-step p { color: rgba(255,255,255,.62); font-size: .82rem; margin: 0; line-height: 1.5; }
.flow-arrow {
  font-size: 1.4rem;
  color: rgba(212,175,55,.5);
  text-align: center;
  padding: 0 8px;
}

.yield-bars { display: grid; gap: 11px; }
.yield-row {
  display: grid;
  grid-template-columns: 100px 1fr 52px;
  align-items: center;
  gap: 10px;
}
.yield-label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.82); }
.yield-track {
  height: 8px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
}
.yield-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #f5e7a0);
  width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.yield-val { font-size: .82rem; font-weight: 700; color: var(--gold); text-align: right; }

.roi-service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roi-service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 16px;
  transition: background .2s ease, border-color .2s ease;
}
.roi-service-card:hover { background: rgba(212,175,55,.09); border-color: rgba(212,175,55,.3); }
.roi-service-card .rsc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(212,175,55,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.roi-service-card h5 { color: var(--white); font-weight: 700; font-size: .92rem; margin-bottom: 5px; }
.roi-service-card p { color: rgba(255,255,255,.60); font-size: .80rem; margin: 0; line-height: 1.55; }

@media (max-width: 767.98px) {
  .flow-steps { grid-template-columns: 1fr; }
  .flow-arrow { display: none; }
  .roi-service-cards { grid-template-columns: 1fr; }
  .yield-row { grid-template-columns: 80px 1fr 46px; }
}

/* ── Property Search Cards (Bento Gallery) ── */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}
.prop-card:nth-child(4n+1) { grid-column: span 7; }
.prop-card:nth-child(4n+2) { grid-column: span 5; }
.prop-card:nth-child(4n+3) { grid-column: span 5; }
.prop-card:nth-child(4n+4) { grid-column: span 7; }

@media (max-width: 991.98px) {
  .prop-card:nth-child(n) { grid-column: span 12; }
  .prop-grid { grid-auto-rows: 350px; }
}

.prop-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 40px rgba(11,31,51,.12);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}
.prop-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 30px 60px rgba(212,175,55,.15); 
  z-index: 10;
}
.prop-card-bg {
  position: absolute;
  inset: -2px;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}
.prop-card:hover .prop-card-bg { 
  transform: scale(1.1); 
}
.prop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,39,0) 0%, rgba(7,24,39,0.2) 30%, rgba(7,24,39,0.95) 100%);
  transition: background .4s ease;
}
.prop-card:hover .prop-card-overlay {
  background: linear-gradient(180deg, rgba(7,24,39,0) 0%, rgba(7,24,39,0.4) 40%, rgba(7,24,39,0.95) 100%);
}
.prop-card-body {
  position: relative;
  z-index: 2;
  padding: 30px;
}
.prop-card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  transition: all 0.4s ease;
}
.prop-card:hover .prop-card-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(212,175,55,.4);
}
.prop-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 0;
  line-height: 1.15;
  transition: margin 0.4s ease;
}
.prop-card:hover .prop-card-title {
  margin-bottom: 8px;
}
.prop-card-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.prop-card:hover .prop-card-desc {
  opacity: 1;
  max-height: 80px;
  transform: translateY(0);
}
.prop-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.prop-card:hover .prop-card-meta {
  max-height: 80px;
  opacity: 1;
  margin-top: 14px;
  transform: translateY(0);
}
.prop-meta-chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  gap: 6px;
}
.prop-meta-chip i { color: var(--gold); font-size: .8rem; }
.prop-card-cta {
  display: inline-block;
  margin-top: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: .9rem;
  text-align: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  width: fit-content;
}
.prop-card:hover .prop-card-cta { 
  opacity: 1; 
  max-height: 60px;
  margin-top: 16px;
  transform: translateY(0); 
}
.prop-card-cta:hover { background: #fff; color: var(--navy); }

footer {
  background: linear-gradient(180deg, var(--deep-navy) 0%, #030a12 100%);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.8;
}
footer::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}
footer h4, footer h5 { 
  color: var(--white); 
  font-weight: 800; 
  font-size: 1.15rem; 
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
footer a, footer p, footer li { 
  color: rgba(255,255,255,.65); 
  font-size: 0.95rem; 
  line-height: 1.8;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
footer a { display: inline-block; }
footer a:hover { 
  color: var(--gold); 
  transform: translateX(4px);
}
.footer-logo { 
  height: 54px; 
  width: auto; 
  background: #fff; 
  border-radius: 14px; 
  padding: 8px 12px; 
  margin-bottom: 20px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.footer-bottom { 
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08); 
  margin-top: 60px; 
  padding-top: 24px; 
  color: rgba(255,255,255,.45); 
  font-size: .86rem; 
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(0); /* override parent a:hover */
}
.footer-social a:hover { 
  background: var(--gold); 
  border-color: var(--gold); 
  color: var(--navy); 
  transform: translateY(-5px) scale(1.05); 
  box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}
.footer-contact-info { margin-top: 18px; position: relative; z-index: 2; }
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.footer-contact-info a i { 
  color: var(--gold); 
  font-size: 1.1rem; 
  background: rgba(212,175,55,0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.footer-contact-info a:hover { color: var(--white); transform: translateX(6px); }
.footer-contact-info a:hover i { background: var(--gold); color: var(--navy); }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25D366;
  font-size: 1.58rem;
  box-shadow: 0 14px 28px rgba(37,211,102,.30);
  transition: transform .18s ease;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-2px) scale(1.03); }
.toast-lite {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 120%);
  z-index: 1060;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: 11px 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  font-weight: 600;
  font-size: .90rem;
  max-width: min(90vw, 600px);
  text-align: center;
}
.toast-lite.show { opacity: 1; transform: translate(-50%, 0); }

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(212,175,55,.16);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2000;
  opacity: 0;
  transition: opacity .16s ease, width .16s ease, height .16s ease, background .16s ease;
}
.custom-cursor.active { opacity: .8; }
.custom-cursor:after {
  content: attr(data-label);
  position: absolute;
  left: 20px;
  top: -10px;
  background: rgba(11,31,51,.94);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.36);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .62s ease, transform .62s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.loading-state {
  min-height: 45vh;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .navbar-collapse { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 13px; margin-top: 10px; box-shadow: var(--shadow-soft); }
}
@media (max-width: 991.98px) {
  body { font-size: 15px; }
  section { padding: 54px 0; }
  .hero { min-height: auto; padding: 96px 0 54px; }
  .hero h1 { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-card { padding: 20px; }
  .custom-cursor { display: none; }
  .property-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  html { scroll-padding-top: 76px; }
  section { padding: 48px 0; }
  .navbar-brand img { height: 40px; }
  .hero { padding-top: 92px; }
  .hero h1 { font-size: 2.05rem; letter-spacing: -.045em; }
  .hero .lead { font-size: .96rem; }
  .hero-stats { gap: 9px; }
  .hero-stat { padding: 12px 10px; }
  .section-title { font-size: 1.55rem; }
  .section-center { margin-bottom: 28px; }
  .marquee-wrap:before, .marquee-wrap:after { width: 42px; }
  .partner-card { min-width: 128px; height: 58px; font-size: .82rem; }
  .btn { width: 100%; }
  .property-body .d-flex { flex-direction: column; }
  .whatsapp-float { width: 52px; height: 52px; right: 15px; bottom: 15px; }
}


