/* =====================================================
   KHOJ ESTATES — PREMIUM REAL ESTATE CSS
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --navy: #0a1628;
  --navy-deep: #060e1a;
  --navy-mid: #0f2042;
  --navy-light: #162850;
  --navy-card: #111e38;
  --gold: #c9a227;
  --gold-light: #e6b83a;
  --gold-dark: #a8841e;
  --gold-subtle: rgba(201, 162, 39, 0.12);
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.90);
  --white-70: rgba(255,255,255,0.70);
  --white-40: rgba(255,255,255,0.40);
  --white-10: rgba(255,255,255,0.08);
  --text-light: #a8b8d8;
  --text-muted: #6e84a3;
  --border: rgba(201, 162, 39, 0.18);
  --border-light: rgba(255,255,255,0.08);
  --shadow: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.3);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.25);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background: var(--navy-deep);
  color: var(--white-90);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-dark { background: var(--navy-deep); }
.section:not(.section-dark) { background: var(--navy); }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-lg { margin-top: 28px; }
.mt-xl { margin-top: 48px; }

/* ---- Section Header ---- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f0c940, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.45);
  color: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--white-10);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 14, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(6, 14, 26, 0.97);
  height: 68px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201,162,39,0.3));
  transition: var(--transition);
}
.logo-img:hover { filter: drop-shadow(0 4px 16px rgba(201,162,39,0.5)); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-subtle);
}

.header-cta { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 26, 0.88) 0%,
    rgba(10, 22, 40, 0.78) 40%,
    rgba(15, 32, 66, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* ---- Search Box ---- */
.search-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
}

.search-tab {
  flex: 1;
  padding: 14px 20px;
  background: none;
  border: none;
  color: var(--white-70);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
  border-bottom: 3px solid transparent;
}

.search-tab.active, .search-tab:hover {
  color: var(--gold);
  background: var(--gold-subtle);
  border-bottom-color: var(--gold);
}

.search-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-10);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
}

.search-field:focus-within {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.07);
}

.search-field i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.search-field input, .search-field select {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  min-width: 0;
}

.search-field input::placeholder { color: var(--text-muted); }

.search-field select option {
  background: var(--navy-deep);
  color: var(--white);
}

.search-btn { flex-shrink: 0; white-space: nowrap; }

/* ---- Stats Bar ---- */
.stats-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(6, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 60px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-num:first-child { display: inline; }

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 6px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-card);
}

.about-card-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-gold);
}

.about-card-badge i { font-size: 1.8rem; }

.about-card-badge strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy-deep);
}

.about-card-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy-mid);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.highlight-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: var(--transition);
}

.highlight-chip:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateX(4px);
}

.highlight-chip i {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.highlight-chip strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.highlight-chip span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-desc {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.85;
}

.about-areas { margin: 24px 0; }
.about-areas h4 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.area-tag i { font-size: 0.75rem; }
.area-tag:hover { background: var(--gold); color: var(--navy-deep); }

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
}

.trust-badge i { color: var(--gold); }
.trust-badge:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

/* ============================================
   PROPERTIES SECTION
   ============================================ */
