/* .filter-bar {
  position: -webkit-sticky; 
  position: sticky;
  top: 0;                  
  z-index: 1000;
  background: #fff;
  padding: 22px 0;
  transition: box-shadow .15s ease;
} */

/* optional: add shadow when stuck (needs small JS to toggle class, or show always) */
/* .filter-bar.sticky {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
} */

/* responsive */
/* @media (max-width: 768px) {
  .filter-bar .container { flex-direction: column; gap: 8px; }
} */


/* --- Filter Bar Base --- */

.stickyFilter{
   position: -webkit-sticky; 
  position: sticky;
  top: 0;                  
  z-index: 1000;   
}

#propertyFilterBar {

  background: #fff;
  padding: 22px 55px;
  transition: box-shadow .15s ease;
}

/* --- Filter container: horizontally scrollable on mobile --- */
.filter-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 0 10px;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar on Firefox */
}
.filter-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar on Chrome/Safari */
}

/* --- Each filter item --- */
.filter-item {
  flex: 0 0 auto;
  min-width: 150px;
}
.filter-item input,
.filter-item select {
  height: 40px;
}

/* --- Apply button (always visible) --- */
.filter-apply {
    flex: 0 0 auto;
    position: sticky;
    right: -10px;
    background: #fff;
    z-index: 10;
    display: flex;
    align-items: end;
    padding-right: 0;
    padding-left: 0;
}
 .detailsHeadIncr{
    margin-top: 6rem;
  }
/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .filter-item {
    min-width: 120px;
  }
    .filter-item select{
   height: 30px;
    font-size: 12px;
  }
     .filter-item input{
   height: 30px;
    font-size: 12px;
  }
  .filter-apply button {
    width: 100%;
      height: 30px;
    font-size: 12px;
  }
  #propertyFilterBar{
         padding: 10px 0px;
        margin-top: -80px;
  }
  .detailsHeadIncr{
    margin-top: 0;
  }
}




/* shasloader */

#shasloader{
        position: absolute;
    border: 1px solid #f6c7c7;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 4px 15px;
    border-radius: 8px;
    background-color: #ffecec;
    top: 30%;
    left: 45%;
    z-index: 100000;
}

#shasloader i{
font-size: 20px;
}
#shasloader span{
font-size: 15px;
}
/* shasloader */

.borderActive{
    border: 1px solid red;
}

/* skelton */
/* === Skeleton Loader Styling === */
.property-card-skeleton {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

/* Left image placeholder */
.skeleton-img {
  width: 220px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

/* Right content */
.skeleton-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Generic skeleton shimmer */
.skeleton {
  background: linear-gradient(90deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 6px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Specific element shapes */
.skeleton-title {
  width: 70%;
  height: 20px;
  margin-bottom: 10px;
}

.skeleton-stars {
  width: 100px;
  height: 14px;
  margin-bottom: 12px;
}

.skeleton-location {
  width: 60%;
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-meta {
  width: 40%;
  height: 14px;
  margin-bottom: 20px;
}

.skeleton-price {
  width: 30%;
  height: 18px;
  margin-bottom: 15px;
}

.skeleton-btn {
  width: 80px;
  height: 32px;
  border-radius: 8px;
}

.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: #f2f2f2; /* placeholder background */
}
.lazy-loaded {
    opacity: 1;
}
.skeletonImage {
    width: 100%;
    height: 200px; /* adjust based on image size */
    background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
}
@keyframes skeleton-loading {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}


/* testimonial skelton */

/* Base skeleton */
.testi-skeleton {
    background: #eee;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.testi-skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, #f6f6f6, transparent);
    animation: testiShimmer 1.5s infinite;
}

@keyframes testiShimmer {
    100% {
        left: 100%;
    }
}

/* Circle */
.testi-skeleton-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Small circle (quote icon placeholder) */
.testi-skeleton-circle-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Text lines */
.testi-skeleton-line {
    height: 14px;
    margin: 10px 0;
    border-radius: 6px;
}

/* Name line */
.testi-skeleton-line-lg {
    height: 18px;
    margin-top: 15px;
    width: 60%;
}

/* testimonial skelton */


/* skelton */


/* packagePageHeader */

.packagePageHeader{
      text-align: center;
    padding: 3rem;
    background-color: #f8f8f8;
    margin-bottom: 3rem;
}
.packagePageHeader h2{
margin-bottom: 2rem;
}
.packagePageHeader ul{
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 17px;
    flex-wrap: wrap;
}
.packagePageHeader ul li{
    margin-right: 2rem;
}
.packageYes{
      font-size: 25px;
    color: green;
}
.packageNo{
    font-size: 25px;
    color: red;
}

.pricingDesc {
  height: 500px;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.pricingDesc::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.premiumPack{
      box-shadow: 0px 0px 10px 1px red;
}
.sp-tag{
      position: absolute;
    z-index: 1;
}
.sp-tag img{
      width: 130px;
    margin-top: -16px;
    margin-left: -33px;
}
/* packagePageHeader */

/* property wizard */

.wizard-step { padding: 1rem; }
.d-none { display: none; }

.step-indicator { 
     padding: 6px 16px;
    border-radius: 3px;
    background: #eee;
    cursor: pointer;
}
.step-indicator.active { background: #ed1c24;
    color: #fff; }
.wizardSteps{
      display: flex;
    flex-wrap: wrap;
}
.is-invalid {
  border: 1px solid #ff4d4d !important;
  box-shadow: 0 0 4px rgba(255, 77, 77, 0.4);
}
/* property wizard */


/* map */
.gmnoprint{
  display: none !important;
}

.map-container {
  position: relative;
  margin-top: 1rem;
}

.map-title {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.map-search-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}

#searchInput {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

#searchInput:focus {
  border-color: #5B54BD;
  box-shadow: 0 0 4px rgba(91, 84, 189, 0.3);
}

#locationMap {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  #locationMap {
    height: 250px;
  }
  #searchInput {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/* map */
.property-box-body{
  max-height: 730px;
  min-height: 600px;
  overflow-y: scroll;
}

.property-box {
  position: relative;
}

.box-loader-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 10;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.box-loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
text-align: center;
}

.loader-logo {
  width: 150px;
  height: 150px;
}
.removeSavedProp{
  cursor: pointer;
    color: #ff0606;
    position: absolute;
}
.savedCount{
      position: absolute;
    right: 0;
    top: 2px;
    background-color: #e44b4b;
    padding: 1px 4px;
    border-radius: 15px;
    color: white;
    font-size: 12px;
}