 
 /* ===== Proppty — Design System ===== */
:root {
  --brand: #d6002a;
  --brand-dark: #b00022;
  --brand-light: #ffe4e9;
  --accent: #f59e0b;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, 0.25);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { text-decoration: none; color: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-family: inherit; font-size: 15px;
  padding: 12px 22px; border-radius: var(--radius-sm); cursor: pointer;
  border: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -6px rgba(37,99,235,.5); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-danger { background: #fef2f2; color: #dc2626; border: 1.5px solid #fecaca; }
.btn-danger:hover { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn-whatsapp { background: #25d366; color: #fff; border: none; gap: 8px; }
.btn-whatsapp:hover { background: #1fb855; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===== Top bar (red, MagicBricks style) ===== */
.topbar { position: sticky; top: 0; z-index: 60; background: var(--brand); color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.topbar-inner { display: flex; align-items: center; height: 62px; gap: 28px; position: relative; }
.topbar .logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 22px; color: #fff; position: relative; z-index: 2; margin-left: -8px; margin-right: 40px; flex-shrink: 0; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 22px; color: #fff; }
.logo-mark { width: 34px; height: 34px; border-radius: 9px; background: #fff; color: var(--brand); display: grid; place-items: center; font-weight: 800; overflow: hidden; }
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { color: #fff; letter-spacing: -.3px; }
.logo-text .accent { color: #fff; }

.topnav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: flex-start; }
.menu-item { position: relative; }
.menu-btn { background: none; border: none; color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; padding: 10px 14px; cursor: pointer; display: flex; align-items: center; gap: 6px; border-radius: 8px; }
.menu-btn:hover { background: rgba(255,255,255,.12); }
.caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid #fff; display: inline-block; }
.menu-link { color: #fff; font-size: 15px; font-weight: 600; padding: 10px 14px; border-radius: 8px; }
.menu-link:hover { background: rgba(255,255,255,.12); }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 70; }
.menu-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; font-size: 14px; color: var(--ink-2); border-radius: 8px; }
.dropdown a:hover { background: var(--brand-light); color: var(--brand); }

/* Mega dropdown (99acres style, 5-column horizontal layout) */
.mega-dropdown.dropdown { min-width: 820px; padding: 24px 28px; left: 50%; transform: translateX(-50%) translateY(8px); display: none !important; flex-wrap: nowrap; }
.menu-mega-wrap:hover > .mega-dropdown.dropdown { display: flex !important; flex-direction: row; opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col { flex: 1; min-width: 0; padding: 0 16px; border-right: 1px solid var(--line); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-col h5 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; letter-spacing: .2px; font-style: italic; }
.mega-col a { display: block; padding: 5px 0; font-size: 13.5px; color: var(--ink-2); border-radius: 0; background: none !important; }
.mega-col a:hover { background: none !important; color: var(--brand); }

.topbar-actions { display: flex; align-items: center; gap: 16px; position: absolute; right: calc(-1 * ((100vw - 100%) / 2) + 24px); top: 50%; transform: translateY(-50%); z-index: 2; }
.account-item { position: relative; }
.tb-login { background: none; border: none; color: #fff; font-family: inherit; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 9px 6px; }
.dropdown-right { left: auto; right: 0; min-width: 180px; }
.kyc-menu-done { color: #15803d !important; font-weight: 700; }
.kyc-menu-done:hover { background: #dcfce7 !important; }
.kyc-menu-pending { color: #b45309 !important; font-weight: 700; }
.kyc-menu-pending:hover { background: #fef3c7 !important; }
.kyc-menu-todo { color: var(--brand) !important; font-weight: 700; }
.account-dropdown { min-width: 210px; max-height: 80vh; overflow-y: auto; }
.account-dropdown .logout-link { color: #dc2626 !important; font-weight: 600; border-top: 1px solid var(--line); margin-top: 4px; }
.account-dropdown .logout-link:hover { background: #fef2f2 !important; }
.tb-post { background: #fff; color: var(--brand); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; display: flex; align-items: center; gap: 6px; }
.tb-post span { background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 999px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* NoBroker-style top-right actions */
.tb-owners { background: #00a699; color: #fff; font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 8px; white-space: nowrap; transition: background .2s; }
.tb-owners:hover { background: #009086; }
.tb-plain { color: #fff; font-weight: 600; font-size: 14px; padding: 6px 4px; white-space: nowrap; }
.tb-plain:hover { opacity: .85; }
.tb-sep { color: rgba(255,255,255,.5); font-size: 14px; }
.tb-hi { color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; }
.tb-menu { display: flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); border-radius: 8px; font-family: inherit; font-weight: 600; font-size: 14px; padding: 8px 14px; cursor: pointer; white-space: nowrap; transition: background .2s; }
.tb-menu:hover { background: rgba(255,255,255,.12); }
.tb-menu-lines { display: flex; flex-direction: column; gap: 3px; }
.tb-menu-lines span { width: 16px; height: 2px; background: #fff; border-radius: 2px; }

/* Mega menu panel */
.mega-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.4); z-index: 80; opacity: 0; visibility: hidden; transition: opacity .25s; }
.mega-overlay.open { opacity: 1; visibility: visible; }
.mega-panel { position: fixed; top: 0; right: 0; height: 100vh; width: 340px; max-width: 88vw; background: #fff; z-index: 90; box-shadow: -10px 0 40px rgba(15,23,42,.2); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; padding: 56px 0 30px; }
.mega-panel.open { transform: translateX(0); }
.mega-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; }
.mega-close:hover { color: var(--ink); }
.mega-links { display: flex; flex-direction: column; }
.mega-links a { padding: 15px 26px; font-size: 15px; color: var(--ink-2); border-bottom: 1px solid var(--line); transition: background .15s, color .15s; }
.mega-links a:hover { background: var(--bg-alt); color: var(--brand); }
.mega-user { display: flex; align-items: center; gap: 12px; padding: 18px 26px; border-bottom: 1px solid var(--line); }
.mega-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 20px; flex: none; }
.mega-user strong { display: block; font-size: 15px; color: var(--ink); }
.mega-user span { font-size: 12px; color: var(--muted); }
.mega-signout { color: #00a699 !important; font-weight: 700; }
.mega-signout:hover { background: #e6faf8 !important; }
.mega-contact { padding: 22px 26px; }
.mega-contact h5 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.mega-email { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.mega-email strong { color: var(--ink); }
.mega-social { display: flex; gap: 12px; }
.mega-social a { width: 42px; height: 42px; border: 1.5px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: all .2s; }
.mega-social a:hover { border-color: var(--brand); color: var(--brand); }

/* ===== Hero 2 (centered search) ===== */
.hero2 { padding: 60px 0 70px; text-align: center; background:
  radial-gradient(900px 400px at 50% -10%, var(--brand-light), transparent),
  linear-gradient(180deg, #fff, var(--bg-alt));
}
.hero2-inner { max-width: 1060px; margin: 0 auto; }
.hashtag { display: inline-block; font-size: 15px; color: var(--ink-2); margin-bottom: 12px; }
.hashtag strong { color: var(--brand); }
.hero2 h1 { font-size: 40px; font-weight: 800; letter-spacing: -.5px; line-height: 1.15; }
.hero2-sub { color: var(--ink-2); font-size: 16px; margin: 14px 0 30px; }

.searchbar { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 8px; }
.sb-tabs { display: flex; gap: 4px; padding: 6px 6px 10px; flex-wrap: wrap; justify-content: center; }
.sbtab { background: none; border: none; font-family: inherit; font-weight: 600; font-size: 14px; color: var(--muted); padding: 8px 16px; border-radius: 999px; cursor: pointer; position: relative; }
.sbtab.active { color: var(--brand); }
.sbtab.active::after { content: ""; position: absolute; bottom: -2px; left: 16px; right: 16px; height: 3px; background: var(--brand); border-radius: 3px; }
.sb-row { display: flex; align-items: stretch; gap: 8px; padding: 6px; border-top: 1px solid var(--line); }
.sb-field { display: flex; align-items: center; background: var(--bg-alt); border-radius: 10px; padding: 0 14px; }
.sb-city-search { flex: 0 0 auto; min-width: 180px; position: relative; }
.sb-city-search input[type="text"] { border: none; background: none; outline: none; font-family: inherit; font-size: 15px; width: 100%; padding: 14px 0; color: var(--ink); font-weight: 600; }
.sb-city-search input[type="text"]::placeholder { color: var(--muted); font-weight: 400; }

/* City dropdown */
.sb-city-dropdown { display: none; position: absolute; top: 100%; left: -1px; right: -1px; background: #fff; border: 1px solid var(--line); border-radius: 0 0 14px 14px; box-shadow: var(--shadow-lg); z-index: 100; max-height: 340px; overflow-y: auto; padding: 10px; }
.sb-city-dropdown.open { display: block; }

/* Quick city chips */
.sb-city-quick { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.sb-city-chip { background: var(--bg-alt); border: 1.5px solid var(--line); border-radius: 20px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all .15s; font-family: inherit; }
.sb-city-chip:hover, .sb-city-chip.active { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }

/* Search results */
.sb-city-results { display: flex; flex-direction: column; }
.sb-city-result { background: none; border: none; text-align: left; padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--ink-2); cursor: pointer; border-radius: 8px; transition: background .1s; }
.sb-city-result:hover { background: var(--bg-alt); color: var(--ink); }
.sb-city-result strong { color: var(--brand); font-weight: 700; }
.sb-city-none { padding: 12px; font-size: 13px; color: var(--muted); text-align: center; }

.sb-loc { flex: 1.2; }
.sb-ico { margin-right: 8px; }
.sb-loc input { border: none; background: none; outline: none; font-family: inherit; font-size: 15px; width: 100%; padding: 14px 0; }
.sb-select { flex: 1.3; min-width: 220px; padding-right: 18px; }
.sb-select select { border: none; background-color: transparent; outline: none; font-family: inherit; font-size: 15px; width: 100%; padding: 14px 30px 14px 0; cursor: pointer; color: var(--ink-2); -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; background-size: 12px; }
.sb-search { background: var(--brand); color: #fff; border: none; font-family: inherit; font-weight: 700; font-size: 15px; padding: 0 28px; border-radius: 10px; cursor: pointer; transition: background .2s; }
.sb-search:hover { background: var(--brand-dark); }

.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.qcard { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 4px; transition: transform .2s, box-shadow .2s; }
.qcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.qc-num { font-size: 24px; font-weight: 800; color: var(--brand); }
.qc-txt { font-size: 13px; color: var(--ink-2); }

/* ===== Hero ===== */
.hero { padding: 72px 0 80px; background:
  radial-gradient(900px 400px at 80% -10%, var(--brand-light), transparent),
  radial-gradient(600px 300px at 0% 20%, #fff7ed, transparent);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.badge {
  display: inline-block; background: #fff; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--ink-2); box-shadow: var(--shadow); margin-bottom: 20px;
}
.hero h1 { font-size: 52px; line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.grad { background: linear-gradient(120deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; color: var(--ink-2); margin: 20px 0 28px; max-width: 540px; }

.search-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-lg); }
.search-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.tab { background: transparent; border: none; font-family: inherit; font-weight: 600; font-size: 14px; color: var(--muted); padding: 8px 16px; border-radius: 8px; cursor: pointer; }
.tab.active { background: var(--brand-light); color: var(--brand); }
.search-row { display: flex; gap: 10px; }
.search-row input { flex: 1; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px; font-family: inherit; font-size: 15px; outline: none; }
.search-row input:focus { border-color: var(--brand); }

.hero-stats { display: flex; gap: 36px; margin-top: 30px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 26px; font-weight: 800; }
.hero-stats span { font-size: 13px; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hc-img { height: 190px; background: linear-gradient(135deg, #ffe4e9, #fff1e6); position: relative; }
.hc-img::after { content: ""; position: absolute; inset: 0; background-repeat: no-repeat; background-position: center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23d6002a' stroke-opacity='0.35' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4v18'/%3E%3Cpath d='M19 21V11l-6-4'/%3E%3C/svg%3E"); }
.hc-body { padding: 18px; }
.hc-tag { display: inline-block; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: .5px; }
.hc-body h4 { margin: 10px 0 4px; font-size: 19px; }
.hc-body p { color: var(--muted); font-size: 14px; }
.hc-price { margin-top: 12px; font-size: 20px; font-weight: 800; }
.hc-price span { font-size: 13px; font-weight: 500; color: var(--accent); }
.hero-float { position: absolute; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); padding: 10px 16px; border-radius: 12px; font-weight: 600; font-size: 14px; }
.hf1 { top: -14px; left: -20px; }
.hf2 { bottom: 30px; right: -18px; }

/* ===== Trust bar ===== */
.trustbar { background: var(--ink); color: #cbd5e1; padding: 16px 0; text-align: center; }
.trustbar p { font-size: 14px; letter-spacing: .3px; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow { color: var(--brand); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.section-head h2 { font-size: 38px; font-weight: 800; letter-spacing: -.5px; margin: 10px 0 12px; }
.section-head p { color: var(--ink-2); font-size: 17px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.step-num { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-light); color: var(--brand); font-weight: 800; font-size: 20px; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 15px; }

/* Compare / pricing */
.compare { display: flex; align-items: stretch; justify-content: center; gap: 20px; flex-wrap: wrap; }
.compare-card { flex: 1; min-width: 280px; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; }
.compare-card.old { opacity: .92; }
.compare-card.new { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); }
.compare-card h4 { font-size: 18px; color: var(--muted); }
.big-price { font-size: 46px; font-weight: 800; margin: 8px 0 2px; }
.compare-card.new .big-price { color: var(--brand); }
.muted { color: var(--muted); font-size: 14px; }
.compare-card ul { list-style: none; margin: 22px 0; }
.compare-card li { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 15px; color: var(--ink-2); }
.ribbon { position: absolute; top: -12px; right: 24px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 8px; letter-spacing: .5px; }
.vs { align-self: center; font-weight: 800; color: var(--muted); font-size: 18px; }
.savings-note { text-align: center; margin-top: 30px; font-size: 17px; color: var(--ink-2); }

/* Rate tables */
.rate-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.rate-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.rate-card h3 { font-size: 20px; margin-bottom: 16px; }
.rate-table { width: 100%; border-collapse: collapse; }
.rate-table th { text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); padding: 10px 0; border-bottom: 2px solid var(--line); }
.rate-table td { padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 15px; color: var(--ink-2); }
.rate-table td strong { color: var(--brand); font-size: 17px; }
.rate-table td span { display: block; font-size: 12px; color: var(--muted); }

/* ===== Post Property banner ===== */
.post-banner { padding: 22px 0; background: linear-gradient(120deg, #fff7ed, var(--brand-light)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.post-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.post-banner-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brand); margin-bottom: 4px; }
.post-banner-text h2 { font-size: 26px; font-weight: 800; letter-spacing: -.3px; }
.post-banner-text p { color: var(--ink-2); font-size: 15px; margin-top: 6px; max-width: 640px; }
.post-banner-btn { padding: 14px 28px; font-size: 16px; white-space: nowrap; }

/* ===== Services strip (NoBroker style) ===== */
.svc-strip { padding: 34px 0 10px; background: #fff; }
.svc-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.svc-item { flex: 1; min-width: 110px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 10px 6px; border-radius: 12px; position: relative; transition: transform .2s ease; }
.svc-item:hover { transform: translateY(-4px); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-alt); display: grid; place-items: center; color: var(--brand); transition: background .2s, color .2s; }
.svc-icon svg { width: 26px; height: 26px; }
.svc-item:hover .svc-icon { background: var(--brand); color: #fff; }
.svc-name { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.svc-badge { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap; letter-spacing: .3px; }
.badge-red { background: var(--brand-light); color: var(--brand); }
.badge-amber { background: #fef3c7; color: #b45309; }

/* ===== Why Use Proppty strip ===== */
.why-strip { padding: 20px 0 44px; background: #fff; }
.why-title { text-align: center; position: relative; margin: 10px 0 34px; }
.why-title::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.why-title span { position: relative; background: #fff; padding: 0 22px; font-size: 20px; font-weight: 600; color: var(--ink-2); }
.why-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.why-item { flex: 1; min-width: 160px; text-align: center; padding: 6px; }
.why-icon { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 16px; background: var(--brand-light); display: grid; place-items: center; color: var(--brand); }
.why-icon svg { width: 30px; height: 30px; }
.why-item h4 { font-size: 16px; margin-bottom: 6px; }
.why-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Listings */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.listing:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.listing-img { height: 170px; display: grid; place-items: center; position: relative; }
.listing-icon { color: rgba(15,23,42,.28); }
.listing-icon svg { width: 64px; height: 64px; }
.listing-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); color: var(--ink-2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 5px 10px; border-radius: 6px; }
.listing-body { padding: 18px; }
.listing-type { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .5px; }
.listing-body h4 { font-size: 18px; margin: 6px 0 4px; }
.listing-loc { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 5px; }
.listing-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.listing-price { font-weight: 800; font-size: 18px; }
.listing-fee { font-size: 12px; color: var(--accent); font-weight: 700; background: #fff7ed; padding: 5px 10px; border-radius: 999px; }

/* CTA */
.cta { padding: 84px 0; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.cta-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.cta-text h2 { color: #fff; font-size: 38px; font-weight: 800; }
.cta-text p { color: #dbeafe; font-size: 18px; margin: 14px 0 20px; }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-list li { color: #fff; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.cta-list li::before { content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.cta-form { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.cta-form h3 { font-size: 22px; margin-bottom: 18px; }
.cta-form input, .cta-form select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; font-family: inherit; font-size: 15px; margin-bottom: 12px; outline: none; }
.cta-form input:focus, .cta-form select:focus { border-color: var(--brand); }
.form-note { font-size: 14px; margin-top: 10px; text-align: center; color: #16a34a; font-weight: 600; }

/* ===== Auth Modal ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.55); backdrop-filter: blur(3px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 18px; width: 100%; max-width: 420px; padding: 30px; position: relative; box-shadow: var(--shadow-lg); max-height: 92vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-close:hover { color: var(--ink); }
.modal-brand { display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 800; font-size: 24px; margin-bottom: 20px; }
.auth-tabs { display: flex; background: var(--bg-alt); border-radius: 12px; padding: 5px; margin-bottom: 22px; }
.auth-tab { flex: 1; background: none; border: none; font-family: inherit; font-weight: 700; font-size: 14px; color: var(--muted); padding: 11px 6px; border-radius: 9px; cursor: pointer; transition: all .2s; }
.auth-tab.active { background: #fff; color: var(--brand); box-shadow: var(--shadow); }
.btn-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; transition: background .15s, border-color .15s; }
.btn-google:hover { background: var(--bg-alt); border-color: var(--muted); }
.btn-google:disabled { opacity: .6; cursor: default; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 6px; color: var(--muted); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin: 12px 0 6px; }
.auth-form input, .auth-form select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 15px; outline: none; }
.auth-form input:focus, .auth-form select:focus { border-color: var(--brand); }
.auth-form .btn { margin-top: 18px; }
.auth-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.auth-alt { font-size: 14px; text-align: center; margin-top: 14px; color: var(--ink-2); }
.auth-alt a { color: var(--brand); font-weight: 600; }
.auth-msg { font-size: 14px; text-align: center; margin-top: 12px; font-weight: 600; }
.kyc-upload { border: 2px dashed var(--line); border-radius: 10px; padding: 16px; text-align: center; font-size: 13px; color: var(--muted); cursor: pointer; transition: border-color .2s; }
.kyc-upload:hover { border-color: var(--brand); color: var(--brand); }
.kyc-intro { text-align: center; margin-bottom: 8px; }
.kyc-shield { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; margin: 0 auto 12px; }
.kyc-intro h3 { font-size: 19px; margin-bottom: 6px; }
.kyc-intro p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.hidden { display: none; }

/* Footer */
.footer { background: var(--ink); color: #94a3b8; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h5 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-cols a { display: block; font-size: 14px; padding: 5px 0; color: #94a3b8; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid #1e293b; font-size: 13px; }

/* ===== Listings / Search Results page ===== */
.results-searchbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 62px; z-index: 40; padding: 14px 0; }
.rs-row { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.rs-field { display: flex; align-items: center; gap: 8px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; color: var(--muted); }
.rs-loc { flex: 1.6; min-width: 200px; }
.rs-loc input { border: none; background: none; outline: none; font-family: inherit; font-size: 15px; width: 100%; padding: 12px 0; }
.rs-row select { flex: 1; min-width: 130px; border: 1px solid var(--line); background: var(--bg-alt); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 14px; color: var(--ink-2); cursor: pointer; outline: none; }
.rs-row .btn { padding: 12px 26px; }

.results-wrap { padding: 30px 0 70px; background: var(--bg-alt); min-height: 60vh; }
.results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-head h1 { font-size: 26px; font-weight: 800; }
.results-meta { display: flex; align-items: center; gap: 16px; }
.results-meta #resultsCount { font-size: 14px; color: var(--muted); font-weight: 600; }
.sort-select { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 10px 14px; font-family: inherit; font-size: 14px; color: var(--ink-2); cursor: pointer; outline: none; }

.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rlisting { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; color: inherit; }
.rlisting:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rlisting-img { height: 180px; display: grid; place-items: center; position: relative; }
.rlisting-icon { color: rgba(15,23,42,.26); }
.rlisting-icon svg { width: 64px; height: 64px; }
.rlisting-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--ink-2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 5px 10px; border-radius: 6px; }
.rlisting-deal { position: absolute; top: 12px; right: 12px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 6px; }
.rlisting-deal.rent { background: var(--accent); }
.rlisting-heart { position: absolute; bottom: 12px; right: 12px; background: rgba(255,255,255,.9); border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 18px; color: #ccc; cursor: pointer; transition: all .2s; display: grid; place-items: center; }
.rlisting-heart:hover { color: var(--brand); transform: scale(1.15); }
.rlisting-heart.saved { color: var(--brand); }
.rlisting-body { padding: 18px; }
.rlisting-price { font-size: 20px; font-weight: 800; color: var(--ink); }
.rlisting-body h3 { font-size: 17px; margin: 4px 0; }
.rlisting-loc { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 5px; }
.rlisting-specs { display: flex; gap: 14px; margin: 12px 0; flex-wrap: wrap; }
.rlisting-specs span { font-size: 13px; color: var(--ink-2); background: var(--bg-alt); padding: 4px 10px; border-radius: 6px; }
.rlisting-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.rlisting-fee { font-size: 12px; color: var(--accent); font-weight: 700; background: #fff7ed; padding: 5px 10px; border-radius: 999px; }
.rlisting-view { font-size: 13px; font-weight: 700; color: var(--brand); }
.no-results { text-align: center; padding: 60px 0; }
.no-results p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }

/* ===== Property Detail page ===== */
.pd-wrap { padding: 24px 0 60px; background: var(--bg-alt); min-height: 70vh; }
.pd-back { display: inline-block; color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.pd-back:hover { color: var(--brand); }
.pd-hero { height: 320px; border-radius: var(--radius); position: relative; display: grid; place-items: center; margin-bottom: 26px; overflow: hidden; }
.pd-hero-icon { color: rgba(15,23,42,.22); }
.pd-hero-icon svg { width: 120px; height: 120px; }
.pd-hero-badge { position: absolute; top: 18px; left: 18px; background: var(--brand); color: #fff; font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 8px; }
.pd-hero-badge.rent { background: var(--accent); }
.pd-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.pd-main { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.pd-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.pd-head h1 { font-size: 28px; font-weight: 800; }
.pd-loc { color: var(--muted); font-size: 15px; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.pd-price { font-size: 28px; font-weight: 800; color: var(--brand); white-space: nowrap; }
.pd-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pd-spec { display: flex; flex-direction: column; }
.pd-spec strong { font-size: 20px; font-weight: 800; }
.pd-spec span { font-size: 13px; color: var(--muted); }
.pd-section { margin-top: 24px; }
.pd-section h3 { font-size: 18px; margin-bottom: 10px; }
.pd-section p { color: var(--ink-2); font-size: 15px; }
.pd-amenities { display: flex; flex-wrap: wrap; gap: 10px; }
.pd-amenity { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; color: var(--ink-2); }
.pd-fee-box { background: var(--brand-light); border-radius: 12px; padding: 18px; }
.pd-fee-box strong { display: block; font-size: 20px; color: var(--brand); }
.pd-fee-box span { font-size: 14px; color: var(--ink-2); }
.pd-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
.pd-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.pd-owner-label { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.pd-verified-badge { display: inline-flex; align-items: center; gap: 4px; background: #dcfce7; color: #15803d; font-weight: 700; font-size: 12px; padding: 4px 10px; border-radius: 999px; }
.pd-owner { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pd-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 20px; }
.pd-owner strong { display: block; font-size: 15px; }
.pd-owner span { font-size: 13px; color: var(--muted); }
.pd-card .btn { margin-bottom: 10px; }
.pd-note { font-size: 12px; color: var(--muted); margin-top: 4px; text-align: center; }
.pd-safety h4 { font-size: 15px; margin-bottom: 10px; }
.pd-safety ul { list-style: none; }
.pd-safety li { font-size: 13px; color: var(--ink-2); padding: 5px 0 5px 20px; position: relative; }
.pd-safety li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.pd-empty { text-align: center; padding: 80px 0; }
.pd-empty h2 { margin-bottom: 20px; }

/* Photo previews on post form */
.pp-previews { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pp-thumb { width: 74px; height: 74px; border-radius: 10px; background-size: cover; background-position: center; border: 1px solid var(--line); }

/* Property detail photo gallery */
.pd-gallery { position: relative; margin-bottom: 26px; }
.pd-gallery-main { height: 360px; border-radius: var(--radius); background-size: cover; background-position: center; }
.pd-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.pd-gallery-thumb { height: 84px; border-radius: 10px; background-size: cover; background-position: center; }

/* ===== User Dashboard ===== */
.dash-wrap { padding: 30px 0 70px; background: var(--bg-alt); min-height: 70vh; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.dash-user { display: flex; align-items: center; gap: 16px; }
.dash-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 24px; flex: none; }
.dash-header h1 { font-size: 24px; font-weight: 800; }
.dash-header p { color: var(--muted); font-size: 14px; }

/* ===== Admin Dashboard ===== */
.admin-gate { min-height: 70vh; display: grid; place-items: center; background: var(--bg-alt); padding: 40px 20px; }
.admin-gate-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; max-width: 380px; width: 100%; box-shadow: var(--shadow); text-align: center; }
.admin-gate-card h2 { font-size: 24px; margin-bottom: 6px; }
.admin-gate-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.admin-gate-card input { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 15px; margin-bottom: 12px; outline: none; }
.admin-gate-card input:focus { border-color: var(--brand); }
.admin-wrap { padding: 30px 0 70px; background: var(--bg-alt); min-height: 70vh; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.admin-header h1 { font-size: 28px; font-weight: 800; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.astat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; box-shadow: var(--shadow); }
.astat strong { display: block; font-size: 30px; font-weight: 800; color: var(--brand); }
.astat span { font-size: 13px; color: var(--muted); }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.admin-tab { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; font-family: inherit; font-weight: 600; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.admin-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.admin-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-empty { padding: 40px; text-align: center; color: var(--muted); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-2); vertical-align: middle; }
.admin-table small { color: var(--muted); }
.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.status-pill { font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.status-pill.pending { background: #fef3c7; color: #b45309; }
.status-pill.approved { background: #dcfce7; color: #15803d; }

/* ===== Post Property page ===== */
.pp-hero { background: linear-gradient(180deg, var(--brand-light), #fff); padding: 46px 0 34px; text-align: center; }
.pp-hero h1 { font-size: 34px; font-weight: 800; }
.pp-hero p { color: var(--ink-2); font-size: 16px; max-width: 560px; margin: 12px auto 0; }
.pp-wrap { padding: 30px 0 70px; background: var(--bg-alt); }
.pp-steps { display: flex; justify-content: center; gap: 10px; max-width: 720px; margin: 0 auto 26px; flex-wrap: wrap; }
.pp-step { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.pp-step span { width: 22px; height: 22px; border-radius: 50%; background: var(--line); color: #fff; display: grid; place-items: center; font-size: 12px; }
.pp-step.active { color: var(--brand); border-color: var(--brand); }
.pp-step.active span { background: var(--brand); }
.pp-step.done span { background: #16a34a; }
.pp-form { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.pp-panel { display: none; }
.pp-panel.active { display: block; }
.pp-field { margin-bottom: 18px; }
.pp-field > label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.pp-field input, .pp-field select, .pp-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 15px; outline: none; }
.pp-field input:focus, .pp-field select:focus, .pp-field textarea:focus { border-color: var(--brand); }
.pp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pp-choice { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--bg-alt); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: all .15s; }
.chip.active { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }
.pp-upload { border: 2px dashed var(--line); border-radius: 12px; padding: 30px; text-align: center; color: var(--muted); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: border-color .2s; }
.pp-upload:hover { border-color: var(--brand); color: var(--brand); }
.pp-consent { margin-bottom: 18px; }
.pp-consent label { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.pp-consent input { margin-top: 4px; }
.pp-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.pp-actions .btn { min-width: 120px; }
.pp-actions .btn:only-child { margin-left: auto; }

/* Free agreement banner */
.pp-free-banner { display: flex; align-items: flex-start; gap: 16px; background: #dcfce7; border: 1px solid #bbf7d0; border-radius: 14px; padding: 20px; max-width: 720px; margin: 0 auto 24px; }
.pp-free-icon { font-size: 32px; flex: none; }
.pp-free-banner strong { display: block; font-size: 16px; color: #15803d; margin-bottom: 4px; }
.pp-free-banner p { font-size: 13px; color: #166534; line-height: 1.5; margin: 0; }

/* KYC intro */
.pp-kyc-intro { text-align: center; margin-bottom: 20px; }
.pp-kyc-shield { width: 56px; height: 56px; border-radius: 16px; background: var(--brand-light); color: var(--brand); display: grid; place-items: center; margin: 0 auto 12px; }
.pp-kyc-intro h3 { font-size: 20px; margin-bottom: 6px; }
.pp-kyc-intro p { font-size: 14px; color: var(--muted); line-height: 1.5; max-width: 480px; margin: 0 auto; }

/* Free reminder box */
.pp-free-reminder { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.pp-free-reminder strong { display: block; font-size: 16px; margin-bottom: 10px; }
.pp-free-reminder ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pp-free-reminder li { font-size: 14px; color: var(--ink-2); }

/* ===== Responsive ===== */
/* ===== Mobile bottom nav ===== */
.mobile-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--line); z-index: 70; padding: 6px 0 env(safe-area-inset-bottom, 8px); box-shadow: 0 -4px 20px rgba(15,23,42,.08); }
.mobile-nav { display: none; grid-template-columns: repeat(5, 1fr); }
.mnav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 11px; font-weight: 600; color: var(--muted); padding: 6px 0; text-decoration: none; }
.mnav-item:hover, .mnav-item:active { color: var(--brand); }
.mnav-post { color: var(--brand); }
.mnav-post svg { background: var(--brand); color: #fff; border-radius: 50%; padding: 4px; width: 32px; height: 32px; }

@media (max-width: 980px) {
  .topnav { position: fixed; top: 62px; right: 0; left: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 20px; gap: 2px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .25s ease; max-height: calc(100vh - 62px); overflow-y: auto; }
  .topnav.open { transform: translateY(0); }
  .menu-btn, .menu-link { color: var(--ink); justify-content: space-between; width: 100%; }
  .menu-btn:hover, .menu-link:hover { background: var(--brand-light); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 8px 12px; min-width: 0; display: none; }
  .menu-item.open .dropdown { display: block; }
  .topbar-actions { display: none; }
  .mobile-nav { display: grid; }
  .footer { padding-bottom: 80px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .quick-cards { grid-template-columns: 1fr 1fr; }
  .sb-row { flex-wrap: wrap; }
  .sb-loc { flex: 1 1 100%; }
  .sb-select { flex: 1 1 45%; }
  .sb-search { flex: 1 1 100%; padding: 14px; }
  .hero2 h1 { font-size: 30px; }
  .steps, .listings-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-side { position: static; }
  .results-searchbar { position: static; }
  .svc-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .svc-item { min-width: 100px; }
  .why-row { justify-content: flex-start; }
  .why-item { min-width: 45%; }
  .post-banner-inner { flex-direction: column; align-items: flex-start; }
  .post-banner-btn { width: 100%; }
  .post-banner-text h2 { font-size: 22px; }
  .rate-tables { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-head h2, .cta-text h2 { font-size: 30px; }
}
/* ===== Property perks & interest modal ===== */
.pd-perks { display: flex; flex-direction: column; gap: 6px; margin: 14px 0 8px; }
.pd-perk { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Interest modal */
.interest-modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.55); backdrop-filter: blur(3px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.interest-modal { background: #fff; border-radius: 18px; width: 100%; max-width: 440px; padding: 30px; position: relative; box-shadow: var(--shadow-lg); }
.interest-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer; }
.interest-close:hover { color: var(--ink); }
.interest-modal h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.interest-prop { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.interest-fee { display: flex; justify-content: space-between; align-items: center; background: #fef3c7; border-radius: 10px; padding: 12px 16px; margin-bottom: 16px; font-size: 14px; font-weight: 600; color: #92400e; }
.interest-fee strong { font-size: 18px; color: #b45309; }
#interestForm input, #interestForm textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: 15px; outline: none; margin-bottom: 10px; }
#interestForm input:focus, #interestForm textarea:focus { border-color: var(--brand); }
#interestForm .btn { margin-top: 6px; }
.interest-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--muted); }

@media (max-width: 480px) {
  .quick-cards { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .results-grid { grid-template-columns: 1fr; }
  .pd-specs { grid-template-columns: 1fr 1fr; }
  .pp-row { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-table { font-size: 13px; }
  .admin-actions { flex-direction: column; }
}
