/* ============================================================
   PropEstate — Main Stylesheet
   Bootstrap 5 base + custom design system
   ============================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --primary:       #1d4ed8;
  --primary-dark:  #1e40af;
  --primary-light: #dbeafe;
  --secondary:     #0f172a;
  --accent:        #f59e0b;
  --success:       #10b981;
  --danger:        #ef4444;
  --warning:       #f59e0b;
  --text-dark:     #0f172a;
  --text-mid:      #475569;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --bg-light:      #f8fafc;
  --bg-card:       #ffffff;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.12);
  --transition:    0.2s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.font-display { font-family: 'Playfair Display', serif; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ── UTILITY ── */
.text-primary  { color: var(--primary) !important; }
.bg-primary    { background-color: var(--primary) !important; }
.bg-light-blue { background-color: var(--primary-light); }
.bg-dark-navy  { background-color: var(--secondary); }

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
}

/* ── NAVBAR ── */
.navbar-main {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-main .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.navbar-main .navbar-brand span { color: var(--accent); }
.navbar-main .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 1.25rem .9rem !important;
  transition: color var(--transition);
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--primary) !important; }
.navbar-main .nav-link.active { border-bottom: 2px solid var(--primary); }
.navbar-main .btn-nav-login {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  padding: .45rem 1.1rem;
  font-weight: 600;
  font-size: .875rem;
  transition: all var(--transition);
}
.navbar-main .btn-nav-login:hover {
  background: var(--primary);
  color: #fff;
}
.navbar-main .btn-nav-post {
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  padding: .45rem 1.1rem;
  font-weight: 600;
  font-size: .875rem;
  margin-left: .5rem;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1d4ed8 100%);
  overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-stat-item { color: rgba(255,255,255,.85); }
.hero-stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-item span { font-size: .8rem; }

/* Hero Search Box */
.search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.search-box .form-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-mid);
  margin-bottom: .3rem;
}
.search-box .form-control,
.search-box .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  padding: .6rem .9rem;
  font-size: .9rem;
  color: var(--text-dark);
  transition: border var(--transition);
}
.search-box .form-control:focus,
.search-box .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.btn-search {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .7rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition);
  width: 100%;
}
.btn-search:hover { background: var(--primary-dark); color: #fff; }
.btn-map-search {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: .7rem 1.2rem;
  font-weight: 600;
  font-size: .9rem;
  width: 100%;
  transition: all var(--transition);
}
.btn-map-search:hover { background: var(--primary-light); }

/* ── PROPERTY TYPE CARDS ── */
.type-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}
.type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--primary);
}
.type-card i {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: .5rem;
}
.type-card .type-name {
  font-weight: 700;
  font-size: .9rem;
  display: block;
}
.type-card .type-count {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .2rem;
}

/* ── PROPERTY CARD ── */
.property-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #cbd5e1;
}
.property-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.property-card-img .swiper { height: 220px; }
.property-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.04); }

