/* =============================================
   NOVEST REALTY — Zillow-Inspired Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --blue:       #006AFF;
  --blue-dark:  #0052CC;
  --blue-light: #E8F0FE;
  --teal:       #00A3AD;
  --navy:       #1B2D4F;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F1F3F4;
  --gray-200:   #E2E5E9;
  --gray-400:   #9AA5B4;
  --gray-600:   #52606D;
  --gray-800:   #2D3748;
  --gray-900:   #1A202C;
  --green:      #1DBF73;
  --orange:     #FF6B35;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:  0 16px 56px rgba(0,0,0,0.18);
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.nav-logo .logo-text span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost { padding: 9px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--blue); background: transparent; border: 1.5px solid var(--blue); transition: var(--transition); }
.btn-ghost:hover { background: var(--blue-light); }
.btn-primary { padding: 9px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; color: white; background: var(--blue); transition: var(--transition); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,106,255,0.3); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,30,54,0.85) 0%, rgba(11,30,54,0.60) 60%, rgba(0,106,255,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: #7AB8FF; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.80); max-width: 560px; margin: 0 auto 40px; }

/* Search Box */
.search-box {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  padding: 4px 4px 0;
  gap: 2px;
}
.search-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.search-tab.active, .search-tab:hover { color: var(--blue); border-bottom-color: var(--blue); background: var(--blue-light); }
.search-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  align-items: center;
  padding: 16px;
  gap: 8px;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.search-field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,106,255,0.1); }
.search-field label { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.search-field input, .search-field select {
  border: none; outline: none; font-size: 14px;
  font-weight: 500; color: var(--gray-900);
  background: transparent; padding: 0; width: 100%;
}
.search-field select { appearance: none; cursor: pointer; }
.btn-search {
  padding: 14px 28px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-search:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,106,255,0.35); }
.btn-search svg { width: 18px; height: 18px; }

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 28px; font-weight: 800; color: white; letter-spacing: -0.5px; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* =============================================
   PROPERTY CARDS
   ============================================= */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.prop-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.prop-card.locked { position: relative; cursor: default; }
.prop-card.locked .prop-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.1);
}

.prop-img-wrap { position: relative; height: 220px; overflow: hidden; }
.prop-img-wrap img { width: 100%; height: 100%; transition: transform 0.4s ease; }
.prop-card:not(.locked):hover .prop-img-wrap img { transform: scale(1.06); }

.prop-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--blue); color: white;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 4px;
}
.prop-badge.sale { background: var(--orange); }
.prop-badge.new { background: var(--green); }

.prop-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.prop-fav:hover { transform: scale(1.1); }
.prop-fav svg { width: 16px; height: 16px; stroke: var(--gray-600); fill: none; }
.prop-fav.active svg { fill: #E53E3E; stroke: #E53E3E; }

.lock-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(27,45,79,0.72);
  backdrop-filter: blur(3px);
}
.lock-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lock-icon svg { width: 22px; height: 22px; stroke: white; fill: none; }
.lock-overlay p { color: white; font-size: 13px; font-weight: 600; text-align: center; max-width: 160px; line-height: 1.4; }
.lock-overlay .btn-unlock {
  padding: 8px 20px; background: var(--blue); color: white;
  border-radius: 50px; font-size: 12px; font-weight: 700;
  transition: var(--transition);
}
.lock-overlay .btn-unlock:hover { background: var(--blue-dark); }

