/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron:       #FF6600;
  --saffron-dark:  #e55000;
  --saffron-glow:  rgba(255, 102, 0, 0.45);
  --gold:          #FFB300;
  --dark:          #0d0d14;
  --dark2:         #111118;
  --dark3:         #18181f;
  --white:         #ffffff;
  --muted:         rgba(255,255,255,0.55);
  --border-glass:  rgba(255,255,255,0.08);
  --border-saffron:rgba(255,102,0,0.3);
  --wa:            #25D366;
  --radius:        18px;
  --radius-sm:     10px;
  --t:             all .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ========== GLASS MIXIN (applied inline) ========== */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center;
  background: rgba(13,13,20,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(13,13,20,0.92);
  border-color: var(--border-saffron);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 21px; font-weight: 800; color: #fff;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--saffron); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--saffron);
  transition: width .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--saffron); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 50px;
  transition: var(--t); white-space: nowrap;
}
.nav-cta:hover {
  background: var(--saffron-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--saffron-glow);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: var(--t);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,102,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(255,179,0,0.06) 0%, transparent 50%),
              var(--dark);
  padding: 90px 24px 60px;
}

/* Canvas particles */
.hero-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; opacity: .5;
}

/* Background orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,102,0,0.18) 0%, transparent 70%);
  top: -100px; right: -80px; animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,179,0,0.12) 0%, transparent 70%);
  bottom: -60px; left: -60px; animation-delay: -3s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,102,0,0.1) 0%, transparent 70%);
  top: 40%; left: 35%; animation-delay: -5s;
}

.hero-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.3);
  color: var(--saffron); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 22px;
  animation: fadeDown .6s ease both;
  letter-spacing: .5px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  display: flex; flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 22px; color: #fff;
}
.gradient-text {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 60%, var(--saffron) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}
.hero-sub {
  font-size: 16px; color: var(--muted); line-height: 1.75;
  margin-bottom: 36px; max-width: 480px;
}
.hero-sub strong { color: rgba(255,255,255,0.85); }

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px;
}

/* Primary glow button */
.btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: var(--t);
}
.btn-glow::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-glow:hover::before { opacity: 1; }
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--saffron-glow), 0 0 0 1px rgba(255,102,0,0.3);
}
.btn-glow.full-width { width: 100%; justify-content: center; font-size: 15px; padding: 15px; }

/* Glass outline button */
.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--t);
}
.btn-glass:hover {
  background: rgba(255,102,0,0.12);
  border-color: rgba(255,102,0,0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* Line reveal for hero elements */
.line-reveal {
  opacity: 0; transform: translateY(22px);
  animation: lineReveal .7s cubic-bezier(.4,0,.2,1) var(--d, 0s) both;
}

.hero-stats {
  display: flex; align-items: center; gap: 28px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px; font-weight: 900; color: var(--saffron); line-height: 1;
}
.stat-plus { font-size: 22px; font-weight: 900; color: var(--saffron); display: inline; }
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: .5px; }
.stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.1); }

/* Hero visual / glass card */
.hero-visual { position: relative; display: flex; justify-content: center; }

.glass-card {
  width: 100%; max-width: 400px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,102,0,0.1);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.glass-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,102,0,0.25);
}

.gc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 0;
}
.gc-dots { display: flex; gap: 6px; }
.gc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.gc-dots span:first-child { background: rgba(255,100,100,.7); }
.gc-dots span:nth-child(2) { background: rgba(255,200,50,.7); }
.gc-dots span:nth-child(3) { background: rgba(50,200,100,.7); }
.gc-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--muted); font-weight: 500;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wa);
  animation: pulse 1.5s ease-in-out infinite;
}

.gc-prop-img { position: relative; margin: 14px; border-radius: 14px; overflow: hidden; }
.prop-art svg { width: 100%; display: block; }
.gc-overlay-badge {
  position: absolute; bottom: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 50px;
}

.gc-body { padding: 4px 20px 20px; }
.gc-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.gc-title-row h3 { font-size: 15px; font-weight: 700; color: #fff; }
.gc-loc {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--muted); margin-top: 3px;
}
.gc-price {
  font-size: 18px; font-weight: 800; color: var(--saffron);
  white-space: nowrap;
}
.gc-features {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.gc-features span {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; color: var(--muted);
  padding: 4px 10px; border-radius: 50px;
}
.gc-cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px; border-radius: 10px;
  transition: var(--t);
}
.gc-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--saffron-glow); }