/* Card tags (Featured/Hot/New) */
.card-tags {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  gap: .4rem;
  z-index: 2;
}
.tag-featured { background: var(--primary); color: #fff; }
.tag-hot      { background: #ef4444;         color: #fff; }
.tag-new      { background: #10b981;          color: #fff; }
.card-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .2rem .55rem;
  border-radius: 4px;
}
.card-type-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}
.card-status-badge {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 30px;
}
.status-ready { background: #dcfce7; color: #166534; }
.status-uc    { background: #fef9c3; color: #854d0e; }

/* Save heart button */
.btn-save {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-save i { font-size: 1rem; color: var(--text-mid); transition: color var(--transition); }
.btn-save.saved i { color: #ef4444; }
.btn-save:hover { background: #fff; transform: scale(1.1); }

.property-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .2rem;
}
.property-price .per-sqft {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: .4rem;
}
.property-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .3rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-location {
  font-size: .82rem;
  color: var(--text-mid);
  margin-bottom: .75rem;
}
.property-location i { color: var(--primary); font-size: .85rem; }
.property-specs {
  display: flex;
  gap: .9rem;
  padding: .75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: .75rem;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--text-mid);
  font-weight: 500;
}
.spec-item i { color: var(--primary); font-size: .9rem; }
.property-card-actions {
  display: flex;
  gap: .5rem;
  margin-top: auto;
}
.btn-card-contact {
  flex: 1;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .5rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-card-contact:hover { background: var(--primary-dark); }
.btn-card-view {
  flex: 1;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: .5rem;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-card-view:hover { background: var(--primary-light); }

/* ── FILTER SIDEBAR ── */
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.filter-sidebar h6 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-mid);
  margin-bottom: .75rem;
}
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-check-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem 0;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-dark);
}
.active-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.filter-tag {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #bfdbfe;
  border-radius: 30px;
  padding: .25rem .75rem;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.filter-tag .remove { cursor: pointer; font-size: .85rem; }

/* ── MAP ── */
#property-map { height: 500px; border-radius: var(--radius-md); z-index: 1; }
#homepage-map { height: 460px; border-radius: var(--radius-md); z-index: 1; }
.map-section { background: var(--bg-light); }
.map-type-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.map-filter-btn {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.map-filter-btn.active,
.map-filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Leaflet popup */
.leaflet-popup-content { margin: 0; padding: 0; min-width: 180px; }
.map-popup-card { padding: .75rem; }
.map-popup-card img { width: 100%; height: 100px; object-fit: cover; border-radius: 6px; margin-bottom: .5rem; }
.map-popup-price { font-weight: 800; color: var(--primary); font-size: 1rem; }
.map-popup-title { font-size: .83rem; font-weight: 600; margin: .2rem 0; }
.map-popup-link {
  display: block;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: .3rem;
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 600;
  margin-top: .5rem;
}

/* ── WHY CHOOSE US ── */
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-icon i { font-size: 1.5rem; color: var(--primary); }
.why-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: .5rem;
}
.testimonial-card .review-text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author h6 { margin: 0; font-size: .9rem; font-weight: 700; }
.testimonial-author span { font-size: .78rem; color: var(--text-mid); }

/* ── LOAN PARTNERS ── */
.partner-logo {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  transition: all var(--transition);
}
.partner-logo:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.partner-logo img { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(30%); }
.partner-logo span { font-size: .85rem; font-weight: 700; color: var(--text-mid); }

/* ── FOOTER ── */
.footer-main {
  background: var(--secondary);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .88rem;
}
.footer-contact-item i { color: var(--accent); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float i { font-size: 1.7rem; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── ENQUIRY MODAL ── */
.modal-content { border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-lg); }
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.modal-title { font-weight: 800; font-size: 1.05rem; }
.modal-body { padding: 1.5rem; }
.modal-footer { border-top: 1px solid var(--border); padding: 1rem 1.5rem; }
.enquiry-property-title {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── BUTTONS ── */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .65rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  transition: background var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; }
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: .6rem 1.4rem;
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover { background: var(--primary); color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb-section {
  background: var(--bg-light);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb { margin: 0; font-size: .83rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }
.breadcrumb-item a { color: var(--text-mid); }
.breadcrumb-item.active { color: var(--text-dark); font-weight: 600; }

/* ── PAGINATION ── */
.page-link {
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  margin: 0 2px;
  font-size: .85rem;
  font-weight: 600;
}
.page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}
.page-link:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

/* ── FORM STYLES ── */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  padding: .6rem .9rem;
  color: var(--text-dark);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-label { font-weight: 600; font-size: .875rem; color: var(--text-dark); }
.form-text { font-size: .78rem; color: var(--text-light); }
.invalid-feedback { font-size: .8rem; }

/* ── ALERTS & FLASHES ── */
.alert-flash {
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* ── LOADING SPINNER ── */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}
.spinner-overlay.show { display: flex; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-mid);
}
.empty-state i { font-size: 3.5rem; color: var(--border); display: block; margin-bottom: 1rem; }
.empty-state h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .section-padding { padding: 50px 0; }
  .hero-section { min-height: auto; padding: 3rem 0; }
  .search-box { margin-top: 2rem; }
  .filter-sidebar { position: static; }
  .hero-stats { gap: 1.2rem; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 1.8rem; }
  .property-card-img { height: 180px; }
  .property-card-img img { height: 180px; }
  .type-card { padding: 1rem .75rem; }
  .footer-main { padding: 40px 0 0; }
}
