:root{
    --font-1: "Montserrat", sans-serif;
    --dark-blue: #244E73;
    --blue:#2E4E8C;
    --light-blue:#4E98D9;
    --gold:#A6610D;
    --white:#F2F2F2;
}
post-card-sketch
*{font-family: var(--font-1);}
.fsb {display: flex;justify-content: space-between;align-items: center;}
.fcc {display: flex;align-items: center;justify-content: center;}
.fa {display: flex; align-items: center;}

/* =========================
   TOP HEADER + CAT NAV (UPDATED)
========================= */

.top-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

/* Row */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}

/* Neutralize your global a/button styles inside header */
.top-header a,
.top-header button{
  background: none;
  padding: 0;
  color: var(--dark-blue);
  border: none;
  text-decoration: none;
}
.top-header a {
  width: 100%;
}

/* Icon buttons */
.icon-btn{
  width: 42px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  border-radius: 12px;
  border: 2px solid transparent;
  user-select:none;
  transition: transform .12s ease, background .12s ease;
}
.icon-btn:hover{ background: rgba(78,152,217,.12); }
.icon-btn:active{ transform: scale(.98); }

.menu-btn{ font-size: 30px; line-height:1; }

.search-btn img{
  width: 28px;
  height: 28px;
  display:block;
}

/* Logo */
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand img{
  height: 44px;
  width:auto;
  display:block;
}

/* Right group */
.topbar-right{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Profile circle */
.profile-btn{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow:hidden;
  border: 2px solid var(--dark-blue);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}
.profile-btn img{ width:100%; height:100%; object-fit:cover; }

/* Search drawer */
.search-drawer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  background: #fff;
}
.top-header.is-search-open .search-drawer{
  max-height: 90px;
  border-top: 1px solid #f0f0f0;
}
.search-inner{ padding: 10px 0 14px; }

.search-box{
  display:flex;
  align-items:center;
  border: 2px solid var(--dark-blue);
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 25px rgba(36,78,115,.08);
}
.search-box input{
  width:100%;
  min-width:0;
  height:46px;
  padding: 0 12px;
  border:none;
  outline:none;
  font-size:16px;
}
.search-go{
  width:56px;
  height:46px;
  border-left:2px solid var(--dark-blue);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background: linear-gradient(180deg, rgba(78,152,217,.25), rgba(78,152,217,.05));
}
.search-go img{ width:20px; height:20px; display:block; }

/* =========================
   Category row + Language dropdown (RIGHT)
========================= */
.cat-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.cat-row{
  border-top: 1px solid #f0f0f0;
  background: #fff;
}

.cat-row-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
}

/* Category nav */
.cat-nav{
  display: flex;
  gap: 14px;
  white-space: nowrap;
  will-change: transform;
}
.cat-nav::-webkit-scrollbar{ height: 6px; }

.cat-item {
  text-decoration: none;
  flex: 0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 6px;
  border-radius: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(36,78,115,.15);
  background: linear-gradient(180deg, rgba(78,152,217,.18), rgba(255,255,255,1));
  box-shadow: 0 8px 16px rgba(36,78,115,.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.catbtn{
  text-decoration: none;
  flex: 0 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 6px;
  border-radius: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(36,78,115,.15);
  background: linear-gradient(180deg, rgba(78,152,217,.18), rgba(255,255,255,1));
  box-shadow: 0 8px 16px rgba(36,78,115,.06);
  transition: transform .12s ease, box-shadow .12s ease;
  height: 70px !important;
}
.cat-item:hover , .catbtn:hover{ transform: translateY(-1px); box-shadow: 0 12px 20px rgba(36,78,115,.10); }
.cat-item img, .catbtn img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.cat-item span , .catbtn span{
  font-size: 13px;
  font-weight: 800;
  color: var(--dark-blue);
  white-space: nowrap;
  text-align: center;
}

/* Language dropdown */
.lang-dd{
  position: relative;
  flex: 0 0 auto;
}

.lang-btn{
  height: 44px;
  min-width: 84px;
  padding: 0 14px;
  border-radius: 14px;
  border: 2px solid rgba(36,78,115,.25);
  background: linear-gradient(180deg, rgba(36,78,115,.10), rgba(78,152,217,.08));
  color: var(--dark-blue);
  font-weight: 900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(36,78,115,.08);
}

.lang-caret{ font-size: 14px; opacity:.8; }

.lang-menu{
  position:absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 55px;
  border-radius: 14px;
  border: 2px solid rgba(36,78,115,.18);
  background: #fff;
  box-shadow: 0 18px 28px rgba(0,0,0,.12);
  padding: 8px;
  display:none;
  z-index: 1000;
}

.lang-dd.is-open .lang-menu{ display:block; }

.lang-item{
  width: 100%;
  height: 42px;
  border-radius: 12px;
  border: none;
  cursor:pointer;
  background: #fff;
  color: var(--dark-blue);
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .12s ease, transform .12s ease;
}
.lang-item:hover{
  background: rgba(78,152,217,.18);
}
.lang-item:active{
  transform: scale(.98);
}

/* =========================
   Responsive
========================= */
@media (max-width: 480px){
  .brand img{ height: 38px; }
  .icon-btn, .profile-btn{ width: 40px !important; height: 40px; }
  .search-btn img{ width: 22px; height: 22px; }

  /* .cat-row-inner{ gap: 10px; } */
  .cat-item img { width: 34px; height: 34px; }
  .catbtn img{ width: 15px; height: 15px; }
  .cat-item span { font-size: 10px; white-space: wrap; }
  .catbtn span{ font-size: 8px; white-space: wrap; }
  .sub-categories-under {font-size: 7px !important;}
  .lang-btn{ height: 40px; min-width: 76px; }
  .cat-arr {font-size: 20px !important;}
}

@media (max-width: 360px){
  .brand img{ height: 34px; }
  .cat-item , .catbtn{ padding: 7px 9px; }
  .lang-btn{ padding: 0 10px; }
}



/* ====== Stories wrapper ====== */
.story-area { padding: 22px 0; }

/* Desktop layout */
.story-wrap{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* New Ad card */
.story-new-sticky{
  flex: 0 0 260px;
}

/* Slider window */
.story-slider{
  flex: 1;
  height: 180px;
  overflow: hidden; /* desktop */
}

/* Track (desktop animation uses transform) */
.story-track{
  display: flex;
  gap: 30px;
  height: 360px;
  transform: translateX(0);
  transition: transform 450ms ease;
}

.story-card{
  width: 260px;
  height: 180px !important;
  border: 1px solid #244E7340;
  background: #fff;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.story-img{ width:100%; height:100%; object-fit: cover; }

.story-profile{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--dark-blue);
  overflow: hidden;
  background: #fff;
  z-index: 2;
}
.story-profile img{ width:100%; height:100%; object-fit: cover; }

/* ====== MOBILE: Facebook Stories Style ====== */
@media (max-width: 600px){

  .story-wrap{
    align-items: flex-start;
    gap: 12px;
  }

  /* New ad always visible */
  .story-new-sticky{
    flex: 0 0 92px;
    border-radius: 14px;
  }
  .story-plus{ font-size: 44px; }
  .story-new-text{ font-size: 11px; text-align: center; padding: 0 6px; }

  /* Slider becomes horizontal scroll (swipe) */
  .story-slider{
    /* height: 160px !important; */
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .story-slider::-webkit-scrollbar{ height: 0; }

  /* Track becomes natural scroll row */
  .story-track{
    height: 160px;
    gap: 10px;
    transform: none !important;
    transition: none !important;
    padding-right: 14px;
  }

  /* Story cards */
  .story-card{
    width: 72vw !important;     /* story width */
    max-width: 110px;
    border-radius: 14px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .story-profile{
    width: 38px;
    height: 38px;
    top: 8px;
    right: 8px;
  }
}

/* =========================
   LOCATION UI (Accordion) - CSS
========================= */

/* Wrapper (you already have these, keep if needed) */
.filter-sec{ padding: 18px 0; }
.filter-row{ margin-bottom: 12px; }
.filter-bottum{
  border: 2px solid rgba(36, 78, 115, 0.25);
  border-radius: 14px;
  background: linear-gradient(rgba(78, 152, 217, 0.18), rgb(255, 255, 255));
  padding: 4px 14px;
  color: rgb(36, 78, 115);
  cursor: pointer;
  margin-left: 5px;
}
.filter-icon {
  width: 20px;
}

/* Location button */
.loc-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  border:2px solid rgba(36,78,115,.25);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(78,152,217,.18), #fff);
  padding: 14px;
  color: #244E73;
  font-weight: 900;
  cursor: pointer;
}
.loc-title{ font-weight: 900; }
.loc-value{
  flex: 1;
  text-align: center;
  font-weight: 400;
  opacity: .9;
}
.loc-caret{ font-size: 14px; opacity:.8; }

/* Panel */
.loc-panel{
  margin-top: 10px;
  border:2px solid rgba(36,78,115,.18);
  border-radius: 14px;
  background:#fff;
  overflow: hidden;
  display:none;
}
.loc-panel.open{ display:block; }

/* District list */
.dist-list{
  list-style:none;
  padding: 0;
  margin: 0;
  max-height: 320px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}

/* District row */
.dist-item{
  border-bottom: 1px solid #edf2f7;
}
.dist-item:last-child{ border-bottom: none; }

/* District button */
.dist-btn{
  width:100%;
  text-align:left;
  background:#f7fbff;
  padding: 12px 12px;
  font-weight: 600;
  color: #244E73;
  border: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size: 16px;
}
.dist-btn:active{ transform: scale(.99); }

/* Caret rotate when open */
.dist-btn .caret{
  transition: transform .18s ease;
  opacity: .8;
}
.dist-item.open .dist-btn .caret{
  transform: rotate(180deg);
}

/* Cities list (hidden until open) */
.city-ul{
  list-style:none;
  padding: 10px 12px 14px;
  margin: 0;
  display:none;
  background:#fff;
}
.dist-item.open .city-ul{ display:block; }

/* City item */
.city-li{
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 400;
  border: 1px solid rgba(36,78,115,.12);
  color: #244E73;
  background:#fff;
  cursor:pointer;
  margin-bottom: 8px;
}
.city-li:last-child{ margin-bottom: 0; }
.city-li:hover{ background: rgba(78,152,217,.12); }
.city-li:active{ transform: scale(.99); }

/* Selected city */
.city-li.active{
  background: rgba(78,152,217,.22);
  border-color: rgba(36,78,115,.25);
}

/* Search input inside location panel */
.loc-search{
  padding: 10px 12px;
  border-bottom: 1px solid #edf2f7;
  background: #fff;
}

.loc-search input{
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(36,78,115,.18);
  outline: none;
  font-size: 14px;
  color: var(--dark-blue);
  background: #f7fbff;
  font-weight: 500;
}

.loc-search input:focus{
  border-color: rgba(36,78,115,.35);
  box-shadow: 0 8px 20px rgba(36,78,115,.08);
}


/* Mobile tweaks */
@media (max-width: 600px){
  .loc-value{ font-size: 14px; }
  .dist-btn{ padding: 12px 10px; }
  .city-ul{ padding: 10px 10px 12px; }
}



/* KM */
.km-row{
  border:2px solid rgba(36,78,115,.12);
  border-radius: 14px;
  padding: 12px 12px 0 12px;
  background: #fbfdff;
}
.km-labels{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-weight: 400;
  font-size: 10px;
}
.km-now{
  background: rgba(78,152,217,.18);
  border: 1px solid rgba(36,78,115,.18);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Slider styled like pole + dot */
/* =========================
   KM POLE (Dual range + fill)
========================= */

/* pole area */
.km-pole.dual{
  position: relative;
  height: 40px;
}

/* base line (pole) */
.km-track{
  position:absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(36,78,115,.18);
}

/* selected area */
.km-fill{
  position:absolute;
  top: 50%;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(36,78,115,.65); /* default selected */
  transition: background .25s ease; /* smooth when color changes after 2s */
}

/* after 2 seconds only change color */
#kmWrap.is-after2s .km-fill{
  background: var(--dark-blue); /* becomes darker */
}

/* two range inputs over same pole */
.km-range{
  position:absolute;
  left:0; right:0;
  top:0;
  width:100%;
  height:40px;
  appearance:none;
  background: transparent;
  pointer-events:none; /* IMPORTANT: so both can work */
}

/* allow thumb to be draggable */
.km-range::-webkit-slider-thumb{
  appearance:none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--dark-blue);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
  cursor:pointer;
  pointer-events:auto;
}
.km-range::-moz-range-thumb{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--dark-blue);
  cursor:pointer;
  pointer-events:auto;
}

/* bubbles above thumbs */
.km-bubble{
  position:absolute;
  top: -20px;
  transform: translateX(-50%);
  font-weight: 800;
  color: var(--dark-blue);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(36,78,115,.18);
  white-space: nowrap;
  pointer-events:none;
}

/* Price fields */
.price-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.price-field{
  border:1px solid rgba(36,78,115,.18);
  border-radius: 14px;
  background: #fff;
  padding: 14px 12px;
  text-align:left;
  color: var(--dark-blue);
  font-size: 10px;
}
.price-label{ display:block; font-weight: 400; opacity:.85; }
.price-val{ display:block; margin-top: 6px; font-weight: 400; font-size: 10px; }

/* Responsive */
@media (max-width: 600px){
  .loc-value{ font-size: 14px; }
  .loc-cols{ grid-template-columns: 1fr; }
  .loc-col{ border-right:none; border-bottom: 1px solid #edf2f7; }
  .loc-col:last-child{ border-bottom:none; }
  .price-row{ grid-template-columns: 1fr; }
}

/* ===== Price popup v2 ===== */
.pmodal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}
.pmodal.open{ display:block; }

.pmodal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}

.pmodal-card{
  position:absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  width: min(520px, 92vw);
  background:#fff;
  border-radius: 18px;
  border:2px solid rgba(36,78,115,.18);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  padding: 14px;
}

.pmodal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 6px 4px 10px;
}
.pmodal-title{ color: var(--dark-blue); }
.pmodal-x{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(36,78,115,.18);
  background:#fff;
  color: var(--dark-blue);
  font-size: 18px;
}

