:root {
  --q-primary: #00505F;
    --q-secondary: #3cb6a8;
    --q-accent: #3CB6A8;
    --q-positive: #21BA45;
    --q-negative: #C10015;
    --q-info: #31CCEC;
    --q-warning: #F2C037;
    --q-dark: #001807; /* charcoal */
    --q-dark-page: #121212;
    --q-light-page: #F9FAFB;
    --q-light-grey:#4B5563;
    --q-subtle:#00ADBA;
    /* PropMatch specific variables */
    --pm-light: #FFFFFF; /* cloud */
    --pm-dark: #001807; /* charcoal */
    --pm-primary: #c5862c;
    --pm-primary-tint: #246d7a; /* lighter variant */
    --pm-primary-shade: #00424f; /* darker variant */
    --pm-secondary: #3CB6A8;
    --pm-secondary-subtle:#00ADBA;
    --pm-secondary-tint: #64c5ba; /* lighter variant */
    --pm-secondary-shade: #309186; /* darker variant */
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.main-header .container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo img {
  height: 28px;
  display: block;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
}

.mobile-menu-btn {
  display: none;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('../images/bg_image.png') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 150px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  opacity: 0.95;
}

.hero-search {
  max-width: 900px;
  margin: 35px auto 0;
}

.search-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.search-tabs button {
  border: none;
  background: transparent;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 999px;
  color: #444;
}

.search-tabs button.active {
  background: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-tabs .ai-tab {
  background: linear-gradient(135deg, #7b5cff, #b46cff);
  color: #fff;
  margin-left: 6px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.search-input {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 16px;
}

.search-input .icon {
  font-size: 16px;
  margin-right: 10px;
  color: #888;
}

.search-input input {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
}

.search-btn {
  background:var(--pm-primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.search-btn:hover {
  background: var(--pm-primary);
}

.projects {
  padding: 50px 0;
}

.projects h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.badge {
  background: #eee;
  padding: 4px 8px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 6px;
}

.hidden-project {
  display: none;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

#loadMoreBtn {
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  font-weight: 600;
  margin: 0px auto;
}


/* Listing filter responsive behavior */
#listingFilterForm {
  flex-wrap: wrap !important;
  overflow-x: visible !important;
}

#listingFilterForm > * {
  flex-shrink: 1;
}

#listingFilterForm > .relative {
  flex: 1 1 340px;
  min-width: 260px;
}

#listingFilterForm .select2-container,
#listingFilterForm span.select2,
#listingFilterForm .choices {
  width: auto !important;
  min-width: 120px !important;
  flex: 0 1 auto !important;
}

@media (min-width: 1280px) {
  #listingFilterForm {
    flex-wrap: nowrap !important;
  }
}

.card-image {
  height: 190px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
}

.listing-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}

.listing-body {
  padding: 16px;
}

.listing-body h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.listing-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #444;
  margin-bottom: 12px;
}

.listing-price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.listing-whatsapp {
  display: block;
  text-align: center;
  padding: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

.value-card {
  min-height: 140px;
}

.value-card .info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-badge img {
  width: 50%;
}

.info-text h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.info-text p {
  font-size: 14px;
  color: #555;
}

.info-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-right .qr {
  width: 80px;
}

.info-right .phone {
  width: 220px;
  transform: rotate(-8deg) translateY(2rem) translateX(-.5rem);
}

.mortgage-card {
  align-items: center;
}

.mortgage-left {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  max-width: 650px;
}

.mortgage-left h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.mortgage-left p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.mortgage-left ul {
  margin-top: 10px;
  padding-left: 18px;
}

.mortgage-left li {
  font-size: 14px;
  margin-bottom: 6px;
}

.mortgage-form {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  width: 340px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.mortgage-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.phone-input {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 2px solid #6b5cff;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.phone-input span {
  padding: 10px 12px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 13px;
}

.mortgage-form button {
  width: 100%;
  padding: 12px;
  background: #ef3e36;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 12px;
}

.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 124px;
  text-align: center;
  border: 2px solid #888;
}

.qr-wrap img {
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 6px;
  border-radius: 10px;
}

.qr-text {
  margin-top: 6px;
  font-size: 10px;
  color: #555;
  line-height: 1.2;
}

.phone-field {
  position: relative;
  width: 100%;
}

.phone-field label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
  display: block;
}

