/* ===== CITY-DATA — shared stylesheet ===== */

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

:root{
  --bg: #0a0a0d;
  --bg-elevated: #131318;
  --bg-elevated-2: #1a1a21;
  --bg-elevated-3: #1e1e27;
  --border: #24242c;
  --border-light: #33333d;
  --text: #f4f4f6;
  --text-secondary: #9d9da8;
  --text-muted: #6b6b76;
  --blue: #3f5efb;
  --blue-hover: #5a76ff;
  --blue-tint: rgba(63,94,251,0.14);
  --blue-tint-border: rgba(63,94,251,0.35);
  --amber: #e0a84e;
  --green: #4caf7d;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 30px rgba(0,0,0,0.35);
  --maxw: 1240px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Heebo', 'Segoe UI', Tahoma, sans-serif;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ list-style: none; margin: 0; padding: 0; }
img{ max-width: 100%; display: block; }

:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,13,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo{
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-left: auto;
  white-space: nowrap;
}
.logo span{ color: var(--blue); }

.main-nav{
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a{
  font-size: 14.5px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color .15s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a.active{
  color: var(--text);
  border-bottom-color: var(--blue);
}

.header-search{
  position: relative;
  flex: 1;
  max-width: 300px;
}
.header-search input{
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 9px 36px 9px 14px;
  color: var(--text);
  font-size: 13.5px;
  font-family: inherit;
}
.header-search input::placeholder{ color: var(--text-muted); }
.header-search svg{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.header-icons{
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.icon-btn:hover{ color: var(--text); border-color: var(--text-muted); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .15s;
  white-space: nowrap;
}
.btn-primary{
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover{ background: var(--blue-hover); }
.btn-outline{
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-outline:hover{ border-color: var(--text-secondary); }
.btn-ghost{
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 12px;
}
.btn-ghost:hover{ color: var(--text); }
.btn-sm{ padding: 8px 14px; font-size: 13.5px; }
.btn-block{ width: 100%; }

.mobile-menu-btn{
  display: none;
  background: none;
  border: none;
  color: var(--text);
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-cols{
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col h4{
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 14px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-col a:hover{ color: var(--text); }
.footer-brand{ text-align: left; }
.footer-brand .logo{ margin: 0 0 8px; }
.footer-brand p{
  color: var(--text-muted);
  font-size: 13.5px;
  max-width: 280px;
  margin: 0;
}
.footer-bottom{
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer-bottom-links{ display: flex; gap: 16px; }

/* ===== Hero ===== */
.hero{
  padding: 56px 0 40px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-image-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image-wrap img{ width: 100%; height: 340px; object-fit: cover; }
.hero-image-caption{
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(10,10,13,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-secondary);
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-border);
  color: #a9b8ff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero-copy h1{
  font-size: 38px;
  line-height: 1.28;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.hero-copy h1 .accent{ color: var(--blue); }
.hero-copy p{
  color: var(--text-secondary);
  font-size: 15.5px;
  margin: 0 0 28px;
  max-width: 460px;
}
.hero-actions{ display: flex; gap: 12px; }

/* ===== Stats bar ===== */
.stats-bar{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  margin-top: 48px;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.stat + .stat{ border-right: 1px solid var(--border); }
.stat .num{
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.stat .label{ font-size: 13px; color: var(--text-muted); }

/* ===== Section headers ===== */
.section{ padding: 64px 0; }
.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 20px;
}
.section-head.center{
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-icon{
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}
.section-head h2{
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}
.section-head p{
  color: var(--text-secondary);
  font-size: 14.5px;
  margin: 0;
  max-width: 520px;
}
.link-arrow{
  font-size: 14px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.link-arrow:hover{ color: var(--text); }

/* ===== Feature grid (why choose us) ===== */
.feature-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card.primary{
  background: linear-gradient(135deg, var(--blue), #2b3fc9);
  border-color: transparent;
}
.feature-card.primary .feature-desc{ color: rgba(255,255,255,0.82); }
.feature-card.primary .feature-title{ color: #fff; }
.feature-card.primary .feature-link{ color: #fff; }
.feature-icon{
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.feature-card.primary .feature-icon{ background: rgba(255,255,255,0.18); }
.feature-title{ font-size: 17px; font-weight: 700; }
.feature-desc{ font-size: 13.5px; color: var(--text-secondary); }
.feature-link{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.feature-media{
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.feature-media img{ width: 100%; height: 130px; object-fit: cover; }
.feature-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.badge-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== Property cards ===== */
.property-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.property-grid.cols-2{ grid-template-columns: repeat(2,1fr); }
.property-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
}
.property-image{
  position: relative;
  height: 160px;
}
.property-image img{ width: 100%; height: 100%; object-fit: cover; }
.property-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #06231a;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.property-tag.pending{ background: var(--amber); color: #241a05; }
.property-tag.completed{ background: var(--blue); color: #fff; }
.property-tag.tag-secondary{ left: auto; right: 12px; background: var(--green); color: #06231a; }
.source-note{ font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.property-body{ padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.property-price{ color: var(--blue); font-weight: 700; font-size: 15px; }
.property-title{ font-size: 16.5px; font-weight: 700; }
.property-location{ color: var(--text-muted); font-size: 12.5px; margin-top: -6px; }
.property-meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-secondary);
}
.property-meta div{ display: flex; align-items: center; gap: 6px; }
.property-actions{ display: flex; gap: 8px; margin-top: auto; }
.map-btn{
  width: 42px; flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
}
.map-btn:hover{ color: var(--text); }

/* ===== Steps (process) ===== */
.steps-row{
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
}
.step-bubble-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
  max-width: 180px;
}
.step-bubble-wrap:not(:last-child)::after{
  content: '';
  position: absolute;
  top: 22px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}
.step-bubble{
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.step-bubble.active{
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-tint);
}
.step-label{ font-size: 13px; color: var(--text-secondary); text-align: center; }

/* ===== Timeline (vertical) ===== */
.timeline{ position: relative; padding-right: 24px; }
.timeline::before{
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--blue) 0 6px, transparent 6px 12px);
}
.timeline-item{
  position: relative;
  padding-right: 30px;
  margin-bottom: 18px;
}
.timeline-dot{
  position: absolute;
  right: -9px;
  top: 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.timeline-item.final .timeline-dot{ background: var(--blue); color: #fff; }
.timeline-card{
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.timeline-item.final .timeline-card{
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.timeline-step-num{
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--bg-elevated-2);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.timeline-card h3{ font-size: 16.5px; margin: 0 0 8px; }
.timeline-card p{ font-size: 13.5px; color: var(--text-secondary); margin: 0; }
.timeline-note{
  margin-top: 14px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-tint-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12.5px;
  color: #b9c4ff;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.final-badge{
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== CTA panel ===== */
.cta-panel{
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  margin-top: 8px;
}
.cta-panel h3{ font-size: 21px; margin: 0 0 10px; }
.cta-panel p{ color: var(--text-secondary); font-size: 14px; max-width: 520px; margin: 0 auto 26px; }
.cta-panel .btn-row{ display: flex; justify-content: center; gap: 12px; }

/* ===== Map section ===== */
.map-section{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 320px;
}
.map-visual{
  background: var(--bg-elevated) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23131318"/></svg>');
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-visual svg{ width: 90%; height: 90%; opacity: .5; }
.map-copy{
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
}
.map-copy .section-icon{ margin-bottom: 6px; }
.map-copy h3{ font-size: 20px; margin: 0; }
.map-copy p{ color: var(--text-secondary); font-size: 13.5px; margin: 0; }

/* ===== Info cards (3-col) ===== */
.info-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.info-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--bg-elevated);
}
.info-card .section-icon{ width: 34px; height: 34px; margin-bottom: 16px; }
.info-card h4{ font-size: 15.5px; margin: 0 0 8px; }
.info-card p{ font-size: 13px; color: var(--text-secondary); margin: 0 0 12px; }
.info-card a{ font-size: 13px; color: var(--blue); font-weight: 600; }

/* ===== Page header (secondary pages) ===== */
.page-head{ padding: 48px 0 8px; }
.page-head h1{ font-size: 30px; margin: 0 0 12px; }
.page-head p{ color: var(--text-secondary); font-size: 14.5px; max-width: 640px; margin: 0; }

.page-hero{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--bg-elevated);
  margin: 32px 0;
}
.page-hero img{ border-radius: var(--radius); height: 170px; width: 100%; object-fit: cover; }
.page-hero h1{ font-size: 24px; margin: 0 0 10px; }
.page-hero p{ color: var(--text-secondary); font-size: 13.5px; margin: 0 0 14px; }
.page-hero-meta{ display: flex; gap: 20px; font-size: 13px; color: var(--text-muted); }
.page-hero-meta span{ display: flex; align-items: center; gap: 6px; }

/* ===== Form ===== */
.form-shell{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  padding: 36px;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-field{ display: flex; flex-direction: column; gap: 8px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 13.5px; font-weight: 600; color: var(--text); }
.form-field label .req{ color: var(--blue); }
.form-field label .opt{ color: var(--text-muted); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea{
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{ border-color: var(--blue); outline: none; }
.form-field textarea{ resize: vertical; min-height: 120px; }
.form-actions{
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

/* ===== Catalog filters ===== */
.filter-bar{
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 14px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 18px;
  border-radius: var(--radius);
  margin: 28px 0 32px;
}
.filter-bar select{
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13.5px;
}

.map-cta-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  padding: 32px;
}
.map-cta-card svg{ color: var(--text-muted); }
.map-cta-card h3{ font-size: 19px; margin: 0; }
.map-cta-card p{ color: var(--text-secondary); font-size: 13px; max-width: 300px; margin: 0; }

.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.page-btn{
  min-width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px;
  padding: 0 6px;
}
.page-btn.active{ background: var(--blue); color: #fff; border-color: var(--blue); }
.page-btn:hover:not(.active){ color: var(--text); }

/* ===== Step wizard indicator ===== */
.wizard-steps{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 40px 0 8px;
  max-width: 640px;
}
.wizard-steps::before{
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}
.wizard-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 0 6px;
}
.wizard-step .num{
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--text-secondary);
}
.wizard-step.active .num{
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-tint);
}
.wizard-step.done .num{ background: var(--blue); color: #fff; border-color: var(--blue); }
.wizard-step .lbl{ font-size: 13px; color: var(--text-secondary); }

/* ===== Placeholder banner ===== */
.placeholder-banner{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(224,168,78,0.1);
  border: 1px solid rgba(224,168,78,0.35);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13.5px;
  color: #e8c383;
  margin-bottom: 28px;
}
.placeholder-banner strong{ color: #f2d29e; }

/* ===== Completed deals table ===== */
.deals-table-wrap{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}
.deals-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.deals-table th{
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated-2);
  white-space: nowrap;
}
.deals-table td{
  padding: 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.deals-table tr:last-child td{ border-bottom: none; }
.deals-table td.deal-location{
  color: var(--text);
  font-weight: 700;
  font-size: 14.5px;
}
.deals-table td .sub{ display:block; color: var(--text-muted); font-size: 11.5px; margin-top: 2px; }
.deal-status{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76,175,125,0.12);
  color: var(--green);
  border: 1px solid rgba(76,175,125,0.35);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.deals-table-scroll{ overflow-x: auto; }
.deals-note{
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ===== Utility ===== */
.mt-0{ margin-top:0; }
.center{ text-align:center; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .feature-grid, .feature-row{ grid-template-columns: 1fr; }
  .property-grid{ grid-template-columns: 1fr 1fr; }
  .info-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .stat + .stat{ border-right: none; }
  .map-section{ grid-template-columns: 1fr; }
  .filter-bar{ grid-template-columns: 1fr 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .page-hero{ grid-template-columns: 1fr; }
}
@media (max-width: 700px){
  .main-nav{ display:none; }
  .mobile-menu-btn{ display:flex; align-items:center; justify-content:center; }
  .header-search{ display:none; }
  .property-grid{ grid-template-columns: 1fr; }
  .hero-copy h1{ font-size: 28px; }
  .wizard-step .lbl{ display:none; }
}
