/* ============================================================
   Lisney / TestLisney — Main Stylesheet
   Commercial brand: Lisney Red  (#C8102E)
   Residential brand: Sotheby's Navy (#1B2744)
   ============================================================ */

:root {
  --lisney-red: #C8102E;
  --lisney-red-dark: #a00d24;
  --lisney-red-light: #f5e6e8;
  --sothebys-navy: #1B2744;
  --sothebys-navy-dark: #111a30;
  --sothebys-navy-light: #e8eaf0;
  --sothebys-gold: #C4965A;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --border-light: #e9ecef;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.sans { font-family: 'Arial', 'Helvetica', sans-serif; }
.lead { font-size: 1.15rem; color: var(--text-muted); }

/* --- Layout Utilities --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Header / Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.navbar-logo { height: 48px; width: auto; }
.navbar-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.navbar-logo-text .commercial { color: var(--lisney-red); }
.navbar-logo-text .residential { color: var(--sothebys-navy); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border-radius: 3px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--lisney-red); }
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  z-index: 500;
  padding: 0.5rem 0;
}
.nav-links .nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-links .nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}
.nav-links .nav-dropdown-menu a:hover { background: var(--off-white); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.hamburger { display: none; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); margin: 5px 0;
  transition: var(--transition);
}

/* --- Section Switcher Banner --- */
.section-switcher {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
}
.section-switcher .container { display: flex; gap: 1rem; align-items: center; }
.section-tab {
  padding: 0.4rem 1.2rem;
  border-radius: 3px;
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.section-tab.commercial { color: var(--lisney-red); border-color: var(--lisney-red); }
.section-tab.commercial:hover, .section-tab.commercial.active {
  background: var(--lisney-red); color: var(--white);
}
.section-tab.residential { color: var(--sothebys-navy); border-color: var(--sothebys-navy); }
.section-tab.residential:hover, .section-tab.residential.active {
  background: var(--sothebys-navy); color: var(--white);
}

/* --- Hero Banner --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sothebys-navy) 0%, #2d4070 100%);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 3rem 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.9; }
.hero-search {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 700px;
}
.hero-search-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.search-tab {
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
}
.search-tab.active { background: var(--white); color: var(--text-dark); }
.search-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.search-row select, .search-row input {
  flex: 1; min-width: 160px;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  background: var(--white);
}
.search-row button {
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--lisney-red);
  color: var(--white);
  transition: background var(--transition);
}
.search-row button:hover { background: var(--lisney-red-dark); }

/* Hero variants */
.hero-commercial .hero-bg {
  background: linear-gradient(135deg, #3a0009 0%, var(--lisney-red-dark) 100%);
}
.hero-residential .hero-bg {
  background: linear-gradient(135deg, var(--sothebys-navy-dark) 0%, var(--sothebys-navy) 100%);
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px; border: 2px solid transparent;
  font-size: 0.88rem; font-weight: 700;
  font-family: Arial, sans-serif;
  text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--lisney-red); color: var(--white); border-color: var(--lisney-red); }
.btn-primary:hover { background: var(--lisney-red-dark); border-color: var(--lisney-red-dark); }
.btn-navy { background: var(--sothebys-navy); color: var(--white); border-color: var(--sothebys-navy); }
.btn-navy:hover { background: var(--sothebys-navy-dark); border-color: var(--sothebys-navy-dark); }
.btn-outline-red { background: transparent; color: var(--lisney-red); border-color: var(--lisney-red); }
.btn-outline-red:hover { background: var(--lisney-red); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--sothebys-navy); border-color: var(--sothebys-navy); }
.btn-outline-navy:hover { background: var(--sothebys-navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--text-dark); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); cursor: pointer; }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.badge-red { background: var(--lisney-red); color: var(--white); }
.badge-navy { background: var(--sothebys-navy); color: var(--white); }
.badge-gold { background: var(--sothebys-gold); color: var(--white); }
.badge-success { background: #28a745; color: var(--white); }
.badge-warning { background: #ffc107; color: #000; }
.card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.card-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.card-price { font-size: 1.15rem; font-weight: 700; color: var(--lisney-red); }
.card-price.navy { color: var(--sothebys-navy); }
.card-footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--border-light); }