.prop-body { padding: 16px 18px; }
.prop-price { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 4px; }
.prop-price span { font-size: 13px; font-weight: 500; color: var(--gray-600); }
.prop-name { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.prop-loc { font-size: 13px; color: var(--gray-600); display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.prop-loc svg { width: 12px; height: 12px; flex-shrink: 0; }
.prop-details { display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.prop-detail { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray-600); font-weight: 500; }
.prop-detail svg { width: 14px; height: 14px; color: var(--blue); }

/* Gate More Banner */
.gate-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A6E 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: white;
}
.gate-banner h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.gate-banner p { color: rgba(255,255,255,0.70); margin-bottom: 24px; font-size: 15px; }
.gate-banner .gate-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { padding: 12px 28px; background: white; color: var(--navy); border-radius: 50px; font-size: 15px; font-weight: 700; transition: var(--transition); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.btn-outline-white { padding: 12px 28px; background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); border-radius: 50px; font-size: 15px; font-weight: 700; transition: var(--transition); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--navy); padding: 40px 0; }
.stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: 1px solid rgba(255,255,255,0.1);
  gap: 0;
}
.stat-item {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 38px; font-weight: 800; color: white; letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.stat-num span { color: #7AB8FF; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.60); font-weight: 500; }

/* =============================================
   WHY US
   ============================================= */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-stack { position: relative; }
.why-img-main { border-radius: var(--radius-lg); overflow: hidden; height: 480px; box-shadow: var(--shadow-xl); }
.why-img-main img { width: 100%; height: 100%; }
.why-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}
.why-img-accent img { width: 100%; height: 100%; }
.why-card {
  position: absolute; top: 32px; left: -24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 14px; align-items: center;
}
.why-card-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-card-icon svg { width: 22px; height: 22px; color: var(--blue); }
.why-card-text .num { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.why-card-text .lbl { font-size: 12px; color: var(--gray-600); }

.why-content .section-header { text-align: left; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-point { display: flex; gap: 16px; }
.why-point-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-point-icon svg { width: 20px; height: 20px; color: var(--blue); }
.why-point-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.why-point-text p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* =============================================
   CITIES / BROWSE
   ============================================= */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.city-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  height: 180px; cursor: pointer;
  transition: var(--transition);
}
.city-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.city-card:hover img { transform: scale(1.08); }
.city-card:first-child { grid-row: span 2; height: auto; }
.city-card img { width: 100%; height: 100%; transition: transform 0.4s ease; }
.city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}
.city-card-text { position: absolute; bottom: 16px; left: 16px; color: white; }
.city-card-text h4 { font-size: 18px; font-weight: 700; line-height: 1.2; }
.city-card-text span { font-size: 13px; opacity: 0.8; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: #FFC107; }
.testi-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray-600); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #004ECC 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); color: white; font-weight: 700; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.80); font-size: 16px; max-width: 500px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: white; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand .logo-text span { color: #7AB8FF; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-btn:hover { background: var(--blue); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: #7AB8FF; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.40);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-bottom a:hover { color: #7AB8FF; }

/* =============================================
   LISTINGS PAGE SPECIFIC
   ============================================= */
.listings-page-header {
  padding: 120px 0 48px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.listings-page-header h1 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.listings-page-header p { color: var(--gray-600); font-size: 15px; }
.listings-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.listings-count { font-size: 15px; color: var(--gray-600); font-weight: 500; }
.listings-count strong { color: var(--navy); }
.listings-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); background: white;
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.filter-sort {
  padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); background: white;
  appearance: none; cursor: pointer;
}

/* =============================================
   PROPERTY DETAIL PAGE
   ============================================= */
