/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  --blue: #0099F6;
  --indigo: #3A49BC;
  --purple: #9C41CC;
  --ga: #7C3DAF;
  --gb: #0F5DB8;
  --grad: linear-gradient(90deg, var(--ga), var(--gb));
  --logo-grad: linear-gradient(90deg, var(--blue), var(--indigo), var(--purple));
  --navy: #0A1C30;
  --ink: #16213A;
  --muted: #69708A;
  --muted2: #9AA5C4;
  --bg: #F4F6FB;
  --paper: #fff;
  --bd: #E7EAF2;
  --green: #1A8A4B;
  --orange: #F4805A;
  --gold: #FEC107;
  --wa: #25D366;
  --danger: #E0394F;
  --r: 10px;
  --rl: 16px;
  --rp: 999px;
  --sh: 0 1px 3px rgba(22,33,58,.06), 0 6px 20px -8px rgba(22,33,58,.12);
  --sh2: 0 4px 8px rgba(22,33,58,.08), 0 16px 32px -12px rgba(60,40,140,.18);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
svg { display: block; stroke-linecap: round; stroke-linejoin: round; }
img { display: block; max-width: 100%; }

/* ============================================
   UTILITY
   ============================================ */
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 8px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 999;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s, transform .5s;
}
.reveal.vis { opacity: 1; transform: translateY(0); }

.sect-divider {
  border: none;
  border-top: 1px solid var(--bd);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: var(--rp);
  padding: 10px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(124,61,175,.4);
}
.btn-grad:hover { box-shadow: 0 8px 20px -4px rgba(124,61,175,.5); }

.btn-outline {
  background: #fff;
  border: 1.5px solid var(--bd);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ga); color: var(--ga); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--bd);
  color: var(--muted);
}

.btn-sm { padding: 8px 14px; font-size: 12.5px; }
.btn-white { background: #fff; color: var(--ga); }

.btn-ghost-w {
  background: transparent;
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
}
.btn-ghost-w:hover { background: rgba(255,255,255,.12); }

.btn-wa { background: var(--wa); color: #fff; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--bd);
  box-shadow: 0 2px 12px -4px rgba(22,33,58,.08);
}

.hrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand-icon {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.wordmark {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hdr-search {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: var(--rp);
  padding: 4px 4px 4px 14px;
  min-width: 0;
  transition: border-color .15s;
}
.hdr-search:focus-within { border-color: var(--ga); }
.hdr-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13.5px;
  padding: 8px 4px;
  color: var(--ink);
}
.hdr-search input::placeholder { color: var(--muted2); }
.hdr-search .sep {
  width: 1px;
  height: 18px;
  background: var(--bd);
  margin: 0 6px;
  flex-shrink: 0;
}
.hdr-search select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 4px;
  max-width: 110px;
}

.hactions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.hlink {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px;
}
.hlink:hover { color: var(--ga); }
.hlink.a { color: var(--ga); }

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid var(--bd);
  background: #fff;
  align-items: center;
  justify-content: center;
}

/* Navigation Strip */
.nav-strip {
  border-top: 1px solid var(--bd);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-strip::-webkit-scrollbar { display: none; }
.nav-strip a,
.nav-strip button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  cursor: pointer;
}
.nav-strip a:hover { color: var(--ink); }
.nav-strip a.active {
  color: var(--ga);
  border-bottom-color: var(--ga);
}
.nav-strip svg { width: 15px; height: 15px; }

.portal-dd {
  position: relative;
}
.portal-dd .dd {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: 12px;
  box-shadow: var(--sh2);
  padding: 8px;
  min-width: 160px;
  z-index: 70;
}
.portal-dd:hover .dd { display: block; }
.portal-dd .dd a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  border-radius: 8px;
}
.portal-dd .dd a:hover { background: var(--bg); }

/* ============================================
   DRAWER
   ============================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,30,.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
}
.overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--bd);
}
.drawer nav {
  padding: 10px 8px;
  overflow-y: auto;
  flex: 1;
}
.drawer nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
}
.drawer nav a:hover { background: var(--bg); }

.drawer-foot {
  padding: 16px;
  border-top: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(130deg, #0A1C30 0%, #1a2f50 40%, #0F3060 100%);
  padding: 52px 16px 40px;
  position: relative;
  overflow: hidden;
}
.hero>* { overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(124,61,175,0.08)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom/cover;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-a {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,61,175,.2), transparent 70%);
  top: -160px;
  right: -80px;
}
.hero-orb-b {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(15,93,184,.2), transparent 70%);
  bottom: -100px;
  left: 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(22px, 2vw, 38px);
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.hero h1 .acc {
  background: var(--logo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,.9);
}
.hstat b { font-size: 22px; font-weight: 800; }
.hstat span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* ============================================
   SEARCH FORM
   ============================================ */
