/* ============================================================
   RentVala v2 — Stanza-style Design System
   Teal: #2DC5A2  |  Dark Navy: #1A3C5E  |  White: #FFFFFF
   Font: DM Sans (Google Fonts)
   Contact: 8284899541
   ============================================================ */

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

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --teal:       #2DC5A2;
  --teal-dark:  #1FA888;
  --teal-light: #E8F8F4;
  --teal-mid:   #B2E8DC;
  --navy:       #1A3C5E;
  --navy-dark:  #0F2540;
  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --bg2:        #F7F9FB;
  --bg3:        #EEF2F7;
  --txt:        #1A1A2E;
  --txt2:       #5F6B7A;
  --txt3:       #9AA5B1;
  --border:     #E2E8F0;
  --border2:    #CBD5E0;
  --card-shadow: 0 2px 8px rgba(0,0,0,0.07);
  --card-shadow-hover: 0 8px 28px rgba(0,0,0,0.12);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: all 0.25s ease;
}

[data-theme="dark"] {
  --bg:         #0F1117;
  --bg2:        #161C27;
  --bg3:        #1E2535;
  --txt:        #E8EDF5;
  --txt2:       #8892AA;
  --txt3:       #4A5568;
  --border:     #2A3348;
  --border2:    #374155;
  --teal-light: rgba(45,197,162,0.1);
  --card-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --card-shadow-hover: 0 8px 28px rgba(0,0,0,0.45);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(16px, 2vw, 22px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h4 { font-size: 16px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 700; }
p  { color: var(--txt2); line-height: 1.7; }
.teal { color: var(--teal); }
.navy { color: var(--navy); }
.gradient-text { background: linear-gradient(135deg, var(--teal), #1FA888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-sm { padding: 32px 0; }
.section-label { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; display: block; }
.section-title { color: var(--txt); margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--txt2); margin-bottom: 28px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-teal  { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.btn-navy  { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--txt2); border-color: var(--border2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-icon { width: 38px; height: 38px; padding: 0; border-radius: 50%; }
.btn-call { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-wa   { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1EB85A; border-color: #1EB85A; color: #fff; }

/* ── FORM ELEMENTS ─────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--txt2); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-input {
  width: 100%; background: var(--bg2); border: 1.5px solid var(--border);
  color: var(--txt); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 14px; font-weight: 500; outline: none;
  transition: var(--transition);
}
.form-input:focus { border-color: var(--teal); background: var(--bg); box-shadow: 0 0 0 3px rgba(45,197,162,0.12); }
.form-input::placeholder { color: var(--txt3); }
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { cursor: pointer; }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--card-shadow-hover); }
.card-pad { padding: 20px 24px; }

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.badge-teal    { background: var(--teal-light); color: var(--teal-dark); }
.badge-navy    { background: rgba(26,60,94,0.1); color: var(--navy); }
.badge-green   { background: #E8F8EF; color: #1A8A47; }
.badge-amber   { background: #FFF8E1; color: #C07A00; }
.badge-red     { background: #FEEDED; color: #C62828; }
.badge-gray    { background: var(--bg3); color: var(--txt2); }
.badge-verified { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(45,197,162,0.3); }

/* ══ NAVIGATION ════════════════════════════════════════════════ */
.main-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, height 0.3s;
  height: 68px;
}
.main-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); height: 58px; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo {
  font-size: 22px; font-weight: 900; letter-spacing: -0.03em;
  color: var(--txt); white-space: nowrap; flex-shrink: 0;
}
.nav-logo em { font-style: normal; color: var(--teal); }
.nav-city-switcher {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 12px;
  font-size: 13px; font-weight: 600; color: var(--txt);
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.nav-city-switcher:hover { border-color: var(--teal); color: var(--teal); }
.nav-city-switcher .city-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.nav-links-wrap { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links-wrap a {
  font-size: 14px; font-weight: 500; color: var(--txt2);
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links-wrap a:hover, .nav-links-wrap a.active { color: var(--teal); background: var(--teal-light); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { font-size: 13px; font-weight: 700; color: var(--txt); display: flex; align-items: center; gap: 5px; }
.nav-phone:hover { color: var(--teal); }
.nav-phone svg { width: 14px; height: 14px; stroke: var(--teal); }
.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg2); border: 1.5px solid var(--border);
  color: var(--txt); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.theme-btn:hover { border-color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* City dropdown */
.city-dropdown-wrap { position: relative; }
.city-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 200px; z-index: 300; overflow: hidden;
  display: none;
}
.city-dropdown.open { display: block; animation: dropFade 0.2s ease; }
@keyframes dropFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.city-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  color: var(--txt); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.city-dropdown a:last-child { border-bottom: none; }
.city-dropdown a:hover { background: var(--teal-light); color: var(--teal); }
.city-dropdown a.current { color: var(--teal); background: var(--teal-light); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg); padding: 80px 24px 100px;
  display: none; flex-direction: column; gap: 0; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 20px; font-weight: 700; color: var(--txt);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .mobile-cities { padding: 16px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .mobile-cities p { font-size: 11px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.mobile-city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-city-chip {
  padding: 6px 14px; background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--txt2);
  transition: var(--transition);
}
.mobile-city-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.mobile-nav .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav .mobile-phone { font-size: 22px; font-weight: 800; color: var(--teal); display: flex; align-items: center; gap: 8px; margin-top: 12px; }

/* ══ HERO ══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 420px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3a2e 100%);
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,37,64,0.95) 0%, rgba(15,37,64,0.7) 55%, rgba(15,37,64,0.3) 100%);
  z-index: 1;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px; z-index: 0;
}
.hero-content { position: relative; z-index: 2; padding: 60px 24px 50px; max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 380px; gap: 0; align-items: center; }
.hero-left { padding-right: 40px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(45,197,162,0.15); border: 1px solid rgba(45,197,162,0.3); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: var(--teal); margin-bottom: 16px; }
.hero h1 { color: #fff; margin-bottom: 12px; }
.hero h1 span { color: var(--teal); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 440px; }
.hero-search-box {
  background: #fff; border-radius: var(--radius-md); padding: 8px;
  display: flex; align-items: center; gap: 6px; max-width: 480px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
[data-theme="dark"] .hero-search-box { background: var(--bg2); }
.hero-search-field { flex: 1; padding: 8px 12px; }
.hero-search-field label { display: block; font-size: 10px; font-weight: 700; color: var(--txt2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.hero-search-field input { width: 100%; border: none; outline: none; font-size: 14px; font-weight: 500; color: var(--txt); background: transparent; }
.hero-search-field input::placeholder { color: var(--txt3); font-weight: 400; }
.hero-search-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.hero-search-loc-btn { background: none; border: none; color: var(--teal); font-size: 20px; padding: 8px 10px; }
.hero-search-btn { background: var(--teal); border: none; color: #fff; padding: 11px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; white-space: nowrap; transition: var(--transition); }
.hero-search-btn:hover { background: var(--teal-dark); }
.hero-cats { display: flex; flex-direction: column; height: 100%; min-height: 240px; border-left: 1px solid rgba(255,255,255,0.08); }
.hero-cat {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-cat:last-child { border-bottom: none; }
.hero-cat:hover { background: rgba(45,197,162,0.08); }
.hero-cat h4 { color: #fff; font-size: 15px; margin-bottom: 2px; }
.hero-cat p { color: rgba(255,255,255,0.55); font-size: 12px; margin: 0; }
.hero-cat-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); flex-shrink: 0; }
.hero-cat:hover .hero-cat-arrow { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ══ TRUST BAR ═════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; padding: 8px 28px; }
.trust-sep { width: 1px; height: 32px; background: var(--border); }
.trust-num { font-size: 22px; font-weight: 900; color: var(--teal); line-height: 1; }
.trust-lbl { font-size: 12px; color: var(--txt2); font-weight: 500; }

/* ══ CITY CARDS ════════════════════════════════════════════════ */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.city-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px;
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.city-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--teal); transform: scaleY(0); transition: transform 0.2s;
  transform-origin: bottom; border-radius: 0 2px 2px 0;
}
.city-card:hover { box-shadow: var(--card-shadow-hover); border-color: rgba(45,197,162,0.4); transform: translateY(-2px); }
.city-card:hover::before { transform: scaleY(1); }
.city-card-icon { font-size: 28px; margin-bottom: 10px; }
.city-card-name { font-size: 14px; font-weight: 800; color: var(--txt); margin-bottom: 3px; }
.city-card-info { font-size: 11px; color: var(--txt2); line-height: 1.5; }
.city-card-arrow { position: absolute; bottom: 14px; right: 14px; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

/* ══ FILTER BAR ════════════════════════════════════════════════ */
.filter-bar {
  position: sticky; top: 58px; z-index: 100;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 12px 24px; transition: box-shadow 0.3s;
}
.filter-bar.shadow { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.filter-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 50px;
  border: 1.5px solid var(--border2); background: var(--bg);
  font-size: 12px; font-weight: 600; color: var(--txt2);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal); }
.filter-chip.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.filter-chip-caret { font-size: 10px; }
.filter-sort { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--txt2); }
.filter-sort span { font-weight: 700; color: var(--teal); cursor: pointer; }
.result-count { font-size: 13px; color: var(--txt2); }
.result-count strong { color: var(--txt); font-weight: 800; }

/* ══ LISTINGS LAYOUT ═══════════════════════════════════════════ */
.listings-wrap { max-width: 1280px; margin: 0 auto; }
.listings-layout { display: grid; grid-template-columns: 1fr 400px; min-height: calc(100vh - 130px); }
.listings-col { padding: 20px 24px; }

/* ══ PROPERTY CARD (horizontal) ════════════════════════════════ */
.prop-card-h {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); display: flex;
  margin-bottom: 16px; overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.prop-card-h:hover { box-shadow: var(--card-shadow-hover); border-color: rgba(45,197,162,0.35); transform: translateY(-1px); }
.prop-img-wrap { width: 230px; min-width: 230px; position: relative; overflow: hidden; flex-shrink: 0; }
.prop-img-inner {
  width: 100%; height: 100%; min-height: 200px;
  object-fit: cover; transition: transform 0.4s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; background: var(--bg3);
}
.prop-card-h:hover .prop-img-inner { transform: scale(1.05); }
.prop-img-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.prop-verified-badge { display: flex; align-items: center; gap: 4px; background: rgba(26,60,94,0.88); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 5px; backdrop-filter: blur(4px); }
.prop-verified-badge .v-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.prop-visitors { position: absolute; bottom: 8px; left: 0; right: 0; background: rgba(26,60,94,0.8); color: #fff; font-size: 10px; font-weight: 600; padding: 4px 10px; display: flex; align-items: center; gap: 4px; backdrop-filter: blur(4px); }
.prop-visitors .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }
.prop-save-btn {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--txt2); transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); z-index: 5;
}
[data-theme="dark"] .prop-save-btn { background: rgba(22,28,39,0.92); color: var(--txt2); }
.prop-save-btn:hover, .prop-save-btn.saved { color: #e74c3c; }
.prop-body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; min-width: 0; }
.prop-tag { font-size: 10px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.prop-tag::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.prop-title-h { font-size: 17px; font-weight: 800; color: var(--txt); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-loc-h { font-size: 12px; color: var(--txt2); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.prop-view-dir { font-size: 11px; color: var(--teal); font-weight: 600; display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.prop-feats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.prop-feat { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; font-size: 11px; color: var(--txt2); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.prop-rooms { display: flex; gap: 6px; margin-bottom: 14px; }
.prop-room { border: 1.5px solid var(--border2); border-radius: var(--radius-sm); padding: 4px 12px; font-size: 11px; color: var(--txt2); font-weight: 600; transition: var(--transition); cursor: pointer; }
.prop-room:hover, .prop-room.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.prop-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; flex-wrap: wrap; gap: 12px; }
.prop-price-wrap { }
.prop-price-from { font-size: 11px; color: var(--txt2); margin-bottom: 2px; }
.prop-price-val { font-size: 20px; font-weight: 900; color: var(--txt); letter-spacing: -0.02em; }
.prop-price-val span { font-size: 12px; font-weight: 500; color: var(--txt2); }
.prop-furnished { font-size: 11px; color: var(--txt3); margin-top: 2px; }
.prop-actions { display: flex; gap: 8px; }
.btn-schedule { background: var(--teal); border: none; color: #fff; padding: 9px 16px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 800; cursor: pointer; transition: var(--transition); white-space: nowrap; letter-spacing: 0.03em; }
.btn-schedule:hover { background: var(--teal-dark); }
.btn-callback { background: transparent; border: 2px solid var(--border2); color: var(--txt2); padding: 8px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-callback:hover { border-color: var(--teal); color: var(--teal); }

/* ══ MAP PANEL ═════════════════════════════════════════════════ */
.map-panel { border-left: 1px solid var(--border); position: sticky; top: 130px; height: calc(100vh - 130px); overflow: hidden; display: flex; flex-direction: column; background: var(--bg2); }
.map-panel-hdr { padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: space-between; }
.map-panel-hdr h5 { color: var(--txt); display: flex; align-items: center; gap: 8px; }
.map-panel-hdr span { font-size: 11px; color: var(--txt2); font-weight: 400; }
.map-view-toggle { display: flex; border: 1.5px solid var(--border2); border-radius: var(--radius-sm); overflow: hidden; }
.map-toggle-btn { padding: 5px 12px; font-size: 11px; font-weight: 600; border: none; cursor: pointer; background: var(--bg); color: var(--txt2); transition: var(--transition); }
.map-toggle-btn.active { background: var(--teal); color: #fff; }
#leaflet-map { flex: 1; }
.map-fallback { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; overflow: hidden; }
.map-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(45,197,162,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(45,197,162,0.07) 1px, transparent 1px); background-size: 30px 30px; }
.map-pin-icon { width: 48px; height: 48px; background: var(--teal); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(45,197,162,0.4); position: relative; z-index: 1; }
.map-pin-icon::after { content: ''; width: 18px; height: 18px; background: #fff; border-radius: 50%; transform: rotate(45deg); }
.map-popup-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; max-width: 220px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); position: relative; z-index: 1; }
.map-popup-card h5 { font-size: 13px; font-weight: 800; color: var(--txt); margin-bottom: 3px; }
.map-popup-card p { font-size: 11px; color: var(--txt2); margin: 0; }
.map-popup-price { font-size: 15px; font-weight: 900; color: var(--teal); margin-top: 6px; }
.map-label { font-size: 12px; color: var(--txt2); font-weight: 500; position: relative; z-index: 1; margin-top: 8px; }

/* ══ PROPERTY DETAIL ═══════════════════════════════════════════ */
.detail-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.detail-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--txt2); padding: 16px 0; flex-wrap: wrap; }
.detail-breadcrumb a { color: var(--txt2); }
.detail-breadcrumb a:hover { color: var(--teal); }
.detail-breadcrumb .sep { color: var(--txt3); }
.detail-breadcrumb .current { color: var(--txt); font-weight: 600; }
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; padding-bottom: 60px; }
.detail-main { }
.detail-gallery { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; aspect-ratio: 16/8; position: relative; }
.detail-gallery-main { width: 100%; height: 100%; object-fit: cover; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; }
.gallery-thumb { width: 80px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.gallery-thumb.active { border-color: var(--teal); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-price-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 10px; }
.detail-price { font-size: 28px; font-weight: 900; color: var(--txt); letter-spacing: -0.02em; }
.detail-price span { font-size: 14px; font-weight: 500; color: var(--txt2); }
.detail-title { font-size: 22px; font-weight: 900; color: var(--txt); margin-bottom: 6px; letter-spacing: -0.02em; }
.detail-loc { font-size: 14px; color: var(--txt2); display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.detail-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 20px; }
.spec-item { text-align: center; }
.spec-icon { font-size: 22px; margin-bottom: 4px; }
.spec-val { font-size: 14px; font-weight: 800; color: var(--txt); }
.spec-lbl { font-size: 11px; color: var(--txt2); }
.detail-section-hdr { font-size: 16px; font-weight: 800; color: var(--txt); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--txt2); }
.amenity-check { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.detail-desc { font-size: 14px; color: var(--txt2); line-height: 1.8; margin-bottom: 24px; }
.detail-map { height: 280px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-bottom: 24px; background: var(--bg2); display: flex; align-items: center; justify-content: center; color: var(--txt2); font-size: 13px; flex-direction: column; gap: 8px; }
.similar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
/* Sidebar enquiry card */
.enquiry-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; position: sticky; top: 140px; }
.enquiry-card h4 { font-size: 17px; font-weight: 800; color: var(--txt); margin-bottom: 16px; }
.enquiry-submit { width: 100%; background: var(--teal); border: none; color: #fff; padding: 13px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 800; cursor: pointer; transition: var(--transition); margin-top: 4px; letter-spacing: 0.02em; }
.enquiry-submit:hover { background: var(--teal-dark); }
.enquiry-actions { display: flex; gap: 8px; margin-top: 12px; }
.eq-action { flex: 1; padding: 10px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; border: 1.5px solid; text-align: center; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 5px; }
.eq-action.save { border-color: var(--border2); color: var(--txt2); background: transparent; }
.eq-action.save:hover, .eq-action.save.saved { border-color: #e74c3c; color: #e74c3c; }
.eq-action.call { border-color: var(--teal); color: var(--teal); background: transparent; }
.eq-action.call:hover { background: var(--teal); color: #fff; }
.eq-action.whatsapp { border-color: #25D366; color: #25D366; background: transparent; }
.eq-action.whatsapp:hover { background: #25D366; color: #fff; }
.agent-card { background: var(--bg2); border-radius: var(--radius-md); padding: 14px; margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.agent-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.agent-name { font-size: 14px; font-weight: 700; color: var(--txt); }
.agent-role { font-size: 11px; color: var(--txt2); }

/* ══ AUTH PAGES ════════════════════════════════════════════════ */
.auth-page { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--bg2); }
.auth-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; width: 100%; max-width: 420px; box-shadow: var(--card-shadow); }
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-title { font-size: 24px; font-weight: 900; color: var(--txt); margin-bottom: 6px; text-align: center; letter-spacing: -0.02em; }
.auth-sub { font-size: 14px; color: var(--txt2); text-align: center; margin-bottom: 24px; }
.auth-demo { background: var(--teal-light); border: 1.5px solid rgba(45,197,162,0.3); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 20px; font-size: 12px; color: var(--txt2); }
.auth-demo strong { color: var(--teal-dark); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 12px; color: var(--txt3); font-weight: 500; }
.auth-foot { text-align: center; font-size: 13px; color: var(--txt2); margin-top: 16px; }
.auth-foot a { color: var(--teal); font-weight: 700; }

/* ══ DASHBOARD ══════════════════════════════════════════════════ */
.dash-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 28px 24px; color: #fff; }
.dash-hero-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.dash-greeting { font-size: 22px; font-weight: 900; }
.dash-greeting span { color: var(--teal); }
.dash-tabs-bar { background: var(--bg); border-bottom: 2px solid var(--border); padding: 0 24px; }
.dash-tabs-inner { max-width: 1280px; margin: 0 auto; display: flex; }
.dash-tab-btn { padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--txt2); border: none; background: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.dash-tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.dash-tab-btn:hover { color: var(--teal); }
.dash-body { max-width: 1280px; margin: 0 auto; padding: 28px 24px; }
.saved-list-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); display: flex; gap: 14px; padding: 14px; margin-bottom: 12px; align-items: center; transition: var(--transition); }
.saved-list-item:hover { box-shadow: var(--card-shadow); }
.saved-thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 28px; background: var(--bg2); flex-shrink: 0; }
.saved-info { flex: 1; min-width: 0; }
.saved-title { font-size: 14px; font-weight: 800; color: var(--txt); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.saved-price { font-size: 14px; font-weight: 900; color: var(--teal); }
.saved-loc { font-size: 11px; color: var(--txt2); margin-top: 2px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ══ FOOTER ═════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 56px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand .footer-logo em { font-style: normal; color: var(--teal); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 260px; margin-bottom: 16px; }
.footer-phone { display: flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.footer-wa { display: flex; align-items: center; gap: 6px; color: #25D366; font-size: 13px; font-weight: 600; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 9px; transition: var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.35); max-width: 1280px; margin: 0 auto; }

/* ══ WHATSAPP FLOAT ═════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition); border: none;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); background: #1EB85A; color: #fff; }

/* ══ MOBILE STICKY BOTTOM BAR ══════════════════════════════════ */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 10px 16px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bottom-bar-inner { display: flex; gap: 8px; }
.mobile-bottom-bar .btn { flex: 1; justify-content: center; font-size: 12px; padding: 11px 8px; }

/* ══ ABOUT PAGE ═════════════════════════════════════════════════ */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), #1a3a2e); padding: 56px 24px 48px; color: #fff; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero h1 span { color: var(--teal); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 540px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 28px 24px; max-width: 1280px; margin: 0 auto; }
.info-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); }
.info-card:hover { box-shadow: var(--card-shadow); border-color: rgba(45,197,162,0.3); }
.info-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.info-card-title { font-size: 14px; font-weight: 800; color: var(--txt); margin-bottom: 4px; }
.info-card-val { font-size: 14px; color: var(--teal); font-weight: 700; }
.info-card-sub { font-size: 12px; color: var(--txt2); margin-top: 3px; line-height: 1.5; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--card-shadow-hover); border-color: rgba(45,197,162,0.3); transform: translateY(-3px); }
.team-av { width: 60px; height: 60px; border-radius: 50%; background: var(--teal-light); color: var(--teal); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.team-name { font-size: 15px; font-weight: 800; color: var(--txt); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; display: block; }
.team-card p { font-size: 13px; color: var(--txt2); line-height: 1.6; }

/* ══ CONTACT PAGE ═══════════════════════════════════════════════ */
.contact-form-wrap { max-width: 600px; margin: 0 auto; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.contact-form-wrap h3 { font-size: 18px; font-weight: 800; color: var(--txt); margin-bottom: 20px; }

/* ══ TOAST ══════════════════════════════════════════════════════ */
#toast-container { position: fixed; bottom: 80px; right: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; pointer-events: none; }
.toast {
  background: var(--navy-dark); color: #fff; padding: 12px 18px;
  border-radius: var(--radius-md); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  transform: translateX(110%); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); max-width: 300px;
}
[data-theme="light"] .toast { background: var(--navy); }
.toast.show { transform: translateX(0); }
.toast::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.toast.error::before { background: #e74c3c; }
.toast.ok::before { background: #2ECC71; }

/* ══ SKELETON LOADER ════════════════════════════════════════════ */
.skeleton { background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ══ SCROLL REVEAL ══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ PAGINATION ═════════════════════════════════════════════════ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 24px 0; }
.page-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1.5px solid var(--border2); background: var(--bg); color: var(--txt2); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.page-btn:hover { border-color: var(--teal); color: var(--teal); }
.page-btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* ══ TESTIMONIALS ═══════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.test-stars { color: #FFB800; font-size: 14px; margin-bottom: 10px; }
.test-quote { font-size: 14px; color: var(--txt2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light); color: var(--teal); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.test-name { font-size: 13px; font-weight: 800; color: var(--txt); }
.test-loc { font-size: 11px; color: var(--txt2); }

/* ══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .listings-layout { grid-template-columns: 1fr; }
  .map-panel { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-cats { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links-wrap { display: none; }
  .nav-phone { display: none; }
  .nav-city-switcher { display: none; }
  .hamburger { display: flex; }
  .prop-card-h { flex-direction: column; }
  .prop-img-wrap { width: 100%; min-height: 200px; }
  .detail-specs { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .similar-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { gap: 0; }
  .trust-item { padding: 8px 16px; }
  .trust-sep { display: none; }
  .mobile-bottom-bar { display: block; }
  .wa-float { bottom: 90px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .prop-img-wrap { min-height: 180px; }
  .prop-bottom { flex-direction: column; align-items: flex-start; }
  .prop-actions { width: 100%; }
  .btn-schedule, .btn-callback { flex: 1; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .filter-bar-inner { overflow-x: auto; flex-wrap: nowrap; }
  .filter-chip { flex-shrink: 0; }
  .auth-card { padding: 24px 20px; }
}
/* ══ ANIMATIONS ═════════════════════════════════════════════════ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn 0.35s ease; }

/* ══════════════════════════════════════════════════════════════════
   FLUID ANIMATIONS — RENTVALA (appended fix)
══════════════════════════════════════════════════════════════════ */

/* ── Page load fade-in ── */
@keyframes rvFadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes rvFadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes rvSlideIn  { from { opacity:0; transform:translateX(-18px); } to { opacity:1; transform:none; } }
@keyframes rvPop      { 0%{transform:scale(0.94);opacity:0} 60%{transform:scale(1.03)} 100%{transform:scale(1);opacity:1} }
@keyframes rvShimmer  { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes rvPulseGlow{ 0%,100%{box-shadow:0 0 0 0 rgba(45,197,162,0.35)} 50%{box-shadow:0 0 0 8px rgba(45,197,162,0)} }
@keyframes rvBounce   { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} 70%{transform:translateY(-2px)} }
@keyframes rvSpin     { to{transform:rotate(360deg)} }

/* ── Fix scroll reveal: support BOTH .visible (CSS) and .revealed (old JS) ── */
.reveal.visible,
.reveal.revealed { opacity:1 !important; transform:translateY(0) !important; }

/* ── Staggered prop-card reveal ── */
.prop-card-h.reveal:nth-child(1) { --delay:0.05s; }
.prop-card-h.reveal:nth-child(2) { --delay:0.12s; }
.prop-card-h.reveal:nth-child(3) { --delay:0.19s; }
.prop-card-h.reveal:nth-child(4) { --delay:0.26s; }
.prop-card-h.reveal:nth-child(5) { --delay:0.33s; }
.prop-card-h.reveal:nth-child(6) { --delay:0.40s; }

/* ── Page load: hero content ── */
.hero-left         { animation: rvFadeUp  0.7s cubic-bezier(0.22,1,0.36,1) both; }
.hero-right        { animation: rvFadeUp  0.7s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.hero-trust        { animation: rvFadeIn  0.6s 0.3s ease both; }
.main-nav          { animation: rvFadeIn  0.4s ease both; }

/* ── Property card hover (smooth lift + shadow) ── */
.prop-card-h {
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease !important;
  will-change: transform;
}
.prop-card-h:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important;
}
.prop-card-h:hover .prop-img {
  transform: scale(1.06);
}

/* ── Image zoom on card hover ── */
.prop-img {
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}

/* ── Save button pop ── */
.prop-save-btn.saved {
  animation: rvPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Button press feedback ── */
.btn-prop, .btn, .btn-primary, .btn-outline {
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease !important;
}
.btn-prop:active, .btn:active, .btn-primary:active { transform: scale(0.96) !important; }

/* ── WhatsApp button pulse ── */
.btn-prop-wa {
  animation: rvPulseGlow 2.5s infinite;
}

/* ── City card hover ── */
.city-card {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease !important;
}
.city-card:hover { transform: translateY(-5px) scale(1.02) !important; box-shadow:0 12px 32px rgba(0,0,0,0.1) !important; }

/* ── How-step icon bounce ── */
.how-step:hover .step-icon-wrap { animation: rvBounce 0.5s ease; }

/* ── Trust bar slide-in ── */
.trust-bar { animation: rvFadeIn 0.5s 0.2s ease both; }

/* ── Testimonial card hover ── */
.testimonial-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.testimonial-card:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important; }

/* ── Nav link underline slide ── */
.nav-link {
  position: relative;
  overflow: hidden;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* ── Visiting dot pulse animation ── */
.visiting-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  margin-right: 5px;
  animation: rvPulseGlow 1.8s infinite;
  vertical-align: middle;
}

/* ── Featured badge shimmer ── */
.prop-featured-badge {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 100%;
  animation: rvShimmer 2.5s infinite linear;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  position: absolute;
  top: 8px; left: 8px;
  letter-spacing: 0.04em;
}

/* ── Skeleton shimmer (enhanced) ── */
.skeleton-box {
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3,#e5e7eb) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: rvShimmer 1.4s infinite;
  border-radius: var(--radius-sm);
  min-height: 180px;
}
.skeleton-line {
  height: 14px; border-radius: 6px; margin: 10px 0;
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3,#e5e7eb) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: rvShimmer 1.4s infinite;
}
.skeleton-line.short { width: 60%; }

/* ── Filter chip hover ── */
.filter-chip {
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease !important;
}
.filter-chip:hover:not(.active) { transform: translateY(-1px); }

/* ── Scroll-triggered section headers ── */
.section-header.reveal { --delay: 0s; }

/* ── Map popup fade-in ── */
.leaflet-popup-content-wrapper { animation: rvFadeUp 0.2s ease; }

/* ── Mobile overlay slide ── */
#mobileOverlay {
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1) !important;
  transform: translateX(-100%);
}
#mobileOverlay.open { transform: translateX(0) !important; }

/* ── CTA banner pop ── */
.cta-banner.visible,
.cta-banner.revealed { animation: rvPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both !important; }

/* ── WhatsApp float button ── */
.wa-float {
  animation: rvBounce 3s ease infinite;
}
.wa-float:hover { animation: none; transform: scale(1.12) !important; }

/* ══ Nav hidden/scrolled states ══════════════════════════════ */
.main-nav.nav-hidden  { transform: translateY(-100%); transition: transform 0.3s ease !important; }
.main-nav.nav-scrolled { backdrop-filter: blur(12px) !important; }

/* ══════════════════════════════════════════════════════════════════
   FLUID ANIMATIONS — RENTVALA FIX
══════════════════════════════════════════════════════════════════ */

@keyframes rvFadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes rvFadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes rvPop      { 0%{transform:scale(0.94);opacity:0} 60%{transform:scale(1.03)} 100%{transform:scale(1);opacity:1} }
@keyframes rvPulseGlow{ 0%,100%{box-shadow:0 0 0 0 rgba(45,197,162,0.35)} 50%{box-shadow:0 0 0 8px rgba(45,197,162,0)} }
@keyframes rvBounce   { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} 70%{transform:translateY(-2px)} }
@keyframes rvShimmer2 { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* CRITICAL FIX: reveal uses 'visible' class — support both */
.reveal.visible,
.reveal.revealed { opacity:1 !important; transform:translateY(0) !important; }

/* Staggered card animations */
.prop-card-h.reveal:nth-child(1){--delay:0.05s}.prop-card-h.reveal:nth-child(2){--delay:0.12s}
.prop-card-h.reveal:nth-child(3){--delay:0.19s}.prop-card-h.reveal:nth-child(4){--delay:0.26s}
.prop-card-h.reveal:nth-child(5){--delay:0.33s}.prop-card-h.reveal:nth-child(6){--delay:0.40s}

/* Hero entrance */
.hero-left  { animation: rvFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.hero-right { animation: rvFadeUp 0.7s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.hero-trust { animation: rvFadeIn 0.6s 0.3s ease both; }
.main-nav   { animation: rvFadeIn 0.4s ease both; }

/* Property card hover */
.prop-card-h {
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease !important;
  will-change: transform;
}
.prop-card-h:hover { transform: translateY(-6px) scale(1.01) !important; box-shadow:0 16px 48px rgba(0,0,0,0.12) !important; }
.prop-card-h:hover .prop-img { transform: scale(1.06); }
.prop-img { transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) !important; }

/* Save button pop */
.prop-save-btn.saved { animation: rvPop 0.4s cubic-bezier(0.34,1.56,0.64,1); }

/* Button feedback */
.btn-prop:active,.btn:active,.btn-primary:active { transform:scale(0.96) !important; }
.btn-prop-wa { animation: rvPulseGlow 2.5s infinite; }

/* City card hover */
.city-card { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease !important; }
.city-card:hover { transform:translateY(-5px) scale(1.02) !important; box-shadow:0 12px 32px rgba(0,0,0,0.1) !important; }

/* Testimonial card hover */
.testimonial-card { transition:transform 0.25s ease,box-shadow 0.25s ease !important; }
.testimonial-card:hover { transform:translateY(-4px) !important; box-shadow:0 12px 32px rgba(0,0,0,0.08) !important; }

/* Nav underline slide */
.nav-link { position:relative; overflow:hidden; }
.nav-link::after { content:''; position:absolute; bottom:-2px; left:0; width:100%; height:2px; background:var(--teal); transform:scaleX(0); transform-origin:right; transition:transform 0.25s ease; }
.nav-link:hover::after,.nav-link.active::after { transform:scaleX(1); transform-origin:left; }

/* Visiting dot */
.visiting-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:#4ADE80; margin-right:5px; animation:rvPulseGlow 1.8s infinite; vertical-align:middle; }

/* Featured badge shimmer */
.prop-featured-badge { background:linear-gradient(90deg,#f59e0b,#fbbf24,#f59e0b); background-size:200% 100%; animation:rvShimmer2 2.5s infinite linear; color:#fff; font-size:10px; font-weight:800; padding:3px 8px; border-radius:6px; position:absolute; top:8px; left:8px; letter-spacing:0.04em; }

/* Skeleton enhanced */
.skeleton-box { background:linear-gradient(90deg,var(--bg2) 25%,var(--bg3,#e5e7eb) 50%,var(--bg2) 75%); background-size:200% 100%; animation:rvShimmer2 1.4s infinite; border-radius:var(--radius-sm); min-height:180px; }
.skeleton-line { height:14px; border-radius:6px; margin:10px 0; background:linear-gradient(90deg,var(--bg2) 25%,var(--bg3,#e5e7eb) 50%,var(--bg2) 75%); background-size:200% 100%; animation:rvShimmer2 1.4s infinite; }
.skeleton-line.short { width:60%; }

/* Mobile overlay slide */
#mobileOverlay { transition:transform 0.32s cubic-bezier(0.22,1,0.36,1) !important; transform:translateX(-100%); }
#mobileOverlay.open { transform:translateX(0) !important; }

/* WA float bounce */
.wa-float { animation:rvBounce 3s ease infinite; }
.wa-float:hover { animation:none; transform:scale(1.12) !important; }

/* Nav slide hide/show */
.main-nav { transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease !important; }
.main-nav.nav-hidden { transform:translateY(-100%) !important; }
.main-nav.nav-scrolled { backdrop-filter:blur(12px) !important; }

/* CTA banner pop */
.cta-banner.visible,.cta-banner.revealed { animation:rvPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both !important; }

/* Leaflet popup animate */
.leaflet-popup-content-wrapper { animation:rvFadeUp 0.2s ease; }

/* Filter chip hover */
.filter-chip { transition:background 0.18s ease,color 0.18s ease,transform 0.18s ease !important; }
.filter-chip:hover:not(.active) { transform:translateY(-1px); }