/* Property card specifics */
.property-card .card-img-wrapper { position: relative; overflow: hidden; }
.property-card .card-img-wrapper img { transition: transform 0.4s ease; }
.property-card:hover .card-img-wrapper img { transform: scale(1.04); }
.property-card .status-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
}
.property-meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; }
.property-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* --- Section Branding Strips --- */
.brand-strip-commercial {
  background: var(--lisney-red);
  color: var(--white);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-strip-residential {
  background: var(--sothebys-navy);
  color: var(--white);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Section Headings --- */
.section-heading { margin-bottom: 2.5rem; }
.section-heading .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.section-heading .label.red { color: var(--lisney-red); }
.section-heading .label.navy { color: var(--sothebys-navy); }
.section-heading h2 { margin-bottom: 0.75rem; }
.divider {
  width: 48px; height: 3px;
  margin: 0.75rem 0;
  border-radius: 2px;
}
.divider.red { background: var(--lisney-red); }
.divider.navy { background: var(--sothebys-navy); }
.divider.gold { background: var(--sothebys-gold); }
.divider.center { margin: 0.75rem auto; }

/* --- Property Listing Page --- */
.listing-header {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}
.filter-bar {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.filter-bar form { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 0.3rem; min-width: 140px; flex: 1; }
.filter-group label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.filter-group select, .filter-group input {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 0.9rem;
  background: var(--white);
}
.filter-group select:focus, .filter-group input:focus {
  outline: none;
  border-color: var(--lisney-red);
}
.results-count { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; font-family: Arial, sans-serif; }

/* --- Pagination --- */
.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.page-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--lisney-red); color: var(--white); border-color: var(--lisney-red);
}
.page-link.navy:hover, .page-link.navy.active {
  background: var(--sothebys-navy); border-color: var(--sothebys-navy);
}

/* --- Property Detail Page --- */
.property-gallery { position: relative; margin-bottom: 2rem; }
.property-gallery .main-image { width: 100%; height: 480px; object-fit: cover; border-radius: 6px; }
.gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.5rem; overflow-x: auto; }
.gallery-thumbs img {
  width: 90px; height: 66px;
  object-fit: cover; border-radius: 4px;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--lisney-red); }