/* Floating pills */
.float-pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(20,20,28,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.pill-a { top: 24px; right: -16px; animation: floatY 3s ease-in-out infinite; color: #4ade80; }
.pill-b { top: 50%; right: -24px; animation: floatY 3s ease-in-out infinite 1.2s; color: var(--saffron); }
.pill-c { bottom: 40px; left: -20px; animation: floatY 3s ease-in-out infinite 2.2s; color: var(--gold); }

/* ========== TICKER ========== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--saffron) 0%, #e55000 100%);
  padding: 11px 0; overflow: hidden; position: relative; z-index: 2;
}
.ticker-inner { overflow: hidden; }
.ticker {
  display: flex; white-space: nowrap;
  animation: tickerRoll 22s linear infinite;
  width: max-content;
}
.ticker span {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9);
  margin-right: 64px; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
}
.ticker span::before {
  content: '';
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

/* ========== SECTION COMMON ========== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 90px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: var(--muted); }
.section-tag {
  display: inline-block;
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.25);
  color: var(--saffron); font-size: 11px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.light-tag { background: rgba(255,102,0,0.15); border-color: rgba(255,102,0,0.3); }
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  margin-bottom: 12px; color: #fff;
}
.section-header p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ========== SERVICES ========== */
.services { background: var(--dark2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 32px 26px;
  transition: var(--t); cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0; transition: opacity .4s;
}
.svc-card:hover {
  background: rgba(255,102,0,0.06);
  border-color: rgba(255,102,0,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,102,0,0.15);
}
.svc-card:hover::before { opacity: 1; }

/* Shine sweep effect */
.svc-shine {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.svc-card:hover .svc-shine { left: 200%; }

.svc-card.svc-featured {
  background: linear-gradient(135deg, rgba(255,102,0,0.15) 0%, rgba(229,80,0,0.08) 100%);
  border-color: rgba(255,102,0,0.3);
}
.svc-card.svc-featured::before { opacity: 1; }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron); margin-bottom: 20px;
  transition: var(--t);
}
.svc-card:hover .svc-icon-wrap {
  background: rgba(255,102,0,0.2);
  transform: scale(1.08);
}
.svc-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.svc-popular {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,102,0,0.25); border: 1px solid rgba(255,102,0,0.4);
  color: var(--saffron); font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px;
}

/* ========== PROPERTIES ========== */
.properties { background: var(--dark); }
.filter-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); font-size: 13px; font-weight: 500;
  padding: 9px 22px; border-radius: 50px; cursor: pointer;
  transition: var(--t); font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(255,102,0,0.15); border-color: rgba(255,102,0,0.4); color: var(--saffron);
}

.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prop-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--t); position: relative;
}
.prop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,102,0,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,102,0,0.1);
}
.prop-card.hidden { display: none; }

.prop-img {
  height: 180px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
}
.prop-img-icon { position: relative; z-index: 2; }
.prop-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.prop-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,102,0,0.08);
  opacity: 0; transition: opacity .3s;
}
.prop-card:hover .prop-img::after { opacity: 1; }

.prop-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px;
  backdrop-filter: blur(8px);
}
.buy-tag  { background: rgba(255,102,0,0.2); border: 1px solid rgba(255,102,0,0.4); color: var(--saffron); }
.rent-tag { background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.4); color: #60a5fa; }
.plot-tag { background: rgba(22,163,74,0.2); border: 1px solid rgba(22,163,74,0.4); color: #4ade80; }

.prop-body { padding: 18px 20px; }
.prop-body h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.prop-loc {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--muted); margin-bottom: 12px;
}
.prop-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.prop-chips span {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; color: var(--muted);
  padding: 3px 10px; border-radius: 50px;
}
.prop-foot { display: flex; align-items: center; justify-content: space-between; }
.prop-price { font-size: 17px; font-weight: 800; color: var(--saffron); }
.prop-wa {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 50px; transition: var(--t);
}
.prop-wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

.see-more-wrap { text-align: center; margin-top: 48px; }