.prop-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.prop-tab {
  padding: 11px 28px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.prop-tab:hover, .prop-tab.active {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.prop-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.prop-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.prop-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.prop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prop-card:hover .prop-img { transform: scale(1.07); }

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.prop-badge.buy { background: var(--gold); color: var(--navy-deep); }
.prop-badge.rent { background: #1a8f5e; color: var(--white); }
.prop-badge.commercial { background: #2563eb; color: var(--white); }

.prop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.prop-card:hover .prop-overlay { opacity: 1; }

.prop-info { padding: 22px; }

.prop-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.prop-price {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
}

.prop-type-chip {
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.prop-title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.prop-location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prop-location i { color: var(--gold); font-size: 0.8rem; }

.prop-desc-short {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.prop-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.prop-features i { color: var(--gold); font-size: 0.78rem; }

.prop-cta { width: 100%; justify-content: center; }

.prop-card.hide { display: none; }
.prop-card.show { display: block; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap { margin-bottom: 22px; }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.service-title {
  font-family: var(--font-primary);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.service-link:hover { gap: 12px; color: var(--gold-light); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--navy-light);
}

.why-num {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--navy-deep);
}

.why-title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-call-btn, .contact-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-call-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-deep);
}

.contact-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--navy-deep);
}

.contact-call-btn i { font-size: 1.8rem; }

.contact-wa-btn {
  background: #1a7a3e;
  color: var(--white);
  border-color: #25a058;
}

.contact-wa-btn:hover {
  background: #25a058;
  transform: translateY(-3px);
  color: var(--white);
}

.contact-wa-btn i { font-size: 1.8rem; color: #25d366; }

.contact-call-btn span, .contact-wa-btn span {
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  opacity: 0.85;
}

.contact-call-btn strong, .contact-wa-btn strong {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 800;
  display: block;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-detail-item:hover { border-color: var(--border); }

.contact-detail-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-detail-item span, .contact-detail-item a {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-detail-item a:hover { color: var(--gold); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ---- Form Card ---- */
.form-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: var(--transition);
}

.input-wrap:focus-within {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.input-wrap i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.textarea-wrap { align-items: flex-start; }
.textarea-wrap i { margin-top: 4px; }

.input-wrap input, .input-wrap select, .input-wrap textarea {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  resize: none;
  min-width: 0;
}

.input-wrap input::placeholder, .input-wrap textarea::placeholder { color: var(--text-muted); }
.input-wrap select option { background: var(--navy-mid); color: var(--white); }

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-privacy i { color: var(--gold); }

.form-success {
  text-align: center;
  padding: 32px 20px;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-deep); border-top: 1px solid var(--border); }

.footer-top { padding: 80px 0 48px; }

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(201,162,39,0.25));
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--white-10);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--white-70);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-info { display: flex; flex-direction: column; gap: 16px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

.footer-contact-item span, .footer-contact-item a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-credit { display: flex; align-items: center; gap: 4px; }
.footer-credit i { color: var(--gold); font-size: 0.8rem; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
  color: var(--white);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ---- Back to Top ---- */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-img { height: 320px; }
  .about-card-badge { right: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 72px 0; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-deep);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 100px 24px 40px;
    transition: right 0.4s ease;
    z-index: 1050;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }

  .nav.open { right: 0; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; }

  .search-row { flex-direction: column; }
  .search-field { min-width: 100%; }

  .stats-inner { gap: 0; }
  .stat-item { padding: 16px 24px; }
  .stat-divider { height: 32px; }

  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-card { flex-direction: column; }
  .form-card { padding: 28px 20px; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .stat-num { font-size: 1.7rem; }
  .section-title { font-size: 1.8rem; }

  .about-card-badge { position: static; margin-top: 16px; }
  .about-img-wrap { overflow: visible; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .prop-card { margin: 0; }
  .hero-content { padding: 60px 16px 20px; }
  .form-card { padding: 24px 16px; }
  .stat-item { padding: 12px 16px; }
  .stat-divider { display: none; }
  .stats-inner { justify-content: space-around; gap: 16px; flex-wrap: wrap; }
}

/* ============================================
   PROPERTY ENQUIRY BANNER (in form)
   ============================================ */
.prop-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 0.875rem;
  color: var(--gold-light);
  font-family: var(--font-primary);
  font-weight: 500;
}

.prop-banner i:first-child { color: var(--gold); flex-shrink: 0; }

.prop-banner span { flex: 1; line-height: 1.4; word-break: break-word; }

.prop-banner-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 0.75rem;
}
.prop-banner-close:hover { color: var(--gold); background: var(--gold-subtle); }

/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
.field-error {
  display: block;
  font-size: 0.775rem;
  color: #fc8181;
  font-family: var(--font-primary);
  margin-top: 5px;
  padding-left: 4px;
  min-height: 16px;
}

.input-wrap.error {
  border-color: #e53e3e !important;
}

.form-error-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.855rem;
  color: #fc8181;
  font-family: var(--font-primary);
  margin-top: 12px;
}

.form-error-msg i { flex-shrink: 0; margin-top: 2px; }

/* ============================================
   BUTTON LOADING STATE
   ============================================ */
#form-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

#btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   PROP-CARD BUTTON (was <a> now <button>)
   ============================================ */
button.prop-cta {
  width: 100%;
  justify-content: center;
  font-family: var(--font-primary);
  cursor: pointer;
}

button.btn {
  font-family: var(--font-primary);
  cursor: pointer;
}

/* ---- Nav Overlay ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  backdrop-filter: blur(4px);
}

.nav-overlay.open { display: block; }
