/* ===== LOGIN PAGE ===== */
.login-page { display: flex; min-height: 100vh; }
.login-brand {
  flex: 1; background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 60px;
}
.login-brand .navbar-logo { color: #fff; font-size: 1.5rem; margin-bottom: 40px; }
.login-brand h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.login-brand p { font-size: 1rem; opacity: 0.85; line-height: 1.6; max-width: 400px; }
.login-brand .social-proof { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.login-brand .avatars { display: flex; }
.login-brand .avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; object-fit: cover; }
.login-brand .avatars img:first-child { margin-left: 0; }
.login-brand .avatar-count { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; margin-left: -8px; }
.login-brand .social-proof span { font-size: 0.9rem; opacity: 0.9; }

.login-form-panel {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 60px; position: relative;
}
.login-help { position: absolute; top: 24px; right: 24px; font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.login-form-container { width: 100%; max-width: 420px; }
.login-form-container h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.login-form-container .subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }

.auth-tabs { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 32px; }
.auth-tab {
  flex: 1; padding: 12px; text-align: center; font-weight: 600; font-size: 0.9rem;
  background: #fff; color: var(--text-muted); transition: 0.2s; cursor: pointer;
}
.auth-tab.active { background: var(--bg-alt); color: var(--text); border-bottom: 2px solid var(--primary); }

.otp-input-wrap { position: relative; }
.otp-input-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 18px; }
.otp-input-wrap .form-input { padding-left: 42px; }

.social-login { display: flex; gap: 12px; }
.social-login .btn { flex: 1; }
.social-login .btn svg { width: 18px; height: 18px; }

.login-footer { margin-top: 24px; text-align: center; font-size: 0.8rem; color: var(--text-muted); }
.login-footer a { color: var(--primary); }

/* Skip Login Link */
.skip-login-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px dashed var(--border);
  transition: all 0.2s;
}
.skip-login-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
}


/* ================================================================
   RS-HERO - pixel-perfect reference hero (rs-* classes)
   No conflicts with dark-mode.css or responsive.css
   ================================================================ */

/* Section */
.rs-hero {
  text-align: center;
  padding: 96px 24px 72px;
  background: #EEF4FF;
}

/* ── Heading ── */
.rs-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #2563EB;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 700px;
  letter-spacing: -0.5px;
}

/* ── Subtitle (regular on desktop; smaller on phones) ── */
.rs-hero-sub {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.75;
  margin: 0 auto 40px;
  max-width: 520px;
  padding: 0 12px;
}
.rs-br { display: inline; }

/* --- SEARCH BAR - single white pill --- */
.rs-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 580px;
  width: 100%;
  margin: 0 auto 24px;
  background: #ffffff;
  border: 1.5px solid #D8E4F4;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.10), 0 1px 3px rgba(0,0,0,0.04);
  padding: 5px 5px 5px 20px;
  height: 60px;
  box-sizing: border-box;
  gap: 0;
}
.rs-search:focus-within {
  border-color: #2563EB;
  box-shadow: 0 6px 24px rgba(37,99,235,0.18);
}

/* Location slot */
.rs-search-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}
.rs-search-input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #1E293B !important;
  padding: 0;
  box-shadow: none !important;
  -webkit-appearance: none;
}
.rs-search-input::placeholder { color: #94A3B8 !important; }

/* Separator */
.rs-search-sep {
  flex-shrink: 0;
  width: 1px;
  height: 26px;
  background: #CBD5E1;
  margin: 0 14px;
}

/* Property type slot */
.rs-search-type {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.rs-search-select {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: #334155 !important;
  cursor: pointer;
  padding: 0;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}
.rs-search-select option {
  background: #fff;
  color: #1E293B;
}

/* Search button */
.rs-search-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  background: #2563EB;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 0 28px;
  height: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.1px;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}
.rs-search-btn:hover {
  background: #1D4ED8;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}
.rs-search-btn:active { transform: translateY(0); }

/* --- CTA BUTTONS --- */
.rs-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,99,235,0.28);
  transition: all 0.2s ease;
}
.rs-btn-primary:hover {
  background: #1D4ED8;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  transform: translateY(-2px);
}