.search-form {
  background: #fff;
  border-radius: var(--rl);
  padding: 6px;
  box-shadow: 0 20px 60px -12px rgba(10,18,30,.5);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 100%;
}

.search-tabs {
  display: flex;
  gap: 4px;
  padding: 0 4px;
  flex-wrap: wrap;
}
.stab {
  flex: 1;
  padding: 10px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all .15s;
}
.stab:hover { background: var(--bg); }
.stab.on {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(124,61,175,.5);
}

.search-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 6px;
  padding: 0 4px 4px;
}
.sfield {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sfield label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted2);
  padding-left: 2px;
}
.sfield select,
.sfield input {
  border: none;
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
}
.sfield select:focus,
.sfield input:focus {
  outline: none;
  background: #EEEAF8;
}

/* ============================================
   TYPE STRIP
   ============================================ */
.type-strip {
  background: #fff;
  border-bottom: 1px solid var(--bd);
  padding: 0 20px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.type-strip::-webkit-scrollbar { display: none; }
.type-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
}
.type-btn .icon { display: none; }
.type-btn:hover { color: var(--ink); }
.type-btn.on {
  color: var(--ga);
  border-bottom-color: var(--ga);
}

/* ============================================
   QUICK FILTERS
   ============================================ */
.qbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--bd);
  overflow-x: auto;
  scrollbar-width: none;
}
.qbar::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--rp);
  border: 1.5px solid var(--bd);
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--ga); color: var(--ga); }
.chip.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.sp { flex: 1; }

.sort-sel {
  border: 1.5px solid var(--bd);
  background: #fff;
  border-radius: var(--rp);
  padding: 7px 12px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

/* ============================================
   PAGE WRAP
   ============================================ */
.page-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 20px;
  align-items: start;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 120px;
}

.scard {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
}
.scard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid var(--bd);
}
.scard-head h3 { font-size: 13.5px; font-weight: 700; }
.scard-head button {
  font-size: 12px;
  font-weight: 600;
  color: var(--ga);
}

.fgrp {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bd);
}
.fgrp:last-child { border-bottom: none; }

.fgrp-lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.fopt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 8px;
}
.fopt:last-child { margin-bottom: 0; }
.fopt input[type="checkbox"],
.fopt input[type="radio"] {
  accent-color: var(--ga);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.fopt span.lab { font-size: 13px; flex: 1; }
.fopt .cnt {
  font-size: 11.5px;
  color: var(--muted2);
  font-weight: 600;
  background: var(--bg);
  padding: 2px 7px;
  border-radius: 20px;
}
.fopt:hover .lab { color: var(--ga); }

.price-inputs {
  display: flex;
  gap: 8px;
}
.price-inputs input {
  flex: 1;
  border: 1.5px solid var(--bd);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 12.5px;
  color: var(--ink);
  min-width: 0;
}
.price-inputs input:focus {
  outline: none;
  border-color: var(--ga);
}

.bed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.bed-btn {
  padding: 7px 4px;
  border-radius: 8px;
  border: 1.5px solid var(--bd);
  background: #fff;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
}
.bed-btn.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--ga), var(--gb));
  border-radius: var(--rl);
  padding: 20px;
  text-align: center;
  color: #fff;
}
.sidebar-cta svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
.sidebar-cta h4 { font-size: 14px; font-weight: 700; }
.sidebar-cta p {
  font-size: 12.5px;
  opacity: .85;
  margin-top: 5px;
}
.sidebar-cta .btn {
  background: #fff;
  color: var(--ga);
  margin-top: 12px;
  width: 100%;
}

/* ============================================
   RESULTS
   ============================================ */
.res-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.res-head h2 { font-size: 16px; font-weight: 700; }
.res-head .sub {
  font-size: 13px;
  color: var(--muted);
}