.country-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding-right: 10px;
  border-right: 1px solid #ddd;
}

.country-selected img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.country-selected span {
  font-size: 14px;
  font-weight: 500;
}

.country-selected .arrow {
  border: solid #555;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 4px;
}

.phone-input input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  display: none;
  z-index: 50;
}

.country-dropdown .search-box {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.country-dropdown .search-box input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.country-dropdown ul {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 6px 0;
}

.country-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

.country-dropdown li img {
  width: 20px;
  height: 14px;
}

.country-dropdown li:hover {
  background: #f5f4ff;
}

.city-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 24px;
}

.city-tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  position: relative;
}

.city-tab.active {
  color: #3cb6a8;
  font-weight: 600;
}

.city-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #3cb6a8;
  border-radius: 2px;
}

.developers-section {
  padding: 60px 0;
}

.developers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.developers-header h3 {
  font-size: 20px;
}

.slider-arrows button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
}

.developers-slider-wrapper {
  overflow: hidden;
}

.developers-slider {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}

.developers-slider::-webkit-scrollbar {
  display: none;
}

.developer-card {
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  flex-shrink: 0;
}

.developer-card img {
  max-width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

.developer-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 0;
}

.developer-card span {
  font-size: 12px;
  color: #666;
}

.view-all {
  text-align: center;
  margin-top: 24px;
}

.view-all a {
  display: inline-block;
  padding: 10px 18px;
  background: #f4f3ff;
  border-radius: 10px;
  font-weight: 500;
  color: #6b5cff;
}

.supercharge-section {
  padding: 80px 0;
  background: #fff;
}

.supercharge-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}

.supercharge-subtitle {
  text-align: center;
  color: #666;
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 15px;
}

.supercharge-tabs {
  display: flex;
  justify-content: left;
  gap: 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}

.supercharge-tabs .tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  position: relative;
}

.supercharge-tabs .tab.active {
  color: #6b5cff;
  font-weight: 600;
}

.supercharge-tabs .tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6b5cff;
  border-radius: 2px;
}

.supercharge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.supercharge-card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.supercharge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.card-illustration {
  flex: 0 0 220px;
  width: 220px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-illustration img {
  max-width: 120px;
  height: auto;
}

.bg-peach {
  background: #fef5f5;
}

.bg-cream {
  background: #fff6ea;
}

.bg-lavender {
  background: #e7e5f4;
}

.bg-sky {
  background: #eff9ff;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.card-content a {
  font-size: 14px;
  font-weight: 500;
  color: #6b5cff;
}

.search-autocomplete {
  position: relative;
  flex: 1;
}

.search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  max-height: 280px;
  overflow-y: auto;
  display: none;
  z-index: 50;
  max-width: 900px;
  margin: 0px auto;
  color: #333;
}

.search-suggestions li {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  list-style: none;
  text-align: left;
}

.search-suggestions li:hover {
  background: #f4f3ff;
}

.search-suggestions small {
  color: #777;
  font-size: 12px;
  margin-left: 6px;
}

.market-section {
  background: #f7f8fc;
  padding: 80px 0;
}

.market-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.market-title .spark {
  color: #ff5a5f;
}

.market-subtitle {
  color: #555;
  max-width: 700px;
  margin-bottom: 40px;
}

.market-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.market-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.market-card {
  min-width: 300px;
  cursor: pointer;
}

.market-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.market-card h4 {
  margin-top: 12px;
}

.market-card.active img {
  outline: 3px solid #6b5cff;
}

