/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f7f4ef;
  color: #2a2a2a;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: #3a5a1c; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* === HEADER / NAV === */
.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: #3a5a1c;
  letter-spacing: 0.5px;
}
.logo:hover { text-decoration: none; }
.logo span { color: #7a9a5a; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #6b7c5a; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: #3a5a1c; text-decoration: none; }
.nav-cta {
  background: #3a5a1c;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #2d4a16; text-decoration: none !important; }
.hamburger { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: #3a5a1c; }

/* === HERO === */
.hero {
  background: linear-gradient(160deg, #2d4a16 0%, #3a5a1c 30%, #5a7a3a 70%, #7a9a5a 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.hero .hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero-sm { padding: 48px 0; }
.hero-sm h1 { font-size: 32px; }
.hero-sm p { color: rgba(255,255,255,0.75); }

/* Search Box */
.search-box {
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  display: flex;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1);
}
.search-box input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #2a2a2a;
  font-family: inherit;
  border-radius: 12px 0 0 12px;
}
.search-box input::placeholder { color: #aaa; }
.search-box select {
  border: none;
  border-left: 1px solid #ede8df;
  border-radius: 0;
  padding: 16px 16px;
  font-size: 14px;
  color: #6b7c5a;
  background: transparent;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c5a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.search-box button {
  background: #3a5a1c;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.search-box button:hover { background: #2d4a16; transform: translateY(-1px); }

/* Hero Tags */
.hero-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.pill:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  text-decoration: none;
}

/* === SECTION === */
.section { padding: 64px 0; }
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2a2a2a;
}
.section-subtitle {
  font-size: 16px;
  color: #6b7c5a;
  margin-bottom: 40px;
}

/* === CARDS === */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.card-img-wrap { position: relative; overflow: hidden; }
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.card-heart {
  position: absolute;
  top: 12px;
  right: 12px;
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.card-location { font-size: 14px; color: #6b7c5a; margin-bottom: 12px; }
.card-details { display: flex; gap: 16px; margin-bottom: 12px; }
.card-detail { font-size: 13px; color: #6b7c5a; }
.card-detail strong { color: #2a2a2a; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid #ede8df; }
.card-price { font-size: 22px; font-weight: 800; color: #3a5a1c; }
.card-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }

/* === TAGS === */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.tag-green { background: #e8f5d4; color: #3a5a1c; }
.tag-outline { border: 1px solid #3a5a1c; color: #3a5a1c; background: transparent; }
.tag-category { background: #f0ebe3; color: #6b7c5a; }
.tag-kauf { background: #e8f5d4; color: #3a5a1c; }
.tag-pacht { background: #fef3cd; color: #856404; }
.tag-erbpacht { background: #d4edfc; color: #0c5a8a; }
.tag-vermietung { background: #f3e5f5; color: #7b1fa2; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary { background: #3a5a1c; color: #fff; }
.btn-primary:hover { background: #2d4a16; text-decoration: none; color: #fff; }
.btn-secondary { background: #e8f5d4; color: #3a5a1c; }
.btn-secondary:hover { background: #d4eab8; text-decoration: none; }
.btn-outline { border: 2px solid #3a5a1c; color: #3a5a1c; background: transparent; }
.btn-outline:hover { background: #3a5a1c; color: #fff; text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ede8df;
  border-radius: 8px;
  font-size: 15px;
  color: #2a2a2a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #3a5a1c;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === TRUST BAR === */
.trust-bar {
  background: #fff;
  border-top: 1px solid #ede8df;
  border-bottom: 1px solid #ede8df;
  padding: 40px 0;
}
.trust-item { text-align: center; }
.trust-number { font-size: 36px; font-weight: 800; color: #3a5a1c; }
.trust-label { font-size: 14px; color: #6b7c5a; margin-top: 4px; }

/* === CATEGORY TILES === */
.cat-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  cursor: pointer;
  display: block;
}
.cat-tile:hover { text-decoration: none; }
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  color: #fff;
}
.cat-overlay h3 { font-size: 18px; font-weight: 700; }
.cat-overlay span { font-size: 13px; opacity: 0.8; }

/* === FILTER SIDEBAR === */
.search-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 90px;
}
.filter-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #ede8df; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #2a2a2a;
}
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7c5a;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] { accent-color: #3a5a1c; width: 16px; height: 16px; }
.range-inputs { display: flex; gap: 8px; align-items: center; }
.range-inputs input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ede8df;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.range-inputs input:focus { border-color: #3a5a1c; }
.range-inputs span { color: #6b7c5a; font-size: 14px; }
.filter-toggle {
  display: none;
  background: #e8f5d4;
  color: #3a5a1c;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
}

/* === EXPOSE === */
.expose-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.expose-gallery .main-img { width: 100%; height: 400px; object-fit: cover; cursor: pointer; }
.expose-gallery .side-imgs { display: flex; flex-direction: column; gap: 8px; }
.expose-gallery .side-img { width: 100%; height: 196px; object-fit: cover; cursor: pointer; transition: opacity 0.2s; }
.expose-gallery .side-img:hover { opacity: 0.85; }
.expose-content { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.expose-info {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.expose-sidebar {
  position: sticky;
  top: 90px;
}
.expose-contact {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 16px;
}
.detail-table { width: 100%; border-collapse: collapse; }
.detail-table tr { border-bottom: 1px solid #ede8df; }
.detail-table tr:last-child { border-bottom: none; }
.detail-table td { padding: 12px 0; font-size: 15px; }
.detail-table td:first-child { color: #6b7c5a; width: 40%; }
.detail-table td:last-child { font-weight: 600; }
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #ede8df;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7c5a;
  font-size: 14px;
  overflow: hidden;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* === DASHBOARD === */
.dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.dash-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 90px;
}
.dash-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #6b7c5a;
  font-size: 15px;
  transition: all 0.2s;
}
.dash-menu a:hover, .dash-menu a.active {
  background: #e8f5d4;
  color: #3a5a1c;
  text-decoration: none;
  font-weight: 600;
}
.dash-content { min-height: 500px; }
.dash-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.dash-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.message-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ede8df;
  align-items: flex-start;
}
.message-item:last-child { border-bottom: none; }
.message-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f5d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3a5a1c;
  flex-shrink: 0;
  font-size: 16px;
}
.message-text { flex: 1; }
.message-text h4 { font-size: 15px; font-weight: 600; }
.message-text p { font-size: 14px; color: #6b7c5a; margin-top: 2px; }
.message-time { font-size: 12px; color: #9ab87a; margin-left: auto; white-space: nowrap; padding-top: 2px; }

/* === MULTI-STEP FORM === */
.steps-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.step-active .step-num { background: #3a5a1c; color: #fff; }
.step-done .step-num { background: #e8f5d4; color: #3a5a1c; }
.step-inactive .step-num { background: #ede8df; color: #6b7c5a; }
.step-label { font-size: 14px; font-weight: 500; }
.step-active .step-label { color: #3a5a1c; font-weight: 700; }
.step-inactive .step-label { color: #6b7c5a; }
.step-done .step-label { color: #3a5a1c; }
.step-line { width: 40px; height: 2px; background: #ede8df; margin: 0 12px; }
.step-line.active { background: #3a5a1c; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-actions { display: flex; justify-content: space-between; margin-top: 32px; }
.upload-zone {
  border: 2px dashed #ede8df;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  color: #6b7c5a;
  cursor: pointer;
  transition: border-color 0.2s;
}
.upload-zone:hover { border-color: #3a5a1c; }
.upload-zone p { font-size: 15px; }
.upload-zone span { font-size: 36px; display: block; margin-bottom: 12px; }

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7c5a;
  transition: all 0.2s;
}
.pagination a:hover { background: #e8f5d4; color: #3a5a1c; text-decoration: none; }
.pagination .active { background: #3a5a1c; color: #fff; }

/* === FOOTER === */
.footer {
  background: #2a2a2a;
  color: #fff;
  padding: 60px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer p, .footer a { color: #a0a0a0; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #a0a0a0;
}

/* === MISC === */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.badge-new { background: #e8f5d4; color: #3a5a1c; }
.badge-premium { background: #fef3cd; color: #856404; }
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: #6b7c5a; margin-bottom: 24px; }
.breadcrumb a { color: #6b7c5a; }
.breadcrumb a:hover { color: #3a5a1c; }
.breadcrumb .sep { color: #ccc; }
.breadcrumb .current { color: #2a2a2a; font-weight: 600; }
.heart-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7c5a;
  transition: color 0.2s;
}
.heart-btn:hover, .heart-btn.active { color: #dc3545; }
.listing-count { font-size: 14px; color: #6b7c5a; margin-bottom: 16px; }
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* CTA Banner */
.cta-section { padding: 80px 0; }
.cta-banner {
  background: linear-gradient(160deg, #2d4a16 0%, #3a5a1c 40%, #5a7a3a 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 28px; }
.btn-white {
  background: #fff;
  color: #3a5a1c;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-white:hover {
  background: #f0f0f0;
  text-decoration: none;
  color: #3a5a1c;
  transform: translateY(-2px);
}
.btn-cta {
  background: #fff;
  color: #3a5a1c;
  font-weight: 700;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  text-decoration: none;
  color: #3a5a1c;
}

/* Team */
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}
.team-img { width: 100%; height: 280px; object-fit: cover; }
.team-info { padding: 20px; }
.team-name { font-size: 18px; font-weight: 700; }
.team-role { font-size: 14px; color: #6b7c5a; margin-top: 4px; }

/* Saved search card */
.search-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.search-card-info h4 { font-size: 16px; font-weight: 600; }
.search-card-info p { font-size: 14px; color: #6b7c5a; }

/* === LISTING CARDS (Landing Page) === */
.listing-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.listing-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.listing-card:hover .listing-img img { transform: scale(1.04); }
.listing-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.listing-img .badge-new { background: rgba(232,245,212,0.9); }
.listing-img .badge-premium { background: rgba(254,243,205,0.9); }
.listing-img .heart {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #6b7c5a;
  transition: all 0.2s;
}
.listing-img .heart:hover { color: #dc3545; background: #fff; }
.listing-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.listing-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #2a2a2a;
}
.listing-location {
  font-size: 14px;
  color: #6b7c5a;
  margin-bottom: 10px;
}
.listing-details {
  font-size: 13px;
  color: #6b7c5a;
  margin-bottom: 12px;
}
.listing-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.listing-price {
  font-size: 22px;
  font-weight: 800;
  color: #3a5a1c;
  margin-top: auto;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Section alt bg */
.section-alt { background: #fff; }

/* Social links in footer */
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0 !important;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}
.social-links a:hover { background: #3a5a1c; color: #fff !important; text-decoration: none; }

/* Footer bottom links */
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #a0a0a0; }
.footer-bottom-links a:hover { color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .search-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .filter-toggle { display: block; }
  .expose-content { grid-template-columns: 1fr; }
  .expose-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero .hero-subtitle { font-size: 16px; }
  .hero { padding: 60px 0 48px; }
  .search-box { flex-direction: column; padding: 8px; }
  .search-box input { border-radius: 10px; }
  .search-box select { border-left: none; border-top: 1px solid #ede8df; width: 100%; padding: 14px 16px; }
  .search-box button { border-radius: 10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .hamburger { display: block; }
  .expose-gallery { grid-template-columns: 1fr; }
  .expose-gallery .main-img { height: 260px; }
  .expose-gallery .side-imgs { flex-direction: row; }
  .expose-gallery .side-img { height: 100px; }
  .trust-bar .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-bar { flex-wrap: wrap; gap: 8px; }
  .step-line { width: 20px; margin: 0 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .cta-banner { padding: 32px 20px; }
}