.rs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2563EB !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
  border: 2px solid #2563EB;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.rs-btn-outline:hover {
  background: rgba(37,99,235,0.06);
  transform: translateY(-2px);
}

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
  .rs-hero { padding: 60px 20px 48px; }
  .rs-hero-title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }
  .rs-hero-sub {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 100%;
    padding: 0 10px;
  }
  .rs-hero-sub .rs-br { display: none; }
  .rs-search {
    flex-direction: column;
    height: auto;
    padding: 14px 16px;
    border-radius: 20px;
    gap: 12px;
    align-items: stretch;
  }
  .rs-search-loc,
  .rs-search-type { width: 100%; }
  .rs-search-sep { display: none; }
  .rs-search-btn { width: 100%; margin-left: 0; border-radius: 12px; height: 46px; }
  .rs-hero-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .rs-btn-primary, .rs-btn-outline { width: 100%; justify-content: center; }
}

/* ── Small phones (≤576px) ── */
@media (max-width: 576px) {
  .rs-hero { padding: 48px 16px 40px; }
  .rs-hero-title {
    font-size: 1.65rem;
    margin-bottom: 14px;
  }
  .rs-hero-sub {
    font-size: 0.8rem;
    line-height: 1.55;
    margin: 0 auto 28px;
    padding: 0 6px;
  }
}