.market-arrow {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.market-prices h3 {
  margin-bottom: 16px;
}

.price-tabs {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.price-tabs button {
  padding: 8px 18px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.price-tabs button.active {
  background: #6b5cff;
  color: #fff;
}

.price-content {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.price-card h4 {
  margin-bottom: 16px;
}

.price-card ul {
  list-style: none;
  padding: 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.price-map {
  position: relative;
}

.price-map img {
  width: 100%;
  border-radius: 16px;
}

.map-link {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.search-type-tabs {
  display: inline-flex;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  margin-bottom: 16px;
}

.type-tab {
  border: none;
  background: transparent;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  color: #444;
}

.type-tab.active {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  font-weight: 600;
  color: var(--pm-primary);
}

.project-card-bg {
  position: relative;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
  cursor: pointer;
}

.project-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .15) 20%,
      rgba(0, 0, 0, .85) 100%);
}

.card-top {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-pill {
  background: rgba(0, 0, 0, .65);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  width: 100%;
  color: #fff;
}

.developer-badge {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
}

.project-title {
  font-size: 22px;
  margin: 6px 0;
}

.project-location {
  font-size: 14px;
  opacity: .9;
}

.project-meta {
  display: flex;
  gap: 14px;
  font-size: 14px;
  margin: 10px 0;
}

.price-block {
  margin: 12px 0;
}

.price-block strong {
  font-size: 22px;
}

.payment-pill {
  background: #fff;
  color: #5b4bdb;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .container,
  .container-wide {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }


  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    margin-right: 0;
  }

  .hero {
    padding: 90px 0 110px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .search-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-bar {
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
  }

  .search-btn {
    width: 100%;
  }

  #filterForm .search-filter-autocomplete {
    min-width: 0 !important;
    width: 100%;
  }

  #listingFilterForm>div:first-child {
    min-width: 0 !important;
    width: 100%;
  }

  #filterForm select,
  #filterForm button,
  #listingFilterForm select,
  #listingFilterForm button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .info-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .info-right {
    margin-top: 16px;
  }

  .mortgage-form {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .supercharge-card {
    flex-direction: column;
  }

  .card-illustration {
    width: 100%;
    min-width: 100%;
    padding: 20px 0;
  }
}

.listing-hero img {
  width: 50%;
  border-radius: 10px;
  margin: 0px auto 24px;
  display: block
}

.listing-tags {
  position: absolute;
  top: 16px;
  left: 16px;
}

.tag {
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 6px;
}

.tag.secondary {
  background: #555;
}

.listing-top {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
}

.listing-cta {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
}

.listing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.listing-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.listing-gallery img {
  width: 100%;
  border-radius: 8px;
}


/* ===== IMAGE SLIDER ===== */
.image-slider {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.slider-main {
  flex: 1;
}

.slider-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
}

.slider-thumbs img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
}

.slider-thumbs img.active {
  opacity: 1;
  border: 2px solid #3f8cff;
}

.slider-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== LAYOUT ===== */
.listing-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
}

