/* ══════════════════════════════════════════════════════
   VINAYAK REYLTE — PREMIUM REAL ESTATE STYLESHEET
   Aesthetic: Luxury Heritage Gold × Deep Charcoal
══════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --dark: #1A1A1A;
  --dark2: #242424;
  --dark3: #2E2E2E;
  --cream: #F8F4EE;
  --cream2: #EDE8DF;
  --white: #FFFFFF;
  --text: #3A3A3A;
  --text-light: #6A6A6A;
  --border: #E0D8CC;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --r: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── CONTAINERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-full { width: 100%; text-align: center; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(20,18,14,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 22px; font-size: 12px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1A1209 0%, #2C2010 30%, #1A2820 60%, #0D1A24 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,103,65,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(44,73,100,0.1) 0%, transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,5,0.7) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-light);
  display: inline;
}
.stat span { color: var(--gold-light); font-family: var(--font-display); font-size: 24px; }
.stat p { font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.scroll-hint {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════
   SEARCH
══════════════════════════════════ */
.search-section {
  background: var(--dark);
  padding: 0 24px;
}
.search-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r);
  padding: 32px;
  transform: translateY(-40px);
  box-shadow: var(--shadow);
}
.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
}
.stab {
  padding: 8px 24px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.stab.active { background: var(--gold); color: var(--dark); }
.stab:hover:not(.active) { color: var(--white); }
.search-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.sf-group { flex: 1; min-width: 160px; }
.sf-group label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sf-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.sf-group select:focus { outline: none; border-color: var(--gold); }
.sf-group select option { background: var(--dark2); }
.search-btn { height: 46px; align-self: flex-end; white-space: nowrap; }

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); }
.section-cream { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold-light); }
.section-title { font-size: clamp(32px, 4vw, 48px); font-weight: 400; color: var(--dark); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-desc.light { color: rgba(255,255,255,0.6); }
.center-btn { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════
   FILTER BAR
══════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }

/* ══════════════════════════════════
   PROPERTIES GRID
══════════════════════════════════ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.prop-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prop-card.featured { border-color: var(--gold); }
.prop-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prop-img::before {
  content: '🏠';
  font-size: 64px;
  opacity: 0.3;
}
.prop-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-hot { background: #E05252; color: var(--white); }
.badge-rent { background: #4A8E5A; color: var(--white); }
.prop-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
}
.prop-wishlist:hover { background: var(--white); }
.prop-wishlist.active { color: #E05252; }
.prop-img-label {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.prop-body { padding: 20px 24px 24px; }
.prop-price { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--gold-dark); margin-bottom: 6px; }
.prop-name { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.prop-loc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.prop-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.prop-footer { display: flex; align-items: center; justify-content: space-between; }
.prop-tag {
  font-size: 11px;
  background: var(--cream);
  color: var(--gold-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }
.svc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wp-icon {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point strong { font-size: 15px; color: var(--dark); display: block; margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--text-light); }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: var(--dark);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.why-card:hover { transform: scale(1.04); }
.wc1 { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.wc2 { background: var(--dark3); }
.wc3 { background: var(--dark3); margin-top: 24px; }
.wc4 { background: linear-gradient(135deg, #3A5C2A, #6B8E5A); margin-top: 24px; }
.wc-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.wc1 .wc-num { color: var(--dark); }
.wc-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }
.wc1 .wc-label { color: rgba(26,26,26,0.7); }

/* ══════════════════════════════════
   EMI CALCULATOR
══════════════════════════════════ */
.emi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.emi-field { margin-bottom: 32px; }
.emi-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 14px; letter-spacing: 0.04em; }
.emi-field input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--border) 0%);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.emi-field input[type="range"]::-webkit-slider-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-dark);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  -webkit-appearance: none;
}
.range-val { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--gold-dark); margin-top: 10px; }
.emi-output {
  background: var(--dark);
  border-radius: var(--r);
  padding: 36px;
  color: var(--white);
}
.emi-monthly { text-align: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.emi-monthly p { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.emi-monthly h2 { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--gold-light); }
.eb-item { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.eb-item span { color: rgba(255,255,255,0.6); }
.eb-item strong { color: var(--white); }
.eb-total strong { color: var(--gold-light); font-size: 16px; }
.emi-result { display: flex; flex-direction: column; gap: 24px; }
.emi-chart-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.chart-legend { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.cl-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cl-dot.gold { background: var(--gold); }
.cl-dot.dark { background: var(--dark3); }

/* ══════════════════════════════════
   AGENTS
══════════════════════════════════ */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.agent-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.agent-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.agent-card:hover::after { transform: scaleX(1); }
.agent-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
  border: 3px solid rgba(255,255,255,0.3);
}
.agent-card h3 { font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.agent-role { font-size: 12px; color: var(--gold-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.agent-stats { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; }
.agent-stats span { font-size: 12px; background: var(--cream); color: var(--text); padding: 4px 12px; border-radius: 20px; font-weight: 600; }
.agent-spec { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.agent-contacts { display: flex; gap: 8px; justify-content: center; }
.agent-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--text);
}
.agent-btn:hover { border-color: var(--gold); color: var(--gold); }
.agent-wa { background: #25D366; border-color: #25D366; color: var(--white); }
.agent-wa:hover { background: #1ebe5d; color: var(--white); }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testi-card {
  min-width: calc(50% - 12px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 36px 32px;
  flex-shrink: 0;
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 2px; }
.testi-author span { font-size: 12px; color: rgba(255,255,255,0.45); }
.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.testi-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.testi-controls button:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.testi-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.testi-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.25); border-radius: 50%; cursor: pointer; transition: all 0.2s; }
.testi-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-success { margin-top: 12px; color: #3A8E5A; font-weight: 600; text-align: center; padding: 12px; background: #e8f5ec; border-radius: 8px; }
.ci-card {
  background: var(--dark);
  border-radius: var(--r);
  padding: 32px 28px;
  margin-bottom: 20px;
}
.ci-card h3 { font-size: 20px; color: var(--white); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ci-item { display: flex; gap: 16px; margin-bottom: 20px; }
.ci-icon { font-size: 22px; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.ci-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.ci-item a { color: rgba(255,255,255,0.65); }
.ci-item a:hover { color: var(--gold); }
.ci-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 44px; height: 44px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: #0D0D0D; }
.footer-top { padding: 64px 24px 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; margin: 16px 0 20px; }
.footer-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-certs span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 5px 10px;
  border-radius: 4px;
}
.footer-col h4 { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  z-index: 1;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.2); }
.modal-img {
  height: 220px;
  border-radius: 16px 16px 0 0;
}
.modal-content { padding: 28px 32px 32px; }
.modal-price { font-family: var(--font-display); font-size: 28px; color: var(--gold-dark); font-weight: 600; margin-bottom: 6px; }
.modal-content h2 { font-size: 24px; color: var(--dark); margin-bottom: 6px; }
.modal-amenities { margin: 20px 0; }
.modal-amenities h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.amenity-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-grid span {
  font-size: 12px;
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--text);
}
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.modal-actions .btn-ghost { color: var(--dark); border-color: var(--border); }
.modal-actions .btn-ghost:hover { background: var(--dark); color: var(--white); }

/* ══════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waBounce 3s 2s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
@keyframes waBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.back-top {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--dark); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .emi-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { min-width: calc(100%); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 68px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(18,16,12,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open + .nav-cta { display: block; position: fixed; top: 68px; right: 0; left: 0; padding: 0; }
  .hero-content { padding: 100px 16px 60px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 28px; }
  .search-card { transform: translateY(-24px); padding: 20px 16px; }
  .search-form { flex-direction: column; }
  .sf-group { min-width: 100%; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .wc3, .wc4 { margin-top: 0; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .agents-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 48px; height: 1px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }
}