/* Currency segmented */
.seg-row{
  display:flex;
  gap: 10px;
  margin-bottom: 12px;
}
.seg-btn{
  flex:1;
  border-radius: 14px;
  border:2px solid rgba(36,78,115,.18);
  background:#fff;
  color: var(--dark-blue);
}
.seg-btn.is-active{
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color:#fff;
}

/* Input */
.pinput-wrap{
  display:flex;
  align-items:center;
  gap: 10px;
  border:2px solid var(--dark-blue);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
}
.pcur, .psuf{
  color: var(--dark-blue);
}
.pinput{
  width:100%;
  border:none;
  outline:none;
  font-size: 18px;
  color:#111;
}

/* Units */
.unit-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.unit-btn {
  opacity: 0.45;      /* light color when NOT selected */
  background: #fff;
  border-color: rgba(36,78,115,.25);
}

.unit-btn.is-active {
  opacity: 1;         /* dark color when selected */
  background: var(--dark-blue);
  color: #fff;
}


/* Footer */
.pmodal-actions{
  display:flex;
  gap: 10px;
}
.btn-lite, .btn-main{
  flex:1;
  border-radius: 14px;
  border:2px solid var(--dark-blue);
}
.btn-lite{ background:#fff; color: var(--dark-blue); }
.btn-main{ background: var(--dark-blue); color:#fff; }




/* ===== Post Card V2 ===== */
/* =========================
   POST CARD (SKETCH STYLE)
========================= */

.post-card-sketch{
  border: 1px solid var(--dark-blue);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  max-width: 920px;
  margin-bottom : 20px;
}

/* MEDIA AREA */
.pc-media{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #eef3fb;
}
.pc-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  position: relative;
}
.pc-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* USER TOP LEFT */
.pc-user{
  position:absolute;
  top: 12px;
  left: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  z-index: 5;
}
.pc-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--dark-blue);
  overflow:hidden;
  background:#fff;
}
.pc-avatar img{ width:100%; height:100%; object-fit: cover; }

.pc-user-name{
  font-weight: 800;
  color: var(--dark-blue);
}
.pc-user-sub{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 10px;
  color:#6d7a88;
}
.pc-dot{
  width:10px;
  height:10px;
  border-radius: 50%;
  background:#2ecc71;
  display:inline-block;
}
.pc-sep{ opacity:.6; }

/* BOTTOM LEFT: ICONS + TITLE */
.pc-bottom-left{
  position:absolute;
  left: 12px;
  bottom: 12px;
  z-index: 5;
}
.pc-media-icons{
  display:flex;
  align-items:center;
  gap: 8px;
  margin-bottom: 6px;
}
.pc-ic-badge{
  width: 34px;
  height: 28px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(36,78,115,.18);
  cursor: pointer;
}
.pc-ic{
  width: 18px;
  height: 18px;
  fill: var(--dark-blue);
}
.pc-360{
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(36,78,115,.45);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
}

.pc-title {
  color: var(--dark-blue);
}

.location-image {
  width: 40px;
  margin-right: 10px;
}

/* PRICE BOTTOM RIGHT (sketch style) */
.pc-price{
  position:absolute;
  right: 12px;
  bottom: 20px;
  display:flex;
  gap: 10px;
  align-items: baseline;
  z-index: 5;
  color:#fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.pc-price > *{
  font-size: 18px;
  text-shadow: 2px 1px 0 var(--dark-blue);
}

