:root {
  --bg: #f5f6fa;
  --card: rgba(255,255,255,0.72);
  --border: rgba(255,255,255,0.65);
  --text: #1f2937;
  --muted: #6b7280;
  --airbnb: #ff385c;
  --airbnb-dark: #e31c5f;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.16);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.page-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  filter: blur(0.2px);
}

.sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.45);
}

.logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
}

.filters-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 18px;
}

.filter-box, .reset-btn {
  width: 100%;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  font-size: 18px;
}

.filter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4b5563;
}

.reset-btn {
  border: none;
  background: linear-gradient(135deg, #ff5a72, var(--airbnb));
  color: #fff;
  font-weight: 700;
}

.main-content {
  padding: 24px 30px 30px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.top-links {
  display: flex;
  gap: 34px;
  font-size: 22px;
  font-weight: 600;
}

.top-links a {
  color: #7b8190;
  text-decoration: none;
}

.top-links a.active { color: #111827; }

.profile-pill {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(17,24,39,0.08);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
}

.property-card, .stats-panel {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: 28px;
}

.property-card {
  padding: 18px;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  background: #e5e7eb;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.04));
}

.hero-overlay-metric {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 46px;
  font-weight: 800;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 16px 0 20px;
}

.thumb {
  height: 84px;
  border-radius: 16px;
  background: linear-gradient(135deg, #dbe4ea, #f8fafc);
  border: 1px solid rgba(17,24,39,0.06);
}

.reviews-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: 22px;
  overflow: hidden;
}

.review-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17,24,39,0.06);
}
.review-item:last-child { border-bottom: none; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1d5db, #f3f4f6);
}
.review-name { font-weight: 700; margin-bottom: 4px; }
.review-text { color: var(--muted); }
.review-rating { color: #f59e0b; font-weight: 700; }

.stats-panel {
  padding: 22px;
}

.main-value {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17,24,39,0.08);
  margin-bottom: 8px;
}
.main-value span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 16px;
}
.main-value strong {
  font-size: 42px;
  line-height: 1;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.stat-row span { color: var(--muted); }
.stat-row strong { font-size: 24px; }

.map-box {
  margin: 22px 0;
  height: 160px;
  border-radius: 22px;
  background: linear-gradient(135deg, #d9f2eb, #dbeafe 60%, #93c5fd);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.cta-airbnb {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--airbnb), var(--airbnb-dark));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(255, 56, 92, 0.28);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.10);
  backdrop-filter: blur(0.5px);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100vw - 32px));
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.26);
  padding: 28px;
  z-index: 10;
}

.modal-badge {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255, 56, 92, 0.1);
  color: var(--airbnb-dark);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
}

.modal h1 {
  font-size: 40px;
  line-height: 1.08;
  margin: 0 0 12px;
}

.modal p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.lead-form { display: grid; gap: 16px; }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
  background: #fff;
}
.field input:focus {
  border-color: rgba(255, 56, 92, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 56, 92, 0.12);
}

.submit-btn {
  border: none;
  border-radius: 18px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--airbnb), var(--airbnb-dark));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-top: 4px;
  cursor: pointer;
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #fff7f8 0%, #f8fafc 100%);
}

.thankyou-card {
  width: min(720px, 100%);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
}

.thankyou-card h1 { margin-top: 0; font-size: 42px; }
.thankyou-card p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.back-link {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--airbnb), var(--airbnb-dark));
  font-weight: 700;
}

@media (max-width: 1100px) {
  body { overflow: auto; }
  .page-shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .main-content { padding: 16px; }
  .topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .field-grid, .thumb-row { grid-template-columns: 1fr; }
  .hero-image { height: 240px; }
  .hero-overlay-metric { font-size: 32px; }
  .modal { padding: 22px; }
  .modal h1 { font-size: 30px; }
}