/* ── Extra small (≤380px) ── */
@media (max-width: 380px) {
  .rs-hero-sub {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* ===== HOMEPAGE ===== */

/* ── Reference-style Hero ── */
.hero-ref {
  text-align: center;
  padding: 100px 20px 72px;
  background: #EEF4FF !important;
}

/* Force blue title — beats dark-mode h1 override */
.hero-title-ref,
.hero-ref .hero-title-ref {
  font-size: 3.4rem !important;
  font-weight: 800 !important;
  color: #2563EB !important;
  line-height: 1.15 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.5px;
}

.hero-sub-ref {
  color: #475569 !important;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Reference Search Bar — single white pill ── */
.search-bar-ref {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  max-width: 580px;
  width: 100%;
  margin: 0 auto 28px;
  background: #fff !important;
  border: 1.5px solid #D9E4F0 !important;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.1), 0 1px 4px rgba(0,0,0,0.05);
  padding: 6px 6px 6px 20px;
  height: 58px;
  box-sizing: border-box;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.search-bar-ref:focus-within {
  border-color: #2563EB !important;
  box-shadow: 0 6px 28px rgba(37,99,235,0.18);
}

/* Location field — takes remaining space */
.search-ref-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-ref-location {
  flex: 1 1 auto;
  min-width: 0;
}
.search-ref-type {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-ref-icon {
  flex-shrink: 0;
  display: block;
}

.search-ref-input {
  display: block !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 0.93rem !important;
  color: #1E293B !important;
  width: 100%;
  font-family: 'Inter', sans-serif;
  box-shadow: none !important;
}
.search-ref-input::placeholder {
  color: #94A3B8 !important;
}

.search-ref-divider {
  flex-shrink: 0;
  width: 1px;
  height: 26px;
  background: #D1DCF0;
  margin: 0 16px;
}

/* Dropdown — hide native arrow, show custom chevron */
.search-ref-select {
  display: block !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 0.93rem !important;
  color: #334155 !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 0;
  box-shadow: none !important;
}
.search-ref-select option {
  background: #fff;
  color: #1E293B;
}

.search-ref-chevron {
  flex-shrink: 0;
  pointer-events: none;
  color: #64748B;
}

.search-ref-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563EB !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 0 26px;
  height: 46px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-left: 6px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.search-ref-btn:hover {
  background: #1D4ED8 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.42);
}
.search-ref-btn:active { transform: translateY(0); }

/* ── Hero CTA Buttons ── */
.hero-cta-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.22s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  white-space: nowrap;
}
.hero-cta-primary:hover {
  background: #1D4ED8 !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(37,99,235,0.42);
}

.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: #2563EB !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid #2563EB !important;
  text-decoration: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.hero-cta-outline:hover {
  background: rgba(37,99,235,0.07) !important;
  transform: translateY(-2px);
}

/* Fade-in animation for dynamic content */
.fade-in {
  animation: fadeIn 0.35s ease-out forwards;
  opacity: 0;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.category-strip {
  padding: 24px 0 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.category-strip-top {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 10px;
}
.category-strip-view-all {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.category-strip-view-all:hover {
  opacity: 0.85;
}
.category-tabs-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.category-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-shrink: 0;
  padding: 0 4px;
}
.cat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  padding: 8px 12px 12px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex: 0 0 auto;
}
.cat-tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #94A3B8;
  transition: color 0.2s;
}
.cat-tab-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.cat-tab:hover {
  color: var(--primary);
}
.cat-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.cat-tab:hover .cat-tab-icon,
.cat-tab.active .cat-tab-icon {
  color: var(--primary);
}

/* ── Old search bar kept for listing page ── */
.search-bar {
  display: flex; align-items: center; gap: 0; background: #fff;
  border: 1.5px solid var(--border); border-radius: 50px; padding: 6px 6px 6px 24px;
  max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-sm);
}
.search-bar .search-field { flex: 1; padding: 12px 16px; border-right: 1px solid var(--border); }
.search-bar .search-field:last-of-type { border-right: none; }
.search-bar .search-field label { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.search-bar .search-field input, .search-bar .search-field select {
  width: 100%; border: none; font-size: 0.85rem; color: var(--text); background: transparent;
}
.search-btn {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.search-btn svg { color: #fff; width: 20px; height: 20px; }
.search-btn:hover { background: var(--primary-hover); }

.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.featured-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.featured-header h2 { font-size: 1.5rem; font-weight: 700; }
.featured-header a { color: var(--primary); font-size: 0.9rem; font-weight: 500; }
.card-img-wrap { position: relative; }

.map-section { background: var(--bg-alt); }
.map-placeholder {
  width: 100%; height: 400px; border-radius: var(--radius);
  background: #E8E8E8; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-item { padding: 32px 20px; }
.trust-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.trust-icon svg { width: 28px; height: 28px; color: var(--primary); }
.trust-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.trust-item p { font-size: 0.85rem; color: var(--text-muted); }

.owner-cta-section {
  padding-top: 0;
  padding-bottom: 48px;
}
.owner-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  width: 100%;
  box-sizing: border-box;
}
.owner-cta-content {
  flex: 1 1 280px;
  min-width: 0;
}
.owner-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.owner-cta p {
  margin: 0;
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.92);
}
.owner-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* FOOTER */
.footer { background: #0F172A; color: #CBD5E1; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; margin-top: 12px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.85rem; color: #94A3B8; transition: 0.2s; }
.footer ul li a:hover { color: #fff; }
.footer ul li a.nav-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer ul li a.nav-with-icon .nav-link-icon {
  flex-shrink: 0;
  opacity: 0.88;
  color: #94A3B8;
}
.footer ul li a.nav-with-icon:hover .nav-link-icon {
  opacity: 1;
  color: #fff;
}
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.8rem; color: #64748B; }

/* ===== PROPERTY LISTING PAGE ===== */
.listing-page { display: flex; height: calc(100vh - 73px); }
.listing-panel { flex: 0 0 55%; overflow-y: auto; padding: 24px; }
.listing-map { flex: 1; background: #F1F5F9; position: relative; }
.listing-map-inner { width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="1" cy="1" r="1" fill="%23ddd"/></svg>') repeat; }
.listing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.listing-header h2 { font-size: 1.2rem; font-weight: 700; }
.filter-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; background: #fff; }
.listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.compact-search {
  display: flex; align-items: center; background: #fff; border: 1.5px solid var(--border);
  border-radius: 40px; padding: 4px; box-shadow: var(--shadow-sm); max-width: 500px; margin: 0 auto;
}
.compact-search .search-field { padding: 8px 16px; border-right: 1px solid var(--border); }
.compact-search .search-field:last-of-type { border-right: none; }
.compact-search label { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); display: block; }
.compact-search input { font-size: 0.8rem; border: none; width: 100%; background: transparent; }
.compact-search .search-btn { width: 40px; height: 40px; }

.map-price-pin {
  position: absolute; background: #fff; padding: 6px 12px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; box-shadow: var(--shadow-md); white-space: nowrap;
}
.map-price-pin.active { background: var(--primary); color: #fff; }
.map-search-btn {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #fff; padding: 10px 20px; border-radius: 24px; font-size: 0.85rem;
  font-weight: 500; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px;
}

/* ===== PROPERTY DETAILS PAGE ===== */
.property-details-container { display: flex; flex-direction: column; }
.property-details-container > .breadcrumb { order: 1; }
.property-details-container > .detail-header { order: 2; }
.property-details-container > .photo-gallery-container { order: 3; }
.property-details-container > .detail-content { order: 4; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); padding: 16px 0; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { width: 14px; height: 14px; }

.detail-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.detail-header h1 { font-size: 1.8rem; font-weight: 700; }
.detail-header .location { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }
.detail-actions { display: flex; gap: 12px; }

.photo-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.photo-gallery .main-photo { grid-row: 1 / 3; }
.photo-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: 0.3s; }
.photo-gallery img:hover { opacity: 0.9; }
.photo-gallery .photo-overlay { position: relative; }
.photo-gallery .photo-overlay::after {
  content: 'Show all photos'; position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7); color: #fff; padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 500;
}

.detail-content { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.detail-main { }
.detail-sidebar { position: sticky; top: 90px; }

.about-section { margin-bottom: 40px; }
.about-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.about-section p { color: var(--text-muted); line-height: 1.8; }

.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
.amenity-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.amenity-item svg { width: 20px; height: 20px; color: var(--text-muted); }
.show-more-link { color: var(--primary); font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; padding: 8px 16px; border: 1.5px solid var(--primary); border-radius: var(--radius-pill); }

.booking-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-md);
}
.booking-price { font-size: 1.5rem; font-weight: 700; }
.booking-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.booking-note { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0 20px; }

.room-selector { margin-bottom: 20px; }
.room-selector h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.room-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 8px; cursor: pointer; transition: 0.2s;
}
.room-option:hover, .room-option.active { border-color: var(--primary); background: var(--primary-light); }
.room-option .room-name { font-weight: 500; font-size: 0.9rem; }
.room-option .room-type { font-size: 0.75rem; color: var(--text-muted); }
.room-option .room-price { font-weight: 700; font-size: 0.95rem; }

.owner-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 24px; margin-top: 20px;
}
.owner-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; }
.owner-info { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.owner-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.owner-name { font-weight: 600; }
.owner-meta { font-size: 0.8rem; color: var(--text-muted); }
.owner-actions { display: flex; gap: 8px; }
.owner-actions .btn { flex: 1; }

.reviews-section { margin-top: 40px; }
.reviews-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.rating-badge { background: var(--success); color: #fff; padding: 6px 12px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); }
.review-author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--primary); font-size: 0.8rem; }
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== DASHBOARD ===== */
.dashboard-layout { display: flex; min-height: calc(100vh - 73px); }
.sidebar {
  width: 260px; background: #fff; border-right: 1px solid var(--border);
  padding: 24px 0; flex-shrink: 0;
}
.sidebar-section { margin-bottom: 24px; padding: 0 20px; }
.sidebar-section h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px;
  font-size: 0.9rem; color: var(--text-muted); transition: 0.2s; border-radius: 6px; margin: 2px 8px;
}
.sidebar-link:hover, .sidebar-link.active { background: var(--primary-light); color: var(--primary); font-weight: 500; }
.sidebar-link svg { width: 18px; height: 18px; }

.dashboard-main { flex: 1; padding: 32px; background: var(--bg-alt); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border);
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.stat-card .stat-value { font-size: 1.8rem; font-weight: 700; }
.stat-card .stat-change { font-size: 0.8rem; color: var(--success); margin-top: 4px; }

.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.data-table th { text-align: left; padding: 14px 16px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.data-table td { padding: 14px 16px; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table .action-btns { display: flex; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.status-dot.active { background: var(--success); }
.status-dot.pending { background: var(--warning); }
.status-dot.rejected { background: var(--danger); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