/* BODY */
.purpose {
  margin: 10px 0;
}
.purpose-idea {
  background: var(--dark-blue);
  padding: 2px 10px;
  border-radius: 5px;
  color: #fefefe;}
.pc-body{
  padding: 5px;
  border-top: 1px solid rgba(36,78,115,.12);
}

/* STATS ROW */
.pc-stats{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-size: 10px;
  font-weight: bold;
}
.pc-stat{
  display:flex;
  align-items:center;
  gap: 4px;
}
.pc-stat-lbl{ opacity:.85; }

.pc-mini-ic{
  width: 16px;
  height: 16px;
  fill: var(--dark-blue);
}

.main-details-btn {background: var(--dark-blue);
  padding: 5px 28px;
  border-radius: 5px;
  color: #fefefe;}

/* LOAN BOX */
.pc-loan-row{
  display:flex;
  justify-content:flex-end;
  margin-bottom: 10px;
}
.pc-loan-box{
  border: 1px solid rgba(36,78,115,.18);
  border-radius: 14px;
  padding: 5px;
  background: #fff;
}
.pc-loan-top{
  display:flex;
  align-items:center;
  gap: 8px;
  margin-bottom: 8px;
}
.pc-loan-lbl{
  color: var(--dark-blue);
  margin-right: auto;
}
.pc-loan-chip{
  padding: 0 5px;
  border-radius: 5px;
  border: 1px solid rgba(36,78,115,.18);
  background:#fff;
  color: var(--dark-blue);
  cursor:pointer;
}
.pc-loan-chip.is-active{
  background: var(--dark-blue);
  color:#fff;
  border-color: var(--dark-blue);
}
.pc-loan-mid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 8px;
}
.pc-loan-month{
  color:#6d7a88;
  font-size: 10px;
}
.pc-loan-amt{
  color: var(--dark-blue);
  font-size: 10px;
}
.pc-apply{
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--dark-blue);
  background: linear-gradient(180deg, rgba(78,152,217,.18), #fff);
  color: var(--dark-blue);
  cursor: pointer;
  font-size: 10px;
}

/* ACTION BUTTONS (List / Call / WhatsApp) */
.pc-actions{
  margin: 10px 0;
}
.pc-btn{
  border-radius: 5px;
  border: 1px solid var(--dark-blue);
  background: linear-gradient(180deg, rgba(78,152,217,.18), #fff);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 6px;
  font-size: 10px;
  width: 25%;
}
.pc-btn-whatsapp {
  background: linear-gradient(180deg, rgba(78,152,217,.18), #0f406a);
  color: #fefefe;
  gap: 0;
}
.pc-btn-call {
  background: linear-gradient(180deg, rgba(78,152,217,.18), #a1b6df);
}
.pc-btn-ic{
  width: 18px;
  height: 18px;
  fill: var(--dark-blue);
}

/* SOCIAL ROW */
.pc-social{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  border-top: 1px solid rgba(36,78,115,.12);
  padding-top: 10px;
}
.pc-social-btn{
  flex: 1;
  height: 42px;
  background: #fff;
  color: var(--dark-blue);
  cursor: pointer;
  border: none;
  font-size: 10px;
}
.pc-social-btn > img {
  margin-right: 4px;
}
.cp-bottom {margin-bottom: 100px;}

/* Mobile */
@media(max-width:600px){
  .pc-title { font-size: 16px; }
  .pc-actions{ grid-template-columns: 1fr; }
  /* span {font-size: 10px;} */
  .dist-btn > span {font-size: 16px;}
}
@media (max-width: 400px) {
  .pc-title {
    font-size: 12px;
  }
}



/* =========================
   Bottom Nav (Mobile + Large)
   uses your variables
========================= */

.bb-footer{
  padding-top: 12px;
  background: transparent;
}

/* Outer pill */
.bb-nav{
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(36,78,115,.98), rgba(22,45,72,.98));
  box-shadow:
    0 22px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.10);
  overflow: visible;
  display: flex;
  justify-content: space-between;
  border-radius: 26px 26px 0 0;
}
.ftd1 {width: 40%;
margin: 20px;}

/* Each item (glass button) */
.bb-item{
  text-decoration: none;
  color: #fff;
  flex-direction: column;
  width: 31%;
  border-radius: 18px;
  padding: 10px 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 12px 20px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}

.bb-item:hover{ transform: translateY(-1px); background: rgba(255,255,255,.14); }
.bb-item:active{ transform: translateY(0); }

.bb-ic svg{
  width: 26px;
  height: 26px;
  fill: #fff;
  opacity: .95;
}
@media screen and (max-width:850px) {
  .ftd1{margin: 10px;}
}

.bb-txt{
  font-size: 13px;
  opacity: .95;
}

/* Active state */
.bb-item.is-active{
  background: rgba(78,152,217,.22);
  border-color: rgba(78,152,217,.55);
}

/* Center big + button */
.bb-center{
  border-radius: 0 0 80px 80px;
  border: 1px solid rgba(255,255,255,.18);
  background:
  radial-gradient(circle at 50% 35%, rgba(78,152,217,.95), rgba(36,78,115,.95));
  box-shadow:
    0 26px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
  margin-bottom: 10px;
  width: 10%;
}

.bb-plus{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;

  margin: 0 auto;
  color: #fff;
  font-weight: 1000;
  font-size: 42px;

  background: rgba(0,0,0,.12);
  border: 2px solid rgba(255,255,255,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

/* Make center glow ring */
.bb-center::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events:none;
}
.footer-icon {
  width: 20px;
}

/* =========================
   Mobile tuning
========================= */
@media (max-width: 850px){

  .bb-item{
    min-height: 68px;
    border-radius: 16px;
  }

  .bb-ic svg{ width: 15px; height: 15px; }
  .bb-txt{ font-size: 10px;text-align: center; }

  .bb-plus{
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
@media screen and (max-width:500px) {
  .bb-item {padding: 0;}
  .bb-center {width: max-content;}
}
@media screen and (max-width:400px) {
  .pc-body {
    font-size: 10px;
  }
}

/* Very small phones */
@media (max-width: 360px){
  .bb-txt{ font-size: 5px;text-align: center; }
  .bb-item{ min-height: 50px; }
}

.bb-footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  transition: transform .25s ease, opacity .25s ease;
}

.bb-footer.is-hidden{
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}






/* Top buttons row */
.catbar{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Category button */
.catbtn{
  width: 100%;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(36,78,115,.18);
  background: linear-gradient(180deg, rgba(78,152,217,.16), #fff);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  cursor:pointer;
  color: var(--dark-blue);
  font-weight: 400; /* normal */
}


.cat-ic{ font-size: 22px; }
.cat-txt{
  flex:1;
  margin-left: 10px;
  text-align:left;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cat-caret{ opacity:.7; }

/* Panel */
.catpanel{
  display:none;
  margin-top: 10px;
  border: 1px solid rgba(36,78,115,.18);
  border-radius: 14px;
  background:#fff;
  overflow:hidden;
}
.catpanel.open{ display:block; }

/* Main list buttons inside panel */
.mainlist{
  padding: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.mainbtn{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(36,78,115,.18);
  background:#fff;
  color: var(--dark-blue);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 12px;
  cursor:pointer;
  font-weight: 400; /* normal */
}

.mainbtn .caret{ opacity:.7; transition: transform .18s ease; }
.mainitem.open .mainbtn .caret{ transform: rotate(180deg); }

/* Sub list */
.sublist{
  display:none;
  padding: 8px 10px 12px;
  border-left: 3px solid rgba(78,152,217,.35);
  margin-left: 10px;
  margin-top: -6px;
}

.mainitem.open .sublist{ display:block; }

.sublist a{
  display:block;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(36,78,115,.12);
  background: #fbfdff;
  color: var(--dark-blue);
  text-decoration:none;
  font-weight: 400; /* normal */
  margin-bottom: 8px;
}
.sublist a:last-child{ margin-bottom: 0; }
.sublist a:hover{ background: rgba(78,152,217,.10); }

/* Mobile 320px */
@media (max-width: 600px){
  .catbar{
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cat-ic{ font-size: 18px; }
  .cat-txt{ font-size: 12px; margin-left: 8px; }
  .mainbtn{ height: 42px; }
  .bb-txt{font-size: 6px;}
  
}




:root{
  --font-1: "Montserrat", sans-serif;
  --dark-blue:#244E73;
  --light-blue:#4E98D9;
}

*{ font-family: var(--font-1); box-sizing:border-box; }

/* 15 categories -> wrap into 4 lines */
.catgrid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* each item same size */
.catbtn{
  flex: 1 1 calc(25% - 10px);   /* 4 per row */
  min-width: 0;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(36,78,115,.18);
  background: linear-gradient(180deg, rgba(78,152,217,.16), #fff);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  cursor:pointer;
  color: var(--dark-blue);
  font-weight: 400; /* normal */
}

.catimg{
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cattxt{
  flex:1;
  text-align:center;
  font-size: 14px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.caret{ opacity:.7;font-size: 18px; }

/* Panel will be inserted in grid as a full row block */
.catpanel{
  display:none;
  width: 100%;
  margin-top: 0; /* we handle spacing via gap */
  border: 1px solid rgba(36,78,115,.18);
  border-radius: 14px;
  background:#fff;
  overflow:hidden;
}
.catpanel.open{ display:block; }

/* main list buttons */
.mainlist{ padding: 10px; display:flex; flex-direction:column; gap: 10px; }

.mainbtn{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(36,78,115,.18);
  background:#fff;
  color: var(--dark-blue);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 12px;
  cursor:pointer;
  font-weight: 400;
}
.mainbtn .mcaret{ opacity:.7; transition: transform .18s ease; }
.mainitem.open .mainbtn .mcaret{ transform: rotate(180deg); }

/* sub links */
.sublist{
  display:none;
  padding: 8px 10px 12px;
  border-left: 3px solid rgba(78,152,217,.35);
  margin-left: 10px;
  margin-top: -6px;
}
.mainitem.open .sublist{ display:block; }

.sublist a{
  display:block;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(36,78,115,.12);
  background:#fbfdff;
  color: var(--dark-blue);
  text-decoration:none;
  font-weight: 400;
  margin-bottom: 8px;
}
.sublist a:last-child{ margin-bottom: 0; }
.sublist a:hover{ background: rgba(78,152,217,.10); }

/* Responsive 320px */
@media (max-width: 600px){
  .cattxt{ font-size: 12px; }
}

/* Under 400px: show only 5 items + More button */
@media (max-width: 400px){

  /* 3 columns so 5 items can fit nicely + More */
  .catbtn{
    padding: 8px 10px;
    height: auto !important;
    width: 13%;
    flex: auto;
  }

  /* Hide items when collapsed */
  .catbtn.is-hidden{
    display:none !important;
  }

  /* More button style (same size) */
  .catmore{
    justify-content:center;
    gap: 8px;
  }
  /* .catgrid {flex-wrap: nowrap;} */
  .catbtn span {
    font-size: 7px;
    
  }
  .caret {font-size: 20px !important;}
}




/* ===== Category bar like image ===== */
.catbar{
  width:100%;
  border: 1px solid rgba(36,78,115,.18);
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 6 tiles per row on small screens: More + 5 categories */
.cat-tile{
  flex: 1 1 calc((100% - 50px) / 6); /* 6 items with 10px gaps */
  min-width: 0;
  height: 86px;
  border-radius: 5px;
  border: 1px solid rgba(36,78,115,.18);
  background: linear-gradient(180deg, rgba(78,152,217,.16), #fff);
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 6px;
  cursor:pointer;
  color: var(--dark-blue);
  font-weight: 400; /* normal */
}

.cat-ic{
  width: 38px;
  height: 38px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cat-ic img{ width: 38px; height: 38px; object-fit: contain; display:block; }
.cat-ic svg{ width: 30px; height: 30px; fill: var(--dark-blue); opacity:.9; }
.cat-name {
   font-weight: 400;
}
.cat-ic svg{ width: 30px; height: 30px; fill: var(--dark-blue); opacity:.9; }
.vehicle-cat-name {
   font-weight: 800;
}

.cat-name , .vehicle-cat-name{
  font-size: 12px;
  line-height: 1.1;
  text-align:center;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 100%;
 
}

.cat-pill{
  padding: 4px 0;
  border-radius: 999px;
  border: 1px solid rgba(36,78,115,.16);
  background: rgba(78,152,217,.12);
  color: var(--dark-blue);
  font-weight: 400;
  width: 100%;
}

/* Hide extra cats until expanded */
.cat-tile.is-extra{ display:none; }
.catbar.is-expanded .cat-tile.is-extra{ display:flex; }

/* More tile */
.cat-more .cat-pill{ background: rgba(36,78,115,.10); }

/* ===== Responsive (320px) ===== */
@media (max-width: 360px){
  .catbar{ gap: 8px; padding: 8px; }
  .cat-tile{
    flex: 1 1 calc((100% - 40px) / 6);
    height: 82px;
    border-radius: 14px;
  }
  .cat-ic{ width: 34px; height: 34px; }
  .cat-ic img{ width: 34px; height: 34px; }
  .cat-name , .vehicle-cat-name{ font-size: 11px; }
  .cat-pill{ font-size: 10px; padding: 3px 8px; }
}

/* ===== Popup near clicked ===== */
.catpop{
  position: fixed;
  z-index: 5000;
  display:none;
  width: min(340px, 92vw);
  background: #fff;
  border: 1px solid rgba(36,78,115,.20);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0,0,0,.18);
  overflow: hidden;
}
.catpop.open{ display:block; }

.catpop-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(36,78,115,.12);
}
.catpop-title{ color: var(--dark-blue); font-weight: 400; }
.catpop-x{
  border: 1px solid rgba(36,78,115,.18);
  background:#fff;
  border-radius: 12px;
  padding: 6px 10px;
  cursor:pointer;
  color: var(--dark-blue);
  font-weight: 400;
}

/* Tabs: For Sale / For Rent / For Lease */
.catpop-tabs{
  display:flex;
  gap: 8px;
  padding: 10px 3px;
  border-bottom: 1px solid rgba(36,78,115,.12);
}
.cattab{
  flex:1;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(36,78,115,.18);
  background:#fff;
  cursor:pointer;
  color: var(--dark-blue);
  font-weight: 800;
  font-size: 9px;
}
.cattab.is-active{
  background: rgba(78,152,217,.14);
}

/* List */
.catpop-list{
  max-height: 260px;
  overflow:auto;
  padding: 10px 12px 14px;
}
.catpop-item{
  width: 100%;
  text-align:left;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(36,78,115,.12);
  background:#fbfdff;
  color: var(--dark-blue);
  cursor:pointer;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 13px;
}
.catpop-item:last-child{ margin-bottom: 0; }
.catpop-item:hover{ background: rgba(78,152,217,.10); }

@media screen and (max-width:400px) {
  .cat-tile {
   height: auto; 

  }
  .cat-ic img {
    width: 75%;
  }
  .cat-name , .vehicle-cat-name , .cat-pill {
    font-size: 6px;
  }
  .catbar {
    gap: 5px;
  }
}

.js-pill .pill-inner{
  display: inline-block;
  transform: translateY(0);
  transition: transform .35s ease;
  will-change: transform;
}

.js-pill.is-anim .pill-inner{
  transform: translateY(-200%);
}

.js-pill{position:relative;display:inline-block;overflow:hidden;vertical-align:middle}
.js-pill .pill-inner{display:inline-block;transform:translateY(0);transition:transform .35s ease;will-change:transform}
.js-pill.is-anim .pill-inner{transform:translateY(-200%)}

.cat-ic-vehicle > img { 
  width: 100%;
}

/* Tick right, text left */
.catpop-check{
  display:flex;
  align-items:center;
  justify-content:space-between;  /* push ends */
  gap:12px;
  padding:10px 12px;
  cursor:pointer;
  width:100%;
}

.catpop-check-text{
  flex:1;                 /* stay left and take space */
  text-align:left;
}

.catpop-check input{
  width:18px;
  height:18px;
  flex:0 0 auto;          /* keep right */
  cursor:pointer;
  margin-left:12px;
}

.catpop-check:hover{
  background:rgba(0,0,0,0.04);
  border-radius:10px;
}



/* card video */

.pc-img{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.pc-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pc-video,
.pc-360-view{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  object-fit:cover;
  background:#000;
}

/* =========================
   WANTED BUTTON + SLIDER
========================= */
.wanted-row {
  margin-top: 12px;
}

.wanted-bar{
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex: 0 0 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(36,78,115,0.25);
    border-right-width: 2px;
    border-right-style: solid;
    border-right-color: rgba(36, 78, 115, 0.25);
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, rgba(78,152,217,0.18), #fff);
  color: #244E73;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(36,78,115,0.08);
  border-right: none;
}

/* Left fixed button */
.wanted-btn{
  flex: 0 0 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #244E73;
  font-weight: 900;
  padding: 14px 16px;
  cursor: pointer;
  background: none;
  border: none;
}

.wanted-btn:active{
  transform: scale(.99);
}

.wanted-btn-text{
  line-height: 1;
  font-size: 28px;
  font-weight: 900;
}

/* Right slider shell */
.wanted-slider{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border: 2px solid rgba(36,78,115,0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(78,152,217,0.12), #fff);
  position: relative;
  box-shadow: 0 6px 18px rgba(36,78,115,0.06);
}

/* Auto sliding track */
.wanted-track{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  will-change: transform;
}

/* One item */
.wanted-card{
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #244E73;
}

.wanted-thumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.wanted-thumb img{
  width: 100%;
}

.wanted-name{
  font-size: 22px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile */
@media (max-width: 600px){
  .wanted-bar{
    gap: 8px;
  }

  .wanted-btn{
    flex-basis: 92px;
    padding: 12px 10px;
  }

  .wanted-btn-text{
    font-size: 14px;
  }

  .wanted-track{
    padding: 8px 10px;
  }

  .wanted-thumb{
    flex-basis: 42px;
  }

  .wanted-name{
    font-size: 14px;
  }
}


/* =========================
   SINGLE PROPERTY - SECTION 01
========================= */
:root{
  --spd-dark-blue:#244E73;
  --spd-blue:#2E4E8C;
  --spd-light-blue:#4E98D9;
  --spd-gold:#A6610D;
  --spd-white:#F2F2F2;
  --spd-bg:#f7fbff;
  --spd-border:rgba(36,78,115,.14);
  --spd-shadow:0 12px 30px rgba(36,78,115,.12);
}

.spd-hero{
  padding: 16px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.spd-shell{
  max-width: 1100px;
  margin: 0 auto;
}

.spd-media-card{
  position: relative;
  border: 1px solid var(--spd-border);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--spd-shadow);
}

/* top icons */

/* .spd-topbar-left,
.spd-topbar-right{
  display: flex;
  align-items: center;
} */

.spd-icon-btn{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--spd-dark-blue);
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  cursor: pointer;
}

.spd-icon-btn img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* media side tools */
.spd-media-tools{
  position: absolute;
  left: 16px;
  bottom: 110px;
  z-index: 6;
  display: grid;
  gap: 10px;
}

.spd-tool{
  width: 50px;
  height: 50px;
  border: 1px solid var(--spd-border);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: var(--spd-dark-blue);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.spd-tool img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.spd-tool.is-active{
  background: var(--spd-dark-blue);
  color: #fff;
  border-color: var(--spd-dark-blue);
}

.spd-tool.is-active img{
  filter: brightness(0) invert(1);
}

/* media stage */
.spd-media-stage{
  position: relative;
  background: #eaf1f7;
  height: max-content;
}

.spd-media-panel{
  display: none;
  width: 100%;
  height: 640px;
}

.spd-media-panel.is-show{
  display: block;
  position: relative;
  height: max-content;
}

.spd-main-image,
.spd-video,
.spd-iframe{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.spd-360-viewer{
  width: 100%;
  height: 640px;
  min-height: 320px;
  background: #111;
}

.spd-360-viewer .pnlm-container{
  width: 100%;
  height: 100%;
}

.pc-ic-badge.is-active,
.pc-360.is-active{
  background: var(--dark-blue, #244e73);
  color: #fff;
  border-color: var(--dark-blue, #244e73);
}

.pc-ic-badge.is-active .pc-ic{
  fill: #fff;
}

.spd-empty-note{
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: var(--spd-dark-blue);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

/* bottom agent strip */
.spd-agent-strip{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-top: 1px solid var(--spd-border);
  background: #fff;
}

.spd-agent-left{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.spd-agent-avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(36,78,115,.12);
  flex: 0 0 auto;
  background: #eef5fb;
}

.spd-agent-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spd-agent-meta{
  min-width: 0;
}

.spd-agent-name{
  margin: 0 0 8px;
  color: var(--spd-dark-blue);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
}

.spd-agent-badges{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.spd-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--spd-border);
  background: linear-gradient(180deg, rgba(78,152,217,.12), #fff);
  color: var(--spd-dark-blue);
  font-size: 14px;
  font-weight: 800;
}

.spd-agent-loc{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--spd-dark-blue);
  font-weight: 800;
  text-align: right;
}

.spd-agent-loc img{
  width: 18px;
  height: 18px;
}

.spd-views{
  color: var(--spd-dark-blue);
  font-size: 18px;
  font-weight: 900;
}

.spd-status{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--spd-border);
  border-radius: 14px;
  font-weight: 900;

  font-size: 18px;
    background: #37D316;
    color: #fefefe;
}
.spd-badge.rating {
  background: linear-gradient(180deg, #d48700ff, #fff);
}

/* social row */
.spd-social-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6px 0;
}

.spd-social-left{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spd-social-right{
  display: flex;
  align-items: center;
}

.spd-social-btn{
  min-height: 46px;
  padding: 10px 18px;
  color: var(--spd-dark-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
}
.likeBtn {
  width: 20px;
}
.likeBtn > img {
  width: 100%;
}
.spd-list-btn{
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(36,78,115,.05);
  background: var(--spd-dark-blue);
  color: #fff;
  border-color: var(--spd-dark-blue);
  width: auto;
}

/* responsive */
@media (max-width: 860px){
  .spd-media-panel{
    min-height: 460px;
    height: 460px;
  }

  .spd-360-viewer{
    height: 460px;
  }


  .spd-agent-name{
    font-size: 24px;
  }
}

@media (max-width: 640px){
  .spd-hero{
    padding: 10px 0 10px 0;
  }

  .spd-media-panel{
    min-height: 320px;
    height: 320px;
  }

  .spd-topbar{
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .spd-icon-btn{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

  .spd-media-tools{
    left: 10px;
    bottom: 98px;
  }

  .spd-tool{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 13px;
  }

  .spd-agent-strip{
    padding: 14px;
  }

  .spd-agent-avatar{
    width: 58px;
    height: 58px;
  }

  .spd-agent-name{
    font-size: 20px;
  }

  .spd-badge{
    font-size: 12px;
    min-height: 30px;
  }

  .spd-views{
    font-size: 15px;
  }

  .spd-social-row{
    align-items: stretch;
  }

  .spd-social-left,
  .spd-social-right{
    width: 100%;
  }

  .spd-list-btn{
    justify-content: center;
  }

  .spd-social-btn{
    width: 100%;
    justify-content: center;
  }
}


/* single Property */

.single-brand{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.single-brand img{
  height: 44px;
  width:auto;
  display:block;
} 

.spd-badge-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #37D316;
  flex: 0 0 auto;
  margin-right: 5px;
}

.property-main {
  margin: 0 5px;
}
.location-main {
  margin: 10px 0;
}
.property-id {
  width: 50%;
}
.property-indetails span {
  color: #244E73;
  text-align: center;
  font-weight: 400;
  opacity: .9;
  font-size: 25px;
}
.property-id-right {
  justify-content: flex-end;
}
.property-indetails-border {
  padding: 8px 16px;
  border: 1px solid var(--spd-border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(78,152,217,.16), #fff);
  margin: 20px 0;
}
.property-indetails:first-child {
  margin-bottom: 15px;
}

.loan-price-wrap{
  --loan-dark: #244E73;
  --loan-blue: #4E98D9;
  --loan-border: rgba(36, 78, 115, 0.16);
  --loan-soft: #f7fbff;
  --loan-text: #29465f;
  --loan-muted: #6f8292;

  font-family: "Montserrat", Arial, sans-serif;
  color: var(--loan-text);
  display: grid;
  gap: 18px;
}

.loan-price-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.loan-price-block{
  display: grid;
  gap: 6px;
}

.loan-price-label{
  font-size: 18px;
  font-weight: 700;
  color: var(--loan-dark);
}

.loan-price-main-row{
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.loan-price-main{
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: var(--loan-dark);
}

.loan-price-old{
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--loan-muted);
  text-decoration: line-through;
}

.loan-price-sub{
  font-size: 18px;
  font-weight: 700;
  color: var(--loan-dark);
}

.loan-price-side{
  display: flex;
  align-items: flex-start;
}

.loan-negotiable{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 22px;
  border-radius: 14px;
  border: 1px solid var(--loan-border);
  background: linear-gradient(180deg, rgba(78,152,217,0.12), #fff);
  color: var(--loan-dark);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(36,78,115,0.06);
}

.loan-box{
  border: 1px solid var(--loan-border);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(36,78,115,0.08);
}

.loan-box-head{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(78,152,217,0.10), rgba(255,255,255,1));
  border-bottom: 1px solid var(--loan-border);
}

.loan-box-title{
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--loan-dark);
}

.loan-box-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 16px;
  border-radius: 12px;
  border: 1px solid var(--loan-border);
  background: #37D316;
  color: #fefefe;
  font-size: 17px;
  font-weight: 800;
}

.loan-box-mid{
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--loan-border);
}

.loan-box-left,
.loan-box-right{
  display: grid;
  gap: 16px;
}

.loan-info-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.loan-info-row.is-right{
  justify-content: flex-end;
}

.loan-info-label{
  font-size: 26px;
  font-weight: 600;
  color: var(--loan-text);
  width: max-content;
}

.loan-info-value{
  font-size: 28px;
  font-weight: 800;
  color: var(--loan-dark);
}

.loan-monthly-row{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--loan-border);
  flex-wrap: wrap;
}

.loan-monthly-label{
  font-size: 34px;
  font-weight: 500;
  color: var(--loan-text);
}

.loan-monthly-value{
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  color: var(--loan-dark);
}

.loan-apply-btn{
  width: 100%;
  min-height: 76px;
  border: 0;
  background: #37D316;
  color: #fefefe;
  font-size: 34px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: .2s ease;
}

.loan-apply-btn:hover{
  background: #29a111;
}

.loan-apply-icon{
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 768px){
  .loan-price-main{
    font-size: 32px;
  }

  .loan-price-old{
    font-size: 22px;
  }

  .loan-price-sub,
  .loan-negotiable{
    font-size: 15px;
  }

  .loan-box-title{
    font-size: 24px;
  }

  /* .loan-box-mid{
    grid-template-columns: 1fr;
    padding: 18px 16px;
  } */

  .loan-info-label{
    font-size: 18px;
  }

  .loan-info-value{
    font-size: 22px;
  }

  .loan-monthly-row{
    padding: 14px 16px;
  }

  .loan-monthly-label{
    font-size: 24px;
  }

  .loan-monthly-value{
    font-size: 34px;
  }

  .loan-apply-btn{
    min-height: 60px;
    font-size: 24px;
  }

  .loan-apply-icon{
    font-size: 24px;
  }
}

.qf-wrap{
  --qf-dark:#244E73;
  --qf-blue:#4E98D9;
  --qf-border:rgba(36,78,115,.14);
  --qf-soft:#f7fbff;
  --qf-text:#29465f;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:18px;
}

.qf-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px;
  margin-top: 10px;
  border-bottom:1px solid var(--qf-border);
}

.qf-title{
  margin:0;
  font-size:30px;
  line-height:1.1;
  font-weight:900;
  color:var(--qf-dark);
}

.qf-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.qf-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border:1px solid var(--qf-border);
  border-radius:18px;
  background:linear-gradient(180deg, #ffffff, var(--qf-soft));
  box-shadow:0 10px 24px rgba(36,78,115,.06);
}

.qf-icon{
  width:68px;
  height:68px;
  border-radius:16px;
  overflow:hidden;
  background:#eef5fb;
  border:1px solid rgba(36,78,115,.10);
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.qf-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.qf-content{
  min-width:0;
  display:grid;
  gap:4px;
}

.qf-label{
  font-size:15px;
  font-weight:700;
  color:#5f7384;
}

.qf-value{
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  color:var(--qf-dark);
}

@media (max-width: 768px){
  .qf-title{
    font-size:24px;
  }

  .qf-grid{
    grid-template-columns:1fr;
  }

  .qf-card{
    padding:14px;
    border-radius:16px;
  }

  .qf-icon{
    width:58px;
    height:58px;
    border-radius:14px;
  }

  .qf-label{
    font-size:14px;
  }

  .qf-value{
    font-size:18px;
  }
}

.ps-wrap{
  --ps-dark:#244E73;
  --ps-blue:#4E98D9;
  --ps-border:rgba(36,78,115,.14);
  --ps-soft:#f7fbff;
  --ps-text:#29465f;
  --ps-muted:#688093;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:18px;
}

.ps-top-grid{
  margin-top: 20px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.ps-mini-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border:1px solid var(--ps-border);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,var(--ps-soft));
  box-shadow:0 10px 24px rgba(36,78,115,.06);
}

.ps-mini-icon{
  width:68px;
  height:68px;
  border-radius:16px;
  overflow:hidden;
  background:#eef5fb;
  border:1px solid rgba(36,78,115,.10);
  flex:0 0 auto;
}

.ps-mini-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ps-mini-content{
  display:grid;
  gap:4px;
}

.ps-mini-label{
  font-size:15px;
  font-weight:700;
  color:var(--ps-muted);
}

.ps-mini-value{
  font-size:24px;
  line-height:1.2;
  font-weight:900;
  color:var(--ps-dark);
}

.ps-box{
  border:1px solid var(--ps-border);
  border-radius:20px;
  background:linear-gradient(180deg,#fff,var(--ps-soft));
  padding:18px;
  box-shadow:0 10px 24px rgba(36,78,115,.05);
}

.ps-title{
  margin:0 0 16px;
  padding-bottom:10px;
  border-bottom:1px solid var(--ps-border);
  font-size:28px;
  line-height:1.1;
  font-weight:900;
  color:var(--ps-dark);
}

.ps-type-row{
  margin-bottom:14px;
}

.ps-type-text{
  font-size:24px;
  font-weight:800;
  color:var(--ps-dark);
}

.ps-rows{
  display:grid;
  gap:14px;
}

.ps-row{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:14px;
  align-items:start;
  padding:14px;
  border:1px solid rgba(36,78,115,.10);
  border-radius:16px;
  background:#fff;
}

.ps-row-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.ps-row-label{
  font-size:22px;
  font-weight:700;
  color:var(--ps-text);
}

.ps-row-count{
  font-size:26px;
  font-weight:900;
  color:var(--ps-dark);
}

.ps-tags{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.ps-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 14px;
  border-radius:12px;
  border:1px solid var(--ps-border);
  background:linear-gradient(180deg, rgba(78,152,217,.10), #fff);
  color:var(--ps-dark);
  font-size:15px;
  font-weight:800;
}

.ps-more{
  position:relative;
}

.ps-more p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.8;
  color:var(--ps-text);
}

.ps-more p:last-child{
  margin-bottom:0;
}

.ps-more-fade{
  position:relative;
  max-height:46px;
  overflow:hidden;
}

.ps-more-fade::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:32px;
  background:linear-gradient(180deg, rgba(255,255,255,0), #f9fcff);
}

.ps-more-btn{
  margin-top:4px;
  padding:0;
  border:none;
  background:none;
  color:var(--ps-dark);
  font-size:15px;
  font-weight:800;
  text-decoration:underline;
  cursor:pointer;
}

@media (max-width: 768px){
  .ps-top-grid{
    grid-template-columns:1fr;
  }

  .ps-mini-card{
    padding:14px;
    border-radius:16px;
  }

  .ps-mini-icon{
    width:58px;
    height:58px;
    border-radius:14px;
  }

  .ps-mini-value{
    font-size:20px;
  }

  .ps-box{
    padding:14px;
    border-radius:16px;
  }

  .ps-title{
    font-size:22px;
  }

  .ps-type-text{
    font-size:20px;
  }

  .ps-row{
    grid-template-columns:1fr;
    padding:12px;
  }

  .ps-row-label{
    font-size:18px;
  }

  .ps-row-count{
    font-size:22px;
  }

  .ps-tag{
    min-height:36px;
    font-size:14px;
    padding:7px 12px;
    font-weight: 500;
  }

  .ps-more p{
    font-size:14px;
    line-height:1.7;
  }
}

.ut-wrap{
  --ut-dark:#244E73;
  --ut-blue:#4E98D9;
  --ut-border:rgba(36,78,115,.14);
  --ut-soft:#f7fbff;
  --ut-text:#29465f;
  --ut-muted:#688093;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:18px;
}

.ut-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid var(--ut-border);
  margin-top: 20px;
}

.ut-title{
  margin:0;
  font-size:28px;
  line-height:1.1;
  font-weight:900;
  color:var(--ut-dark);
}

.ut-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.ut-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border:1px solid var(--ut-border);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,var(--ut-soft));
  box-shadow:0 10px 24px rgba(36,78,115,.06);
}

.ut-icon{
  width:68px;
  height:68px;
  border-radius:16px;
  overflow:hidden;
  background:#eef5fb;
  border:1px solid rgba(36,78,115,.10);
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ut-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ut-content{
  min-width:0;
  display:grid;
  gap:4px;
}

.ut-label{
  font-size:15px;
  font-weight:700;
  color:var(--ut-muted);
}

.ut-value{
  font-size:20px;
  line-height:1.35;
  font-weight:800;
  color:var(--ut-dark);
}

@media (max-width: 768px){
  .ut-title{
    font-size:22px;
  }

  .ut-grid{
    grid-template-columns:1fr;
  }

  .ut-card{
    padding:14px;
    border-radius:16px;
  }

  .ut-icon{
    width:58px;
    height:58px;
    border-radius:14px;
  }

  .ut-label{
    font-size:14px;
  }

  .ut-value{
    font-size:17px;
  }
}
#zif1 {
  width: 100%;
  height: 450px;
}

.nb-wrap{
  --nb-dark:#244E73;
  --nb-blue:#4E98D9;
  --nb-border:rgba(36,78,115,.14);
  --nb-soft:#f7fbff;
  --nb-text:#29465f;
  --nb-muted:#6f8292;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:16px;
}

.nb-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid var(--nb-border);
  margin-top: 20px;
}

.nb-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--nb-dark);
}

.nb-title{
  margin:0;
  font-size:26px;
  font-weight:900;
  color:var(--nb-dark);
}
.nb-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nb-row{
  padding:14px 16px;
  border:1px solid var(--nb-border);
  border-radius:16px;
  background:linear-gradient(180deg,#fff,var(--nb-soft));
  box-shadow:0 8px 20px rgba(36,78,115,.05);
  flex-wrap: wrap;
  width: 48%;
  margin-top: 6px;
  display: flex;
}

.nb-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.nb-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(78,152,217,.18), #fff);
  border:1px solid var(--nb-border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:var(--nb-dark);
  font-size:13px;
  flex:0 0 auto;
}

.nb-text{
  display:grid;
  gap:2px;
  min-width:0;
}

.nb-text strong{
  font-size:16px;
  font-weight:800;
  color:var(--nb-dark);
}

.nb-text span{
  font-size:13px;
  color:var(--nb-muted);
}

.nb-distance{
  font-size:15px;
  font-weight:900;
  color:var(--nb-dark);
  white-space:nowrap;
}

/* mobile */
@media (max-width:768px){
  .nb-title{
    font-size:22px;
  }

  .nb-row{
    padding:12px 14px;
  }

  .nb-icon{
    width:36px;
    height:36px;
    font-size:11px;
  }

  .nb-text strong{
    font-size:14px;
  }

  .nb-distance{
    font-size:13px;
  }
}

.doc-wrap{
  --doc-dark:#244E73;
  --doc-blue:#4E98D9;
  --doc-border:rgba(36,78,115,.14);
  --doc-soft:#f7fbff;
  --doc-text:#29465f;
  --doc-muted:#6f8292;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:16px;
}

.doc-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px solid var(--doc-border);
  margin-top: 20px;
}

.doc-head-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--doc-dark);
}

.doc-title{
  margin:0;
  font-size:26px;
  font-weight:900;
  color:var(--doc-dark);
}

.doc-list{
  display:grid;
  gap:10px;
}

.doc-row{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border:1px solid var(--doc-border);
  border-radius:16px;
  background:linear-gradient(180deg,#fff,var(--doc-soft));
  box-shadow:0 8px 20px rgba(36,78,115,.05);
}

.doc-name{
  font-size:18px;
  font-weight:700;
  color:var(--doc-text);
}

.doc-view-btn,
.doc-request-btn{
  border:1px solid var(--doc-border);
  background:linear-gradient(180deg, rgba(78,152,217,.12), #fff);
  color:var(--doc-dark);
  font-family:inherit;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.doc-view-btn{
  min-width:92px;
  min-height:42px;
  padding:10px 18px;
  border-radius:12px;
  font-size:15px;
}

.doc-request-wrap{
  display:flex;
  justify-content:center;
  padding-top:4px;
  margin-top: 16px;
}

.doc-request-modal .doc-request-card{
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: min(90vh, 720px);
  overflow: auto;
}

.doc-request-form{
  display: grid;
  gap: 16px;
}

.doc-request-section{
  display: grid;
  gap: 12px;
}

.doc-request-subtitle{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-blue);
}

.doc-request-field{
  display: grid;
  gap: 6px;
}

.doc-request-field label{
  font-size: 14px;
  font-weight: 700;
  color: #29465f;
}

.doc-request-field input,
.doc-request-field textarea{
  width: 100%;
  border: 1px solid rgba(36,78,115,.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #244E73;
  background: #fff;
  box-sizing: border-box;
}

.doc-request-field textarea{
  min-height: 96px;
  resize: vertical;
}

.doc-request-items-wrap{
  display: grid;
  gap: 10px;
}

.doc-request-items{
  display: grid;
  gap: 8px;
}

.doc-request-item-row{
  display: flex;
  gap: 8px;
  align-items: center;
}

.doc-request-item-input{
  flex: 1;
  width: 100%;
  border: 1px solid rgba(36,78,115,.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #244E73;
  background: #fff;
  box-sizing: border-box;
}

.doc-request-item-remove{
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(36,78,115,.18);
  border-radius: 10px;
  background: #fff;
  color: #7a93ab;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: .2s ease;
}

.doc-request-item-remove:hover{
  color: #c0392b;
  border-color: rgba(192,57,43,.35);
  background: #fff7f7;
}

.doc-request-add-btn{
  align-self: flex-start;
  border: 1px dashed rgba(36,78,115,.28);
  border-radius: 12px;
  background: linear-gradient(180deg,#fff,#f7fbff);
  color: #244E73;
  font: inherit;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
  transition: .2s ease;
}

.doc-request-add-btn:hover{
  border-color: rgba(36,78,115,.45);
  background: #f0f7ff;
}

.doc-request-checklist{
  display: grid;
  gap: 10px;
}

.doc-request-check{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(36,78,115,.14);
  border-radius: 12px;
  background: linear-gradient(180deg,#fff,#f7fbff);
  cursor: pointer;
  font-weight: 600;
  color: #29465f;
}

.doc-request-check input{
  width: 18px;
  height: 18px;
  accent-color: #244E73;
}

.doc-request-modal .visit-form-status{
  margin-top: 0;
}

.doc-request-modal .btn-main:disabled,
.doc-request-modal .btn-lite:disabled{
  opacity: .7;
  cursor: not-allowed;
}

.doc-request-btn{
  min-width:280px;
  min-height:50px;
  padding:12px 24px;
  border-radius:14px;
  font-size:16px;
  box-shadow:0 10px 22px rgba(36,78,115,.06);
}

.doc-view-btn:hover,
.doc-request-btn:hover{
  background:linear-gradient(180deg, rgba(78,152,217,.22), #fff);
  transform:translateY(-1px);
}

.doc-view-btn:active,
.doc-request-btn:active{
  transform:translateY(0);
}

@media (max-width:768px){
  .doc-title{
    font-size:22px;
  }

  .doc-row{
    padding:10px 5px;
    grid-template-columns:1fr 1fr;
    align-items:center;
  }

  .doc-name{
    font-size:16px;
  }

  .doc-view-btn{
    width:100%;
  }

  .doc-request-btn{
    width:100%;
    min-width:0;
  }
}

.agent-card-wrap{
  --agent-dark:#244E73;
  --agent-blue:#4E98D9;
  --agent-border:rgba(36,78,115,.14);
  --agent-soft:#f7fbff;
  --agent-text:#29465f;
  --agent-muted:#6f8292;

  font-family:"Montserrat", Arial, sans-serif;
}

.agent-card{
  border:1px solid var(--agent-border);
  border-radius:22px;
  background:linear-gradient(180deg,#fff,var(--agent-soft));
  padding:18px;
  box-shadow:0 12px 28px rgba(36,78,115,.06);
  display:grid;
  gap:16px;
  margin-top: 20px;
}

.agent-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.agent-top-left{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-width:0;
}

.agent-avatar{
  width:78px;
  height:78px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(36,78,115,.12);
  background:#eef5fb;
  flex:0 0 auto;
}

.agent-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.agent-meta{
  min-width:0;
}

.agent-name{
  margin:0 0 6px;
  font-size:24px;
  line-height:1.15;
  font-weight:900;
  color:var(--agent-dark);
}

.agent-badges{
  gap:8px;
  margin-bottom:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 12px;
  border-radius:12px;
  border:1px solid var(--agent-border);
  background:linear-gradient(180deg, rgba(78,152,217,.12), #fff);
}

.agent-badge{
  
  color:var(--agent-dark);
  font-size:13px;
  font-weight:800;
}

.agent-company{
  font-size:18px;
  font-weight:700;
  color:var(--agent-text);
}

.agent-follow-btn{
  min-height:46px;
  padding:10px 18px;
  border-radius:14px;
  border:1px solid var(--agent-border);
  background:linear-gradient(180deg, rgba(78,152,217,.12), #fff);
  color:var(--agent-dark);
  font-family:inherit;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}

.agent-stats-box{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  border:1px solid var(--agent-border);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.agent-stat{
  padding:14px 10px;
  text-align:center;
  display:grid;
  gap:4px;
  border-right:1px solid var(--agent-border);
}

.agent-stat:last-child{
  border-right:none;
}

.agent-stat strong{
  font-size:24px;
  line-height:1.1;
  font-weight:900;
  color:var(--agent-dark);
}

.agent-stat span{
  font-size:14px;
  font-weight:700;
  color:var(--agent-muted);
}

.agent-sub-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.agent-sub-item{
  font-size:15px;
  font-weight:700;
  color:var(--agent-text);
}

.agent-action-list{
  display:grid;
  gap:12px;
}

.agent-action-btn{
  width:100%;
  min-height:52px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--agent-border);
  background:linear-gradient(180deg, rgba(78,152,217,.10), #fff);
  color:var(--agent-dark);
  font-family:inherit;
  font-size:17px;
  font-weight:800;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  box-sizing:border-box;
}

.agent-action-icon > img {
  width: 20px;
}

.agent-follow-btn:hover,
.agent-action-btn:hover{
  background:linear-gradient(180deg, rgba(78,152,217,.20), #fff);
  transform:translateY(-1px);
}

.agent-follow-btn:active,
.agent-action-btn:active{
  transform:translateY(0);
}

@media (max-width:768px){
  .agent-card{
    padding:14px;
    border-radius:18px;
  }

  .agent-top{
    align-items:stretch;
  }


  .agent-avatar{
    width:64px;
    height:64px;
  }

  .agent-name{
    font-size: 20px;
  }

  .agent-company{
    font-size:16px;
  }

  .agent-stats-box{
    grid-template-columns:1fr 1fr 1fr;
  }

  .agent-stat{
    border-right:none;
    border-bottom:1px solid var(--agent-border);
  }

  .agent-stat:last-child{
    border-bottom:none;
  }

  .agent-sub-row{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .agent-action-btn{
    font-size:15px;
    min-height:48px;
  }
}

.visit-wrap{
  --v-dark:#244E73;
  --v-blue:#4E98D9;
  --v-border:rgba(36,78,115,.14);
  --v-soft:#f7fbff;
  --v-text:#29465f;
  --v-muted:#6f8292;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:16px;
}

/* visit time */
.visit-time-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--v-border);
  border-radius:16px;
  background:linear-gradient(180deg,#fff,var(--v-soft));
  margin-top: 20px;
}

.visit-time-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.visit-day{
  font-weight:800;
  color:var(--v-dark);
}

.visit-hours{
  padding:6px 12px;
  border-radius:10px;
  border:1px solid var(--v-border);
  background:#fff;
  font-weight:800;
  color:var(--v-dark);
}

.visit-note{
  font-size:14px;
  color:var(--v-muted);
  font-weight:600;
}

.visit-date-btn{
  border:1px solid var(--v-border);
  background:#fff;
  padding:8px 12px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}

.visit-schedule-fields{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:flex-end;
  justify-content:flex-end;
}

.visit-field--inline{
  min-width:150px;
}

.visit-field--inline label{
  display:block;
  margin-bottom:6px;
}

.visit-field input[type="date"],
.visit-field input[type="time"],
.visit-field select{
  width:100%;
  border:1px solid var(--v-border);
  border-radius:10px;
  padding:10px 12px;
  font:inherit;
  font-weight:600;
  color:var(--v-dark);
  background:#fff;
}

.visit-field input[type="time"]{
  min-height:44px;
  cursor:pointer;
}

.visit-field input[type="time"]::-webkit-calendar-picker-indicator{
  cursor:pointer;
  opacity:.75;
}

.visit-field input[type="time"]:disabled{
  opacity:.55;
  cursor:not-allowed;
  background:#f3f6f9;
}

.visit-req{
  color:#c0392b;
}

.visit-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.visit-form-status{
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
}

.visit-form-status.is-error{
  color:#8b1e1e;
  background:#fdecec;
  border:1px solid #f5c2c2;
}

.visit-form-status.is-success{
  color:#1f5d35;
  background:#e8f7ee;
  border:1px solid #b9e3c8;
}

.visit-submit-btn:disabled{
  opacity:.7;
  cursor:not-allowed;
}

/* form box */
.visit-form-box{
  border:1px solid var(--v-border);
  border-radius:18px;
  padding:16px;
  background:linear-gradient(180deg,#fff,var(--v-soft));
  display:grid;
  gap:14px;
}

/* checkbox */
.visit-checkbox{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--v-dark);
}

/* input fields */
.visit-field{
  display:grid;
  gap:6px;
}

.visit-field label{
  font-size:14px;
  font-weight:700;
  color:var(--v-text);
}

.visit-field input{
  width:100%;
  height:44px;
  padding:0 12px;
  border-radius:10px;
  border:1px solid var(--v-border);
  outline:none;
  font-family:inherit;
}

/* interest */
.visit-interest{
  display:grid;
  gap:10px;
}

.visit-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.visit-tag{
  border:1px solid var(--v-border);
  background:#fff;
  padding:6px 10px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  text-align: start;
}

/* submit */
.visit-submit-btn{
  height:50px;
  border:none;
  border-radius:14px;
  background:#37D316;
  color: #fefefe;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}
.visit-submit-btn:hover {
  background: #29a111;
}

.visit-note-bottom{
  text-align:center;
  font-size:14px;
  font-weight:700;
  color:var(--v-muted);
}

/* mobile */
@media (max-width:768px){
  .visit-time-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .visit-date-btn{
    width:100%;
  }
}

.sp-wrap{
  --sp-dark:#244E73;
  --sp-blue:#4E98D9;
  --sp-border:rgba(36,78,115,.14);
  --sp-soft:#f7fbff;
  --sp-text:#29465f;
  --sp-muted:#6f8292;
  --sp-danger:#e53935;

  font-family:"Montserrat", Arial, sans-serif;
  display:grid;
  gap:24px;
}

.sp-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid var(--sp-border);
  margin-top: 20px;
}

.sp-main-title{
  margin:0;
  font-size:30px;
  font-weight:900;
  color:var(--sp-dark);
}

.sp-group{
  display:grid;
  gap:14px;
}

.sp-group-title{
  margin:0;
  font-size:22px;
  font-weight:800;
  color:var(--sp-dark);
}

.sp-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.sp-card{
  border:1px solid var(--sp-border);
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg,#fff,var(--sp-soft));
  box-shadow:0 10px 24px rgba(36,78,115,.06);
}

.sp-thumb-wrap{
  position:relative;
  aspect-ratio: 4 / 3;
  overflow:hidden;
  background:#eaf3fb;
}

.sp-thumb-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.sp-badge{
  position:absolute;
  top:10px;
  right:10px;
  min-height:30px;
  padding:6px 10px;
  border-radius:10px;
  background:var(--sp-danger);
  color:#fff;
  font-size:12px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.sp-body{
  padding:14px;
  display:grid;
  gap:10px;
}

.sp-ad-title{
  margin:0;
  font-size:16px;
  font-weight:800;
  line-height:1.35;
  color:var(--sp-dark);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.sp-location{
  font-size:15px;
  font-weight:700;
  color:var(--sp-text);
  line-height:1.45;
}

.sp-price{
  font-size:22px;
  font-weight:900;
  color:var(--sp-dark);
}

.sp-meta{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:8px 12px;
}

.sp-meta-item{
  font-size:14px;
  font-weight:700;
  color:var(--sp-text);
}

.sp-road{
  font-size:14px;
  font-weight:700;
  color:var(--sp-muted);
}

.sp-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:4px;
}

.sp-btn{
  min-height:42px;
  border-radius:12px;
  border:1px solid var(--sp-border);
  font-family:inherit;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}

.sp-btn-view{
  background:linear-gradient(180deg, #2f73bb, #1f5f9e);
  color:#fff;
  border-color:#205f9f;
}

.sp-btn-call{
  background:linear-gradient(180deg, #ffffff, #f2f7fb);
  color:var(--sp-dark);
}

.sp-btn:hover{
  transform:translateY(-1px);
}

.sp-btn:active{
  transform:translateY(0);
}

@media (max-width: 1100px){
  .sp-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .sp-main-title{
    font-size:24px;
  }

  .sp-group-title{
    font-size:18px;
  }

  .sp-grid{
    grid-template-columns:1fr;
  }

  .sp-body{
    padding:12px;
  }

  .sp-location{
    font-size:14px;
  }

  .sp-price{
    font-size:20px;
    font-weight: 800;
  }

  .sp-meta-item,
  .sp-road{
    font-size:13px;
  }

  .sp-btn{
    min-height:40px;
    font-size:14px;
  }
}

@media screen and (max-width:410px) {
  .spd-agent-badges {
    flex-direction: column;
    align-items: baseline;
    gap: 4px;
  }
  .spd-agent-name {
    font-weight: 600;
    font-size: 12px;
    margin: 0 0 4px;
  }
  .spd-badge , .spd-views {
    font-weight: 500;
    font-size: 7px;
  }
  .spd-agent-strip{
    padding: 5px 0;
  }
  .spd-badge {
    padding: 2px;
    min-height: 20px;
  }
  .spd-status {
    font-weight: 500;
  }
  .spd-badge-dot {
    width: 6px;
    height: 6px;
  }
    .spd-agent-avatar {
    width: 40px;
    height: 40px;
  }
  .spd-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    font-size: 14px;
  }
}






/* responsive */
/* =========================
   320px Responsive
   Add at end of single-property.css
========================= */
@media screen and (max-width: 400px) {

  /* global */
  html, body {
    overflow-x: hidden;
  }

  .w,
  .spd-shell {
    width: 100%;
    max-width: 100%;
  }

  .fsb,
  .fa,
  .fcc {
    gap: 6px;
  }

  /* header */
  .topbar {
    padding: 8px 0;
  }

  .single-brand img {
    height: 32px;
  }

  /* hero / media */
  .spd-hero {
    padding-top: 8px;
  }

  .spd-media-card {
    border-radius: 14px;
    overflow: hidden;
  }

  .spd-media-panel {
    min-height: 220px;
  }

  .spd-main-image,
  .spd-video,
  .spd-iframe,
  .spd-360-viewer {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .spd-agent-strip {
    padding: 5px 0;
    gap: 8px;
  }

  .spd-icon-btn,
  .spd-tool {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 12px;
  }

  .spd-agent-left {
    width: 100%;
    gap: 8px;
  }

  .spd-agent-avatar {
    width: 42px;
    height: 42px;
  }

  .spd-agent-name {
    font-size: 12px;
    line-height: 1.2;
    width: max-content;
  }

  .spd-agent-meta {
    min-width: 0;
    flex: 1;
  }

  .spd-agent-badges {
    flex-wrap: wrap;
    gap: 6px;
  }

  .spd-badge {
    border-radius: 999px;
  }
  .company-rate img {
    width: 8px !important;
  }
  .company-rate {
    gap: 2px !important;
  }
  .spd-agent-badges > div {
    width: max-content;
  }

  .spd-badge-dot {
    width: 8px;
    height: 8px;
  }

  .spd-views {
    font-size: 10px;
    min-height: 30px;
    padding: 6px 8px;
  }

  .pc-bottom-left {
    left: 8px;
    bottom: 8px;
  }

  .pc-media-icons {
    gap: 6px;
    margin-bottom: 4px;
  }

  .pc-ic-badge {
    width: 28px;
    height: 24px;
    border-radius: 8px;
  }

  .pc-ic {
    width: 14px;
    height: 14px;
  }

  .pc-360 {
    font-size: 10px;
    padding: 4px 7px;
    border-radius: 8px;
  }

  /* social row */
  .spd-social-row {
    align-items: stretch;
    gap: 8px;
  }

  .spd-list-btn {
    min-height: 35px;
    font-size: 11px;
    padding: 8px 6px;
    font-weight: 700;
  }

  .spd-social-btn {
    width: 100%;
    min-height: 38px;
    font-size: 11px;
    padding: 8px 10px;
  }

  .spd-social-right {
    width: 100%;
  }

  /* title / location block */
  .location-image {
    width: 20px;
    margin-right: 6px;
  }

  .property-main {
    margin: 0 3px;
    font-size: 12px;
  }

  .location-main,
  .property-indetails {
    gap: 6px;
  }

  .property-indetails-border {
    padding: 8px 10px;
    margin: 14px 0;
    border-radius: 12px;
  }

  .property-indetails:first-child {
    margin-bottom: 10px;
  }

  .property-id {
    width: calc(50% - 8px);
  }

  .property-indetails span {
    font-size: 10px;
    line-height: 1.35;
  }

  /* stack flex rows used in html */
  .location-main,
  .property-indetails,
  .loan-price-top,
  .loan-box-head,
  .loan-box-mid,
  .loan-monthly-row,
  .nb-row,
  .doc-row {
    flex-wrap: wrap;
  }
  .loan-box-mid {
    padding: 20px 0;
    width: 100%;
  }

  .spd-shell > .fsb > .fcc,
  .location-main > .fa {
    min-width: 0;
    flex-wrap: wrap;
  }

  /* loan price */
  .loan-price-wrap {
    gap: 12px;
  }

  .loan-price-label {
    font-size: 12px;
  }

  .loan-price-main-row {
    gap: 8px;
    flex-wrap: wrap;
  }

  .loan-price-main {
    font-size: 24px;
    line-height: 1.1;
  }

  .loan-price-old {
    font-size: 14px;
  }

  .loan-price-sub {
    font-size: 11px;
  }

  .loan-negotiable {
    display: inline-flex;
    font-size: 10px;
    padding: 5px 8px;
  }

  .loan-box {
    padding: 12px;
    border-radius: 14px;
  }

  .loan-box-title {
    font-size: 16px;
  }

  .loan-box-badge {
    font-size: 10px;
    padding: 5px 8px;
  }

  .loan-box-left,
  .loan-box-right {
    width: 74%;
  }

  .loan-info-row {
    font-size: 11px;
  }

  .loan-info-label,
  .loan-info-value,
  .loan-monthly-label {
    font-size: 11px;
  }
  .loan-monthly-value {
    font-size: 24px;
  }

  .loan-apply-btn {
    min-height: 40px;
    font-size: 12px;
    padding: 8px 10px;
  }

  /* quick facts */
  .qf-wrap,
  .ps-wrap,
  .ut-wrap,
  .nb-wrap,
  .doc-wrap {
    gap: 12px;
  }

  .qf-title,
  .ut-title,
  .nb-title,
  .doc-title,
  .ps-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .qf-grid,
  .ps-top-grid,
  .ut-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .qf-card,
  .ps-mini-card,
  .ut-card {
    gap: 10px;
    padding: 5px;
    border-radius: 14px;
  }

  .qf-icon,
  .ps-mini-icon,
  .ut-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .qf-label,
  .ps-mini-label,
  .ut-label {
    font-size: 9px;
  }

  .qf-value,
  .ps-mini-value,
  .ut-value {
    font-size: 8px;
    line-height: 1.3;
    font-weight: 700;
  }
  .qf-content , .ps-mini-content , .ut-content {
    display: flex;
    align-items: anchor-center;
    width: 100%;
    justify-content: space-between;
  }

  /* property structure */
  .ps-box {
    padding: 12px;
    border-radius: 14px;
  }

  .ps-type-row {
    margin-bottom: 10px;
  }

  .ps-type-text {
    font-size: 16px;
  }

  .ps-rows {
    gap: 10px;
  }

  .ps-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .ps-row-left {
    gap: 8px;
  }

  .ps-row-label {
    font-size: 14px;
  }

  .ps-row-count {
    font-size: 18px;
  }

  .ps-tags {
    gap: 6px;
    justify-content: space-between;
  }

  .ps-tag {
    min-height: 30px;
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 10px;
  }

  .ps-more p {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .ps-more-fade {
    max-height: 42px;
  }

  .ps-more-btn {
    font-size: 12px;
  }

  /* map */
  #zif1 {
    width: 100%;
    height: 220px;
    border-radius: 14px;
  }

  /* nearby places */
  .nb-row {
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
  }

  .nb-left {
    min-width: 0;
    flex: 1;
    gap: 8px;
  }

  .nb-icon {
    min-width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .nb-text strong,
  .nb-text span,
  .nb-distance {
    font-size: 8px;
    line-height: 1.35;
  }

  /* documents */
  .doc-list {
    gap: 10px;
  }

  .doc-row {
    gap: 8px;
    border-radius: 12px;
  }

  .doc-name {
    width: 100%;
    font-size: 12px;
    line-height: 1.4;
  }

  .doc-view-btn,
  .doc-request-btn {
    width: 100%;
    min-height: 38px;
    font-size: 12px;
    padding: 8px 10px;
  }

  /* prevent text overflow */
  .spd-agent-name,
  .qf-value,
  .ut-value,
  .ps-type-text,
  .doc-name,
  .nb-text strong,
  .nb-text span {
    word-break: break-word;
    overflow-wrap: anywhere;
    font-weight: 800;
  }

    .sp-grid {
    grid-template-columns: 1fr 1fr;
  }

    .sp-btn {
    min-height: 30px;
    font-size: 10px;
  }

  .sp-meta-item, .sp-road {
    font-size: 11px;
    font-weight: 600;
  }
  .agent-name , .agent-company {
    font-size: 11px;
  }
  .agent-badges {
    min-height: 24px;
    padding: 5px;
  }
  .agent-badge {
    font-size: 9px;
  }
  .agent-follow-btn{
    min-height:35px;
    padding:5px;
    border-radius:9px;
    font-size:11px;
    font-weight:600;
  }
  .visit-time-left > span {
    font-size: 11px;
  }
  .visit-time-box {
    position: relative;
    gap: 0;
    padding: 19px 0 14px 0;
    display: flex;
    align-items: center;
  }
  .visit-date-btn {
  border: 1px solid var(--v-border);
  background: #fff;
  padding: 4px;
  border-radius: 6px 16px 6px 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 11px;
  position: absolute;
  width: max-content;
  top: 0px;
  right: 0px;
  }
  .mainLocation {
    font-size: 15px;
    font-weight: 700;
  }
  .loan-price-top {
    align-items: center;
  }
  .loan-negotiable {
    min-height: 40px;
  }
}

.company-rate img {
  width: 18px;
}

.agent-stat img {
  width: 18px;
}

.spd-list-btn.list {
  width: 100%;
  justify-content: center;
}
.loan-apply-btn {
  border:1px solid #428534 ;
}
.nb-distance {
  display: flex;
  align-items: center;
}
.views {
  width: 20px;
}
.spd-icon-btn {
  width: 35px;
}
.spd-icon-btn > img , .views > img {
  width: 100%;
}
.spd-topbar-left  {
  width: 100%;
  padding: 0 10px;
}
.views {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.views >span {
  color: var(--spd-dark-blue);
}

.inquiryImage {
  width: 17px;
}
.inquaryTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--v-text);
}

.visit-field textarea{
  width:100%;
  min-height:110px;
  padding:12px;
  border-radius:10px;
  border:1px solid var(--v-border);
  outline:none;
  font-family:inherit;
  font-size:14px;
  resize:vertical;
}

.similar-tabs{
  display:flex;
  gap:10px;
  margin-bottom:16px;
}

.similar-tab{
  flex:1;
  min-height:44px;
  border-radius:14px;
  border:1px solid var(--sp-border);
  background:linear-gradient(180deg, rgba(78,152,217,.10), #fff);
  color:var(--sp-dark);
  font-family:inherit;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}

.similar-tab.is-active{
  background:var(--sp-dark);
  color:#fff;
}

.similar-panel{
  display:none;
}

.similar-panel.is-show{
  display:grid;
}

@media(max-width:400px){
  .similar-tabs{
    gap:6px;
  }

  .similar-tab{
    min-height:36px;
    font-size:10px;
    border-radius:10px;
  }
}

.bottom-contact{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
}

/* buttons */
.contact-btn{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  transition: 0.3s;
}

.contact-btn img{
  width: 26px;
  height: 26px;
}

/* hover effects */
.contact-btn:hover{
  transform: translateY(-3px);
}

/* colors */
.whatsapp{
  background: #25D366;
}

.call{
  background: #244E73;
}

.message{
  background: #4E98D9;
}

/* icon color invert */
.whatsapp img,
.call img,
.message img{
  filter: brightness(0) invert(1);
}