.view-tabs {
  display: flex;
  gap: 6px;
}
.vtab {
  padding: 7px 14px;
  border-radius: var(--rp);
  border: 1.5px solid var(--bd);
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.vtab.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ============================================
   PROPERTY CARD (Main Sample Design)
   ============================================ */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.pcard {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}
.pcard.featured {
  border-color: rgba(124,61,175,.3);
  box-shadow: 0 0 0 2.5px rgba(124,61,175,.08);
}

.pcard-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #E8E4F4, #DDE6F5);
}
.pcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pcard:hover .pcard-thumb img { transform: scale(1.04); }

.pcard-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8E4F4, #DDE6F5);
}

.pfeat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--grad);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--rp);
}

.pcard-badge {
  position: absolute;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--rp);
  backdrop-filter: blur(4px);
}
.pcard-badge--rent {
  top: 10px;
  left: 10px;
  background: rgba(26,138,75,.9);
  color: #fff;
}
.pcard-badge--sale {
  top: 10px;
  left: 10px;
  background: rgba(15,93,184,.9);
  color: #fff;
}
.pcard-badge--install {
  top: 10px;
  left: 10px;
  background: rgba(244,128,90,.9);
  color: #fff;
}

.pfav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.pfav svg {
  width: 15px;
  height: 15px;
  stroke: var(--muted);
  fill: none;
}
.pfav:hover svg { stroke: var(--danger); }
.pfav.saved svg {
  stroke: var(--danger);
  fill: var(--danger);
}

.pcard-body {
  padding: 14px 15px;
  flex: 1;
}

.pcard-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--ga);
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.pcard-price-sub {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted2);
  margin-left: 4px;
}

.pcard-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.pcard-loc {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.pcard-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pcard-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.pcard-specs svg { color: var(--muted2); }

.pcard-amens {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.pamen {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--rp);
  background: #EEF1FA;
  color: var(--indigo);
}

.pcard-actions {
  display: flex;
  gap: 8px;
  padding: 0 15px 14px;
}
.pcard-actions .btn { flex: 1; font-size: 12.5px; }

/* ============================================
   SECTION WRAPS
   ============================================ */
.sec-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 16px;
}

.sec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.sec-head h2 { font-size: 20px; font-weight: 800; }
.sec-head p {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}
.sec-head .sec-em {
  font-size: 22px;
  margin-right: 6px;
}

/* ============================================
   LOCATIONS
   ============================================ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.loc-card {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 18px 16px;
  text-align: center;
  transition: all .18s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.loc-card:hover {
  border-color: rgba(124,61,175,.3);
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}
.loc-card .lc-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--ga);
  display: block;
  margin-bottom: 2px;
}
.loc-card .lc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.loc-card .lc-label {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 3px;
}
.loc-card .lc-icon { display: none; }
.loc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .18s;
}
.loc-card:hover::after { opacity: 1; }

/* ============================================
   POPULAR AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.area-links a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.area-links a:hover { color: var(--ga); }
.area-links a::before {
  content: '→';
  color: var(--muted2);
}

.area-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.atab {
  padding: 9px 20px;
  border-radius: var(--rp);
  border: 1.5px solid var(--bd);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}
.atab.on {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(124,61,175,.4);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.bcard {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  transition: all .18s;
  display: block;
}
.bcard:hover {
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}

.bcard-cat-band { height: 5px; background: var(--grad); }
.bcard-body { padding: 16px; }

.bcard-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ga);
  margin-bottom: 7px;
}
.bcard-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 7px;
}
.bcard-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bd);
  font-size: 11.5px;
  color: var(--muted2);
}
.bcard-foot .rd {
  color: var(--ga);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bcard-foot svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--r);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--ga);
  cursor: pointer;
}
.faq-q svg {
  width: 17px;
  height: 17px;
  stroke: var(--muted);
  fill: none;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--grad);
  border-radius: var(--rl);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  max-width: 1268px;
  margin: 0 auto 32px;
}
.cta-band .ob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.cta-band .ob1 {
  width: 220px;
  height: 220px;
  top: -80px;
  right: 80px;
}
.cta-band .ob2 {
  width: 160px;
  height: 160px;
  bottom: -80px;
  right: -30px;
}
.cta-band .cp { position: relative; z-index: 1; }
.cta-band h3 { color: #fff; font-size: 22px; }
.cta-band p {
  color: rgba(255,255,255,.82);
  margin-top: 6px;
  font-size: 14px;
  max-width: 440px;
}
.cta-band .acts {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy); }
.ft-line { height: 3px; background: var(--grad); }

.ft-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.ft-brand p {
  color: #9AA5C4;
  font-size: 13px;
  margin-top: 10px;
  max-width: 260px;
}
.ft-brand address {
  font-style: normal;
  font-size: 12.5px;
  color: #9AA5C4;
  margin-top: 8px;
}

.ft-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.ft-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.ft-social a:hover { background: rgba(255,255,255,.1); }
.ft-social svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
}

.ft-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft-links a {
  font-size: 13px;
  color: #9AA5C4;
  transition: color .15s;
}
.ft-links a:hover { color: #fff; }

.ft-apps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ft-app {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 20px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #9AA5C4;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-blinks {
  display: flex;
  gap: 16px;
}
.ft-blinks a:hover { color: #fff; }

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 70;
}
.float-wa svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
}

.float-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(124,61,175,.4);
  z-index: 70;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.float-top.show {
  opacity: 1;
  visibility: visible;
}
.float-top svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--rp);
  font-size: 13px;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 1000px) {
  .page-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  /* psh-hero responsive */
  .psh-hero-card { min-height: 560px; }
  .psh-title { font-size: 2.2rem; }
  .psh-fields-row { flex-wrap: wrap; gap: 1rem; }
  .psh-field { min-width: 45%; }
  .psh-field-divider { display: none; }
  .psh-search-button {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 900px) {
  .hdr-search {
    order: 3;
    flex: 1 1 100%;
  }
  .ft-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .psh-hero-card { min-height: 620px; }
  .psh-content-inner { padding: 2.25rem 0; gap: 1.25rem; }
  .psh-title { font-size: 1.85rem; }
  .psh-subtitle { font-size: 0.95rem; }
  .psh-search-form { border-radius: 18px; padding: 0.5rem 1rem 1rem; }
  .psh-radio-label { padding: 0.5rem 1rem; font-size: 0.85rem; }

  .card-image-container { height: 130px; }
  .price-currency, .price-amount { font-size: 17px; }
  .property-title { font-size: 13px; }
  .title-mobile { display: inline; }
  .title-desktop { display: none; }
  .btn-action { font-size: 10px; padding: 8px 4px; }
  .category-badge span { font-size: 10px; padding: 3px 8px; }
}