.sticky-card {
  position: sticky;
  top: 110px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

/* ===== KEY INFO ===== */
.key-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.key-info-grid span {
  font-size: 13px;
  color: #777;
}

/* ===== TIMELINE ===== */
.timeline-box {
  background: #f7f8fb;
  border-radius: 12px;
  padding: 25px;
}

.timeline-item {
  display: flex;
  gap: 15px;
  position: relative;
  padding-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: #ddd;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.timeline-item.active .dot {
  background: #3f8cff;
  border-color: #3f8cff;
}

.key-info-grid .label {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lead-box {
  background: #fff;
  padding: 20px;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  position: relative;
}

.lead-box button {
  width: 100%;
  padding: 6px;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.lead-close {
  position: absolute;
  top: 16px;
  right: 10px;
  border: none;
  font-size: 22px;
  cursor: pointer;
  width: 33px !important;
  padding: 0 !important;
  height: 33px !important;
}

.lead-btn {
  width: 120px;
  padding: 14px;
  background: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.lead-box label {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin: 10px 0 4px;
}

.lead-box input,
.lead-box select,
.lead-box textarea {
  width: 100%;
  padding: 9px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
}

.lead-field-error {
  min-height: 16px;
  margin-top: 4px;
  font-size: 12px;
  color: #dc2626;
}

.lead-form-message {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.lead-form-message.is-success {
  display: block;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #86efac;
}

.lead-form-message.is-error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.btn-primary {
  margin-top: 16px;
  width: 100%;
  background: #0a5c5e;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.listing-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  font-size: 14px;
}

.breadcrumb a {
  color: #5a5a5a;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 6px;
  color: #999;
}

.breadcrumb .current {
  color: #111;
  font-weight: 500;
}

.listing-actions button {
  background: none;
  border: none;
  margin-left: 12px;
  cursor: pointer;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 70vh;
  margin-bottom: 20px;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.lightbox-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
}

.lightbox-thumbs img:hover {
  opacity: 1;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-main img {
    height: 280px;
  }

  .gallery-thumb img {
    height: 140px;
  }
}

.image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  display: none;
  flex-direction: column;
  justify-content: center;
  z-index: 9999;
}

.viewer-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
}

.viewer-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.viewer-main img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
}

.viewer-main .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
}

.viewer-main .nav.left {
  left: 30px;
}

.viewer-main .nav.right {
  right: 30px;
}

.viewer-counter {
  text-align: center;
  color: #ccc;
  font-size: 14px;
  margin: 10px 0;
}

.viewer-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 20px 20px;
  overflow-x: auto;
  justify-content: center;
}

.viewer-thumbs img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  cursor: pointer;
  opacity: .5;
  border-radius: 4px;
  border: 2px solid transparent;
}

.viewer-thumbs img.active {
  opacity: 1;
  border-color: #fff;
}

.agent-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.agent-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.agent-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-name {
  display: block;
  font-size: 15px;
}

.agent-rating {
  font-size: 13px;
  color: #f4b400;
}

.agent-rating span {
  color: #777;
  font-size: 12px;
}

.agent-response {
  font-size: 12px;
  color: #666;
}

.agent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-call {
  background: #f44336;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.price-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

/* LEFT */
.price {
  font-size: 30px;
  font-weight: 700;
}

.price span {
  font-size: 18px;
  font-weight: 500;
  color: #444;
}

.upfront-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #6a5acd;
  text-decoration: none;
}