.property-detail { padding-top: 80px; }
.prop-detail-hero { position: relative; height: 520px; overflow: hidden; }
.prop-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.prop-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
}
.prop-detail-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: 1280px; margin: 0 auto; padding: 0 24px 32px;
  color: white;
}
.prop-detail-price { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.prop-detail-address { font-size: 18px; opacity: 0.90; }
.prop-detail-body { max-width: 1280px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.prop-features { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.prop-feature { background: var(--gray-50); border-radius: var(--radius); padding: 12px 18px; display: flex; align-items: center; gap: 8px; }
.prop-feature svg { width: 18px; height: 18px; color: var(--blue); }
.prop-feature span { font-weight: 600; color: var(--navy); }
.prop-desc h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.prop-desc p { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.prop-contact-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 84px;
}
.prop-contact-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.prop-contact-card p { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-input {
  padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 14px; color: var(--gray-900); transition: var(--transition); width: 100%;
}
.form-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,106,255,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-contact { width: 100%; padding: 13px; background: var(--blue); color: white; border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: var(--transition); }
.btn-contact:hover { background: var(--blue-dark); }
.agent-card { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.agent-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.agent-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.agent-title { font-size: 12px; color: var(--gray-600); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero { padding: 140px 0 80px; background: linear-gradient(135deg, var(--navy) 0%, #1E3A6E 100%); text-align: center; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,5vw,56px); color: white; font-weight: 700; margin-bottom: 16px; }
.about-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--blue-light); }
.team-name { font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.team-role { font-size: 13px; color: var(--gray-600); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 32px 24px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--blue); background: var(--blue-light); }
.value-icon { width: 56px; height: 56px; background: var(--blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-icon svg { width: 26px; height: 26px; color: white; }
.value-card h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 16px; }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page { padding: 120px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.contact-info p { color: var(--gray-600); margin-bottom: 32px; font-size: 15px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-item-text h5 { font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: 14px; }
.contact-item-text p { font-size: 14px; color: var(--gray-600); }
.contact-form-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.form-full { grid-column: 1 / -1; }
.btn-submit { width: 100%; padding: 14px; background: var(--blue); color: white; border-radius: var(--radius); font-size: 16px; font-weight: 700; transition: var(--transition); margin-top: 8px; }
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,106,255,0.3); }

/* =============================================
   AUTH PAGES (LOGIN / SIGNUP)
   ============================================= */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
  background: linear-gradient(160deg, var(--navy) 0%, #1E3A6E 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(0,106,255,0.15);
  border-radius: 50%;
}
.auth-left::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(0,163,173,0.10);
  border-radius: 50%;
}
.auth-left-content { position: relative; z-index: 1; max-width: 380px; }
.auth-left-content .logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: white; margin-bottom: 40px; }
.auth-left-content .logo span { color: #7AB8FF; }
.auth-left-content h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: white; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.auth-left-content p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.auth-features { display: flex; flex-direction: column; gap: 14px; }
.auth-feature { display: flex; gap: 12px; align-items: center; }
.auth-feature-dot { width: 8px; height: 8px; background: #7AB8FF; border-radius: 50%; flex-shrink: 0; }
.auth-feature span { font-size: 14px; color: rgba(255,255,255,0.75); }
.auth-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px; background: white;
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.auth-form-wrap .auth-sub { font-size: 14px; color: var(--gray-600); margin-bottom: 32px; }
.auth-sub a { color: var(--blue); font-weight: 600; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.input-group { display: flex; flex-direction: column; gap: 6px; }
.input-group label { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.input-wrap { position: relative; }
.input-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--gray-400); }
.input-wrap input { width: 100%; padding: 12px 14px 12px 40px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 14px; transition: var(--transition); }
.input-wrap input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,106,255,0.1); }
.auth-extras { display: flex; align-items: center; justify-content: space-between; }
.checkbox-wrap { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); cursor: pointer; }
.checkbox-wrap input { accent-color: var(--blue); }
.forgot-link { font-size: 13px; color: var(--blue); font-weight: 600; }
.btn-auth { padding: 14px; background: var(--blue); color: white; border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: var(--transition); }
.btn-auth:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,106,255,0.3); }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--gray-400); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.btn-google {
  padding: 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--gray-800); background: white;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
}
.btn-google:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn-google img { width: 18px; height: 18px; }
.auth-terms { font-size: 12px; color: var(--gray-400); text-align: center; line-height: 1.6; }
.auth-terms a { color: var(--blue); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img-stack { max-width: 500px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prop-detail-body { grid-template-columns: 1fr; }
  .prop-contact-card { position: static; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .search-fields { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .city-card:first-child { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat-div { display: none; }
}
