element.style {
  margin-top: -22px;
}
.banking{
  margin-top: -10px;

}

/* ===== FILTER BAR ===== */
.filter-bar {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.filter-bar label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.btn-search {
  background: #fa8918;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 18px;
  width: 100%;
  border: none;
}
.btn-search:hover { opacity: .92; }

/* ===== LIST GRID ===== */
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

@media (max-width: 992px) {
  .list-grid { grid-template-columns: 1fr; }
}

/* ===== PROPERTY CARD ===== */
.property-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.property-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 576px) {
  .property-row { grid-template-columns: 1fr; }
}

/* image */
.p-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 130px;
  background: #f3f3f3;
}

.p-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

/* right content */
.p-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #222;
}

.p-price {
  font-size: 20px;
  font-weight: 900;
  color: #0076ae;
  margin-bottom: 12px;
}

.p-meta {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #222;
  font-weight: 700;
}

.p-meta small {
  display: block;
  font-weight: 600;
  color: #777;
  margin-top: 2px;
}

.p-divider {
  border-top: 1px solid #eee;
  margin: 14px 0;
}

.p-loc {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #666;
  line-height: 1.4;
  font-size: 14px;
}

.p-loc i {
  color: #198754;
  font-size: 18px;
  margin-top: 2px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover {
  color: inherit;
}


/* ===== FILTER BAR ===== */

/* details */
    body { background:#f6f7fb; }

    /* page container */
    .page-wrap{
      padding: 26px 0;
    }

    /* left card */
    .detail-card{
      background:#fff;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      padding: 22px;
    }

    /* top tags */
    .tag-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      background:#fa8918;
      color:#fff;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 999px;
      letter-spacing: .3px;
    }
    .tag-new{
      background:#0076ae;
    }

    .p-title{
      font-weight: 800;
      font-size: 22px;
      margin: 10px 0 6px;
      color:#222;
    }

    .p-sub{
      font-size: 12px;
      color:#666;
      margin-bottom: 8px;
    }

    .p-price{
      font-size: 18px;
      font-weight: 900;
      color:#fa8918;
      margin: 6px 0;
    }

    .p-locline{
      display:flex;
      gap:10px;
      color:#666;
      font-size: 13px;
      line-height: 1.4;
      margin-top: 8px;
    }
    .p-locline i{
      color:#198754;
      font-size: 16px;
      margin-top: 1px;
    }

    .section-title{
      font-size: 14px;
      font-weight: 900;
      color:#222;
      margin: 18px 0 10px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .section-title::before{
      content:"";
      width:3px;
      height: 16px;
      background:#fa8918;
      border-radius: 6px;
      display:inline-block;
    }

    .desc{
      font-size: 13px;
      color:#555;
      line-height: 1.65;
      white-space: pre-line; /* keeps line breaks */
    }

    .mini-metric{
      display:flex;
      gap:10px;
      align-items:center;
      margin: 14px 0 6px;
      font-weight: 800;
      color:#222;
    }
    .mini-metric small{
      display:block;
      font-weight: 600;
      color:#777;
    }

    /* details rows */
    .info-grid{
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      margin-top: 8px;
    }
    .info-row{
      display:grid;
      grid-template-columns: 160px 1fr 160px 1fr;
      gap: 10px 14px;
      padding: 12px 0;
      border-top: 1px solid #eee;
      font-size: 13px;
    }
    .info-row:first-child{ border-top: none; }
    .info-label{ color:#666; font-weight:700; }
    .info-val{ color:#222; font-weight:800; }

    /* location table */
    .loc-table{
      width: 100%;
      font-size: 13px;
    }
    .loc-table td{
      padding: 8px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .loc-table td:first-child{
      width: 120px;
      color:#666;
      font-weight: 700;
    }
    .loc-table td:last-child{
      color:#222;
      font-weight: 800;
    }

    /* right form card */
    .form-card{
      background:#fff;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      padding: 18px;
    }
    .form-card h6{
      font-weight: 900;
      margin-bottom: 12px;
      color:#222;
    }
    .btn-send{
      background:#0076ae;
      color:#fff;
      font-weight: 800;
      border-radius: 10px;
      padding: 12px 14px;
      border:none;
      width: 100%;
    }

    /* sticky on desktop only */
    @media (min-width: 992px){
      .sticky-lg{
        position: sticky;
        top: 18px;
      }
    }

    /* responsive: reduce title size */
    @media (max-width: 576px){
      .detail-card{ padding: 16px; }
      .p-title{ font-size: 18px; }
    }

    /* responsive: info rows become 2 columns on mobile */
    @media (max-width: 768px){
      .info-row{
        grid-template-columns: 140px 1fr;
      }
    }

    /* PROPERTY IMAGE SLIDER */
.property-slider {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.property-slider img {
  height: 660px;
  object-fit: cover;
}

/* DULL OVERLAY (optional – matches banner style) */
.property-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}

/* Mobile */
@media (max-width: 576px) {
  .property-slider img {
    height: 220px;
  }
}

/* details */