/* ========== WHY US ========== */
.why-us {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
}
.why-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.why-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.why-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,179,0,0.08) 0%, transparent 70%);
  bottom: -80px; left: -60px; animation-delay: -4s;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.why-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 32px 26px;
  transition: var(--t);
}
.why-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,102,0,0.06), transparent 60%);
  opacity: 0; transition: opacity .35s;
  border-radius: var(--radius);
}
.why-card:hover {
  background: rgba(255,102,0,0.07);
  border-color: rgba(255,102,0,0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.why-card:hover::after { opacity: 1; }
.why-num {
  position: absolute; top: 14px; right: 20px;
  font-size: 44px; font-weight: 900;
  color: rgba(255,102,0,0.1);
  line-height: 1; font-family: 'Poppins', sans-serif;
}
.why-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron); margin-bottom: 18px;
  transition: var(--t); position: relative; z-index: 1;
}
.why-card:hover .why-icon-wrap { background: rgba(255,102,0,0.18); transform: scale(1.08) rotate(3deg); }
.why-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; position: relative; z-index: 1; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.testi-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--t);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,102,0,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.testi-card.testi-featured {
  background: linear-gradient(135deg, rgba(255,102,0,0.14), rgba(229,80,0,0.08));
  border-color: rgba(255,102,0,0.3);
}
.testi-quote {
  position: absolute; top: 16px; right: 16px;
  color: var(--saffron);
}
.testi-stars {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.testi-card > p {
  font-size: 14px; color: var(--muted);
  line-height: 1.75; margin-bottom: 22px;
  font-style: italic;
}
.testi-featured > p { color: rgba(255,255,255,0.7); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong { font-size: 14px; font-weight: 700; color: #fff; display: block; }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ========== CONTACT ========== */
.contact {
  position: relative; overflow: hidden;
  background: var(--dark2);
}
.contact-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.contact-orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,102,0,0.1), transparent 70%);
  top: -80px; left: -60px;
}
.contact-orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,179,0,0.08), transparent 70%);
  bottom: -60px; right: -40px;
}
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.contact-info .section-tag { margin-bottom: 14px; }
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 34px; }

.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron);
}
.contact-item strong { font-size: 13px; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.contact-item a { color: var(--saffron); font-weight: 600; transition: color .2s; }
.contact-item a:hover { color: var(--gold); }

.contact-form-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px; padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.contact-form-glass h3 {
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 26px;
}

.fg {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 0 14px;
  margin-bottom: 12px; transition: border-color .25s;
}
.fg:focus-within { border-color: rgba(255,102,0,0.45); background: rgba(255,102,0,0.04); }
.fg > svg { flex-shrink: 0; margin-top: 14px; color: var(--muted); }
.fg input, .fg select, .fg textarea {
  width: 100%; background: transparent; border: none; outline: none;
  font-size: 14px; font-family: 'Inter', sans-serif; color: #fff;
  padding: 14px 0;
}
.fg textarea { padding: 12px 0; resize: none; }
.fg select option { background: var(--dark3); color: #fff; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.3); }

/* ========== FOOTER ========== */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-container {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin: 16px 0 22px;
}
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80; font-size: 13px; font-weight: 600;
  padding: 10px 18px; border-radius: 50px; transition: var(--t);
}
.footer-wa-btn:hover { background: var(--wa); border-color: var(--wa); color: #fff; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--saffron); }
.footer-col p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.footer-col p a { color: var(--gold); }
.footer-col p a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center; padding: 20px 24px;
  font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--t);
}
.wa-float svg { width: 28px; height: 28px; position: relative; z-index: 2; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ringPulse 2s ease-out infinite;
}
.wa-tooltip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%);
  background: rgba(20,20,28,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: rgba(20,20,28,0.9);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ========== BACK TO TOP ========== */
.back-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,102,0,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,102,0,0.3);
  color: var(--saffron); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--t);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--saffron); color: #fff; transform: translateY(-2px); }

/* ========== STAGGER ANIMATION ========== */
.stagger {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1) calc(var(--i, 0) * 80ms),
              transform .6s cubic-bezier(.4,0,.2,1) calc(var(--i, 0) * 80ms);
}
.stagger.in-view { opacity: 1; transform: translateY(0); }

/* ========== KEYFRAMES ========== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.25); }
}
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ========== SIDEBAR OVERLAY ========== */
.sidebar-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }

/* ========== SIDEBAR DRAWER ========== */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 290px; max-width: 85vw; z-index: 1100;
  background: rgba(13,13,20,0.88);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-right: 1px solid rgba(255,255,255,0.08);
  box-shadow: 4px 0 40px rgba(0,0,0,0.6);
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 0 0 24px;
  overflow-y: auto;
}
.sidebar.open { transform: translateX(0); }

.sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-logo { text-decoration: none; }
.sidebar-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.sidebar-close:hover { background: rgba(255,102,0,0.15); color: var(--saffron); border-color: rgba(255,102,0,0.3); }

.sidebar-nav {
  padding: 14px 14px 0;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.snav-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 14px; border-radius: 12px;
  color: var(--muted); font-size: 15px; font-weight: 500;
  transition: var(--t); position: relative; overflow: hidden;
}
.snav-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--saffron); opacity: 0; transition: opacity .25s;
}
.snav-item:hover, .snav-item.active {
  background: rgba(255,102,0,0.1);
  color: #fff; border-color: rgba(255,102,0,0.2);
}
.snav-item:hover::before, .snav-item.active::before { opacity: 1; }
.snav-item.active { color: var(--saffron); }
.snav-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--t);
}
.snav-item:hover .snav-icon, .snav-item.active .snav-icon {
  background: rgba(255,102,0,0.15);
  border-color: rgba(255,102,0,0.3);
  color: var(--saffron);
}

.sidebar-sep {
  margin: 16px 20px;
  height: 1px; background: rgba(255,255,255,0.07);
}
.sidebar-info { padding: 0 20px 16px; }
.si-label {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.si-row {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; line-height: 1.5;
  transition: color .2s;
}
a.si-row { text-decoration: none; }
a.si-row:hover { color: var(--saffron); }
.si-row svg { flex-shrink: 0; margin-top: 1px; color: var(--saffron); }

.sidebar-wa {
  margin: 0 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 13px; border-radius: 13px;
  transition: var(--t);
}
.sidebar-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ========== FOOTER TABS STRIP ========== */
.footer-tabs-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ftab {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--muted); font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 50px;
  transition: var(--t); white-space: nowrap;
}
.ftab svg { opacity: .7; transition: opacity .2s; }
.ftab:hover {
  background: rgba(255,102,0,0.12);
  border-color: rgba(255,102,0,0.35);
  color: var(--saffron);
}
.ftab:hover svg { opacity: 1; color: var(--saffron); }
.ftab.ftab-wa {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.25);
  color: #4ade80;
}
.ftab.ftab-wa:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.5);
  color: #4ade80;
}

/* ========== MOBILE BOTTOM TAB BAR ========== */
.bottom-tabs {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: rgba(11,11,18,0.82);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.btab {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 4px 2px; color: var(--muted);
  font-size: 10px; font-weight: 500; transition: var(--t);
  text-decoration: none; position: relative;
}
.btab::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 0 0 2px 2px;
  background: var(--saffron); transition: width .25s;
}
.btab.active, .btab:hover { color: #fff; }
.btab.active::before { width: 24px; }
.btab.active .btab-icon { background: rgba(255,102,0,0.15); color: var(--saffron); }
.btab-icon {
  width: 40px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.btab:hover .btab-icon { background: rgba(255,255,255,0.06); }
.btab.btab-wa { color: #4ade80; }
.btab.btab-wa .btab-icon { background: rgba(37,211,102,0.1); }
.btab.btab-wa:hover .btab-icon { background: rgba(37,211,102,0.2); }
.btab.btab-wa::before { background: #25D366; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-container{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Show bottom tabs */
  .bottom-tabs { display: flex; }

  /* Hide desktop nav links on mobile (sidebar replaces them) */
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Push page content above the bottom tab bar */
  body { padding-bottom: 68px; }

  /* Nudge floating elements above tab bar */
  .wa-float { bottom: 80px; }
  .back-top { bottom: 148px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-btns { flex-direction: column; }
  .btn-glow, .btn-glass { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .services-grid   { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .contact-wrap    { grid-template-columns: 1fr; gap: 40px; }
  .footer-container{ grid-template-columns: 1fr; gap: 32px; }
  .section-container { padding: 60px 20px; }
  .contact-form-glass { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }
  .hero-title { font-size: 32px; }
}