/* RIGHT */
.price-features {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #333;
  font-size: 14px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.divider {
  height: 20px;
  width: 1px;
  background: #ddd;
}

@media (max-width: 768px) {
  .price-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .price-features {
    flex-wrap: wrap;
    gap: 10px;
  }

  .divider {
    display: none;
  }
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

/* SEARCH INPUT */
.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 6px 12px;
  min-width: 280px;
}

.search-input-wrapper input {
  border: none;
  background: none;
  outline: none;
  padding: 6px 8px;
  width: 100%;
  font-size: 14px;
}

.search-icon {
  font-size: 14px;
  color: #666;
}

.clear-btn {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}

/* FILTERS */
.filter-select,
.filter-more {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.filter-more {
  background: #f9f9f9;
}

/* FIND BUTTON */
.btn-find {
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  cursor: pointer;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 16px;
}

.property-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon {
  font-size: 18px;
  color: #666;
  margin-top: 2px;
}

.label {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .property-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.features {
  max-width: 900px;
  padding: 24px 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.features-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  font-size: 16px;
  color: #333;
  padding: 6px 0;
  font-weight: 500;
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.regulatory-box {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #d7d8df;
}

.regulatory-title {
  margin: 0 0 20px;
  color: #1f2435;
}

.regulatory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 30px;
  align-items: start;
}

.regulatory-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.reg-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.reg-label {
  color: #2a3243;
  font-size: 16px;
  line-height: 1.35;
}

.reg-label i {
  font-size: 18px;
  color: #5b6073;
  margin-left: 6px;
}

.reg-info-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: 6px;
  color: #5b6073;
  cursor: pointer;
}

.reg-info-trigger i {
  font-size: 18px;
}

.reg-info-trigger:hover,
.reg-info-trigger:focus {
  color: #39406d;
}

.reg-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.reg-info-tooltip {
  position: absolute;
  top: 110%;
  left: -10px;
  z-index: 20;
  width: 270px;
  background: #fff;
  color: #2a3243;
  border: 1px solid #d9deec;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(20, 28, 45, 0.14);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}

.reg-info-wrap:hover .reg-info-tooltip,
.reg-info-wrap:focus-within .reg-info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.permit-label .reg-info-tooltip {
  top: auto;
  bottom: 120%;
  left: auto;
  right: -10px;
}

.reg-value {
  color: #1f2435;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.regulatory-permit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reg-qr {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 12px;
}

.permit-label {
  font-size: 15px;
  color: #2a3243;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.permit-label i {
  color: #5b6073;
  font-size: 14px;
}

.permit-number {
  display: inline-block;
  background: #d8d8d8;
  padding: 11px 18px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 500;
  color: #1f2435;
}

@media (max-width: 900px) {
  .regulatory-title {
    font-size: 30px;
  }

  .regulatory-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reg-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .reg-label {
    font-size: 18px;
  }

  .reg-value {
    font-size: 22px;
  }

  .regulatory-permit {
    align-items: flex-start;
  }

  .reg-info-tooltip {
    width: min(270px, calc(100vw - 40px));
  }
}

.loader-wrapper {
  text-align: center;
  padding: 60px 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #1e90ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.search-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 18px;
}

.search-results-title {
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 1.2;
  color: #1f2435;
}

.search-results-count {
  margin: 0;
  font-size: 15px;
  color: #6a7083;
}

.search-results-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.search-results-sort label {
  font-size: 17px;
  color: #2a3243;
}

.search-results-sort select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 42px;
  min-width: 130px;
  border: 1px solid #cfd3e0;
  border-radius: 10px;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23697086' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding: 0 34px 0 12px;
  font-size: 17px;
  color: #2a3243;
  cursor: pointer;
}

.search-filter-autocomplete {
  position: relative;
  min-width: 260px;
  flex: 1;
  overflow: visible;
  z-index: 90;
}

.search-filter-autocomplete input {
  width: 100%;
}

.search-filter-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dfe3ef;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(17, 23, 41, 0.15);
  max-height: 280px;
  overflow-y: auto;
  z-index: 80;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  display: none;
}

.search-filter-suggestions li {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.35;
  color: #1f2435;
  cursor: pointer;
}

.search-filter-suggestions li:hover {
  background: #f2f4fb;
}

.property-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d9d9e3;
  cursor: pointer;
  transition: 0.2s ease;
  margin-bottom: 20px;
}

.property-card:hover {
  box-shadow: 0 8px 24px rgba(22, 28, 45, 0.1);
  border-color: #c9c9d8;
}

.property-card-main {
  display: flex;
}

.property-card-media {
  position: relative;
  width: 320px;
  min-height: 238px;
  flex-shrink: 0;
}

.property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.property-card-body {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}

.property-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.result-type {
  font-size: 14px;
  color: #687089;
  margin-bottom: 6px;
}

.result-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-price {
  margin: 0;
  font-size: 35px;
  line-height: 1.2;
  color: #1f2435;
}

.result-demand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dff4ff;
  color: #2076ac;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
}

.result-title {
  margin: 10px 0 12px;
  font-size: 17px;
  line-height: 1.35;
  color: #2e3447;
}

.result-location {
  margin: 0 0 14px;
  color: #6a7083;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.result-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  color: #2d3245;
}

.result-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.property-card-bottom {
  border-top: 1px solid #e4e6ef;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fcfcff;
}

.result-listing-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4b5166;
  font-size: 14px;
}

.result-listing-meta img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #d8dbea;
}

.listing-agent-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.listing-agent-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #2b3247;
}

