/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

/* Hero */
.properties-hero {
  position: relative;
  height: 100vh;
  background: url("../images/properties-banner.jpg") center/cover no-repeat;
}

.properties-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.properties-hero h1 {
  position: relative;
  font-size: 3rem;
  z-index: 2;
  font-family: "Poppins", sans-serif;
}

/* Filter Section */
#property-filters {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#property-filters h2 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.5rem;
  color: #000;
}

.filter-btn {
  min-width: 130px;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px !important;
}

.filter-btn.btn-dark {
  background-color: #000;
  border-color: #000;
}

.filter-btn.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}

/* Property Cards */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem;
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.card-text {
  font-size: 0.9rem;
}

/* Contact Buttons in Cards */
.card .btn {
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.card .btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}
.card .btn-dark {
  background-color: #25d366;
  border: none;
}
.card .btn-dark:hover {
  background-color: #1da851;
}

/* Responsive */
@media (max-width: 768px) {
  #property-filters {
    padding: 1.5rem;
  }

  .filter-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .card img {
    height: 300px;
  }
}