.property-detail-header { margin-bottom: 1.5rem; }
.property-detail-header h1 { margin-bottom: 0.25rem; }
.property-detail-header .address { color: var(--text-muted); margin-bottom: 0.75rem; }
.property-price-tag { font-size: 2rem; font-weight: 700; color: var(--lisney-red); }
.property-price-tag.navy { color: var(--sothebys-navy); }
.property-specs { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.spec-item {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--off-white); padding: 0.5rem 0.9rem;
  border-radius: 4px; font-size: 0.88rem;
}
.ber-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; color: var(--white);
  background: #4caf50;
}
.ber-A1,.ber-A2,.ber-A3 { background: #007a33; }
.ber-B1,.ber-B2,.ber-B3 { background: #4CAF50; }
.ber-C1,.ber-C2,.ber-C3 { background: #8BC34A; }
.ber-D1,.ber-D2 { background: #FFC107; color: #000; }
.ber-E1,.ber-E2 { background: #FF9800; }
.ber-F { background: #F44336; }
.ber-G { background: #B71C1C; }
.property-tabs { border-bottom: 2px solid var(--border-light); margin-bottom: 1.5rem; display: flex; gap: 0; }
.property-tab {
  padding: 0.75rem 1.25rem; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  font-family: Arial, sans-serif; font-size: 0.88rem; font-weight: 700;
  transition: all var(--transition);
}
.property-tab.active.red { border-bottom-color: var(--lisney-red); color: var(--lisney-red); }
.property-tab.active.navy { border-bottom-color: var(--sothebys-navy); color: var(--sothebys-navy); }
.agent-card { border: 1px solid var(--border-light); border-radius: 6px; padding: 1.5rem; }
.agent-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 0.75rem; }
.agent-card h4 { margin-bottom: 0.25rem; }
.map-placeholder {
  width: 100%; height: 300px; border-radius: 6px;
  background: linear-gradient(135deg, #e8eaf0 0%, #d0d5e8 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; border: 1px dashed var(--border-light);
}

/* --- People --- */
.person-card { text-align: center; }
.person-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; margin: 0 auto 1rem;
  max-width: 140px;
  border: 3px solid var(--border-light);
  transition: border-color var(--transition);
}
.person-card:hover img { border-color: var(--lisney-red); }
.person-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.person-card .role { font-size: 0.8rem; color: var(--text-muted); }
.person-card .dept {
  font-size: 0.75rem; font-weight: 700; font-family: Arial, sans-serif;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 0.25rem;
}
.dept-residential { color: var(--sothebys-navy); }
.dept-commercial { color: var(--lisney-red); }

/* --- Forms --- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 4px; font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus, .form-select:focus {
  outline: none; border-color: var(--lisney-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  font-family: Arial, sans-serif;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { color: #dc3545; font-size: 0.8rem; margin-top: 0.25rem; }
.form-success { color: #28a745; font-size: 0.88rem; margin-bottom: 1rem; }

/* --- Alerts --- */
.alert {
  padding: 0.85rem 1.25rem; border-radius: 4px;
  margin-bottom: 1rem; font-size: 0.9rem;
  border-left: 4px solid;
}
.alert-success { background: #d4edda; border-color: #28a745; color: #155724; }
.alert-error { background: #f8d7da; border-color: #dc3545; color: #721c24; }
.alert-info { background: #d1ecf1; border-color: #17a2b8; color: #0c5460; }

/* --- Footer --- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--white); }
.footer-offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1rem; }
.office { font-size: 0.85rem; }
.office h5 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.88rem; }
.footer-brands { display: flex; gap: 2rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-brand-commercial { font-size: 1.1rem; font-weight: 700; color: var(--lisney-red); }
.footer-brand-residential { font-size: 1.1rem; font-weight: 700; color: var(--sothebys-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--white);
  transition: background var(--transition);
}
.social-link:hover { background: var(--lisney-red); }

/* --- Commercial Accent --- */
.accent-commercial { color: var(--lisney-red); }
.accent-residential { color: var(--sothebys-navy); }
.accent-gold { color: var(--sothebys-gold); }
.bg-commercial { background: var(--lisney-red); color: var(--white); }
.bg-residential { background: var(--sothebys-navy); color: var(--white); }
.bg-light-red { background: var(--lisney-red-light); }
.bg-light-navy { background: var(--sothebys-navy-light); }
.border-top-red { border-top: 3px solid var(--lisney-red); }
.border-top-navy { border-top: 3px solid var(--sothebys-navy); }

/* --- About / Services Page --- */
.feature-box {
  padding: 2rem; border-radius: 6px;
  border-top: 4px solid var(--lisney-red);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.feature-box.navy { border-top-color: var(--sothebys-navy); }
.feature-box .icon { font-size: 2rem; margin-bottom: 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1.5rem; text-align: center; }
.stat-item .number { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.stat-item .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; font-family: Arial, sans-serif; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; box-shadow: var(--shadow-md); border-top: 1px solid var(--border-light); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero { min-height: 360px; }
  .search-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .property-gallery .main-image { height: 280px; }
}

@media (max-width: 480px) {
  .navbar-logo-text { font-size: 1.2rem; }
  h1 { font-size: 1.6rem; }
}