.listing-agent-listed {
  font-size: 13px;
  line-height: 1.2;
  color: #60687f;
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.result-action-btn,
.result-icon-btn {
  border: 1px solid var(--pm-primary);
  border-radius: 12px;
  background: #fff;
  color: var(--pm-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.result-icon-btn {
  width: 38px;
  padding: 0;
}

.result-action-btn:hover,
.result-action-btn:focus,
.result-icon-btn:hover,
.result-icon-btn:focus {
  background: #f1f0ff;
  color: #000;
  border-color: #000;
}

.result-action-btn i,
.result-icon-btn i {
  font-size: 14px;
}

.provided-by-section {
  margin-top: 32px;
}

.provided-by-title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  color: #1f2937;
}

.provided-by-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.provided-by-card {
  background: #f1f0f9;
  border-radius: 12px;
  padding: 28px 22px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.agency-card {
  align-items: center;
  justify-content: space-between;
}

.agency-logo-wrap {
  width: 170px;
  height: 88px;
  border-radius: 6px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.agency-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.person-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.person-avatar {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  object-fit: cover;
  background: #cbd5e1;
}

.person-name {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #1e293b;
}

.person-rating-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.person-rating-number {
  font-size: 16px;
  color: #0f172a;
  font-weight: 700;
}

.person-stars {
  color: #f3c348;
  font-size: 18px;
  display: inline-flex;
  gap: 3px;
}

.person-ratings-count {
  color: #4c44a8;
  font-size: 16px;
  font-weight: 700;
}

.person-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.person-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 17px;
  color: #334155;
}

.person-meta-row strong {
  color: #0f172a;
  font-weight: 700;
}

.provided-by-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1.5px solid #5a4bdc;
  border-radius: 10px;
  color: #4c44a8;
  background: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.provided-by-btn:hover {
  background: #f8f7ff;
}

/* Responsive */
@media (max-width: 900px) {
  .search-results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .provided-by-grid {
    grid-template-columns: 1fr;
  }

  .provided-by-title {
    font-size: 32px;
  }

  .person-name {
    font-size: 28px;
  }

  .person-meta-row {
    font-size: 15px;
  }

  .search-results-title {
    font-size: 28px;
  }

  .property-card-main {
    flex-direction: column;
  }

  .property-card-media {
    width: 100%;
    height: 220px;
  }

  .result-price {
    font-size: 30px;
  }

  .result-demand {
    font-size: 12px;
    padding: 4px 9px;
  }

  .property-card-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .result-actions {
    justify-content: flex-start;
  }

  .result-price {
    font-size: 24px;
  }

  .result-title {
    font-size: 20px;
  }
}

/* Wrapper */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #e5e5e5;
  overflow: visible;
}

/* Remove default select styling */
.filter-bar select,
.filter-bar input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ddd;
  background: #f5f5f7;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
  outline: none;
}

/* Search input */
.filter-bar input[type="text"] {
  min-width: 220px;
  background: #f9f9fb;
}

/* Dropdown arrow */
.filter-bar select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 35px;
}

/* Hover */
.filter-bar select:hover,
.filter-bar input:hover {
  background: #ececf3;
}

/* Focus = Active Purple */
.filter-bar select:focus,
.filter-bar input:focus {
  background: #f3f0ff;
  border-color: #6c5ce7;
  color: #5a4bdc;
}

/* Clear button */
.filter-bar button {
  background: #f5f5f7;
  border: 1px solid #ddd;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-bar button:hover {
  background: #ececf3;
}

/* Responsive */
@media (max-width: 768px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .filter-bar input {
    min-width: 180px;
  }
}

.desc-toggle {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 18px;
  border: 1px solid #6c4ed4;
  border-radius: 8px;
  background: #fff;
  color: #3a2770;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.desc-toggle:hover,
.desc-toggle:focus {
  background: #f3f0fa;
  color: #6c4ed4;
  border-color: #3a2770;
}

.whatsapp-btn {
  display: block;
  background: #25d366;
  color: #fff;
  border: none;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background: #1ebe5d;
}

.call-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f44336;
  color: #fff;
  border: none;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.capitalize {
  text-transform: capitalize;
}

#bottom-footer-text img{
  width: 30px;
  height: 30px;
  display: inline-block;
}