@media (max-width: 700px) {
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-fields .sfield:last-child { grid-column: 1 / -1; }
  .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hamburger { display: flex; }
  .nav-strip a:nth-child(n+4) { display: none; }
}

@media (max-width: 550px) {
  .psh-hero-card { min-height: 660px; }
  .psh-title { font-size: 1.5rem; }
  .psh-field { min-width: 100%; }
  .psh-radio-group { justify-content: space-between; }
  .psh-radio-label {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
  }
  .psh-stats-row { gap: 1.1rem; }
  .psh-stat-number { font-size: 1.1rem; }
  .psh-stat-label { font-size: 0.68rem; }
}

@media (max-width: 520px) {
  .ft-main { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .search-fields { grid-template-columns: 1fr; }
  .search-fields .sfield:last-child { grid-column: 1; }
  .search-form {
    border-radius: 12px;
    overflow: hidden;
    max-width: calc(100vw - 32px);
  }
  .hero-inner { padding: 0; max-width: 100%; }
  .search-tabs { gap: 4px; }
  .stab { padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-inner { max-width: calc(100vw - 32px) !important; overflow: hidden; }
  .search-fields { grid-template-columns: 1fr !important; overflow: hidden; }
  .hdr-search select:last-of-type { display: none; }
  .card-actions { flex-direction: column; }
  .btn-action { padding: 10px 12px; }
}

@media (max-width: 440px) {
  .search-form, .hero-stats { display: none; }
  .hero { padding: 36px 16px 28px; }
  .hero h1 { font-size: 24px; }
  .hero-sub { font-size: 14px; }
  .hero-ctas-mob { display: flex !important; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; }
}

/* ============================================
   iOS FIXES
   ============================================ */
@supports (-webkit-touch-callout: none) {
  .psh-field-select,
  .psh-search-button {
    -webkit-appearance: none;
    appearance: none;
  }
}


:root{
 --blue:#0099F6;--indigo:#3A49BC;--purple:#9C41CC;
 --ga:#7C3DAF;--gb:#0F5DB8;
 --grad:linear-gradient(90deg,var(--ga),var(--gb));
 --logo-grad:linear-gradient(90deg,var(--blue),var(--indigo),var(--purple));
 --navy:#0A1C30;--ink:#16213A;--muted:#69708A;--muted2:#9AA5C4;
 --bg:#F4F6FB;--paper:#fff;--bd:#E7EAF2;
 --green:#1A8A4B;--orange:#F4805A;--gold:#FEC107;--wa:#25D366;
 --danger:#E0394F;
 --r:10px;--rl:16px;--rp:999px;
 --sh:0 1px 3px rgba(22,33,58,.06),0 6px 20px -8px rgba(22,33,58,.12);
 --sh2:0 4px 8px rgba(22,33,58,.08),0 16px 32px -12px rgba(60,40,140,.18);
}

/* ============================================
   SECTION WRAPS - This is what you're missing!
   ============================================ */
.sec-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 16px;
}

.sec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.sec-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.sec-head p {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.sec-head .sec-em {
  font-size: 22px;
  margin-right: 6px;
}

/* ============================================
   SECT DIVIDER
   ============================================ */
.sect-divider {
  border: none;
  border-top: 1px solid var(--bd);
  margin: 0;
}

/* ============================================
   LOCATION GRID
   ============================================ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.loc-card {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  padding: 18px 16px;
  text-align: center;
  transition: all .18s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.loc-card:hover {
  border-color: rgba(124,61,175,.3);
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}

.loc-card .lc-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--ga);
  display: block;
  margin-bottom: 2px;
}

.loc-card .lc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.loc-card .lc-label {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 3px;
}

.loc-card .lc-icon {
  display: none;
}

.loc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .18s;
}

.loc-card:hover::after {
  opacity: 1;
}

/* ============================================
   POPULAR AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width:700px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

.area-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.area-links a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  text-decoration: none;
}

.area-links a:hover {
  color: var(--ga);
}

.area-links a::before {
  content: '→';
  color: var(--muted2);
}

.area-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.atab {
  padding: 9px 20px;
  border-radius: var(--rp);
  border: 1.5px solid var(--bd);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.atab.on {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(124,61,175,.4);
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.bcard {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--rl);
  overflow: hidden;
  transition: all .18s;
  display: block;
  text-decoration: none;
}

.bcard:hover {
  box-shadow: var(--sh2);
  transform: translateY(-2px);
}

.bcard-cat-band {
  height: 5px;
  background: var(--grad);
}

.bcard-body {
  padding: 16px;
}

.bcard-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ga);
  margin-bottom: 7px;
}

.bcard-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 7px;
  color: var(--ink);
}

.bcard-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bd);
  font-size: 11.5px;
  color: var(--muted2);
}

.bcard-foot .rd {
  color: var(--ga);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bcard-foot svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--bd);
  border-radius: var(--r);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--ga);
  cursor: pointer;
  font-family: inherit;
}

.faq-q svg {
  width: 17px;
  height: 17px;
  stroke: var(--muted);
  fill: none;
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--grad);
  border-radius: var(--rl);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  max-width: 1268px;
  margin: 0 auto 32px;
}

.cta-band .ob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.cta-band .ob1 {
  width: 220px;
  height: 220px;
  top: -80px;
  right: 80px;
}

.cta-band .ob2 {
  width: 160px;
  height: 160px;
  bottom: -80px;
  right: -30px;
}

.cta-band .cp {
  position: relative;
  z-index: 1;
}

.cta-band h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}

.cta-band p {
  color: rgba(255,255,255,.82);
  margin-top: 6px;
  font-size: 14px;
  max-width: 440px;
}

.cta-band .acts {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s, transform .5s;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */
@media(max-width: 768px) {
  .cta-band {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
  }
  
  .cta-band p {
    max-width: 100%;
  }
  
  .cta-band .acts {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-band .acts .btn {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width: 520px) {
  .sec-wrap {
    padding: 20px 12px;
  }
  
  .loc-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}


/* popular areas */

/*
  /* ============================================
   POPULAR AREAS - Sample Design Styles
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width: 700px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

.area-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.area-links a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  text-decoration: none;
}

.area-links a:hover {
  color: var(--ga);
}

.area-links a::before {
  content: '→';
  color: var(--muted2);
}

.area-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.atab {
  padding: 9px 20px;
  border-radius: var(--rp, 999px);
  border: 1.5px solid var(--bd, #E7EAF2);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted, #69708A);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}

.atab:hover {
  border-color: var(--ga, #7C3DAF);
  color: var(--ga, #7C3DAF);
}

.atab.on {
  background: var(--grad, linear-gradient(90deg,#7C3DAF,#0F5DB8));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(124,61,175,.4);
}