/* ===== HERO SECTION ===== */
.hero-section {
  background: #f9fafb;
  border-bottom: 1px solid #eaeaea;
}
.search-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 800px;
}

/* ===== CAROUSEL ===== */
.home-carousel img {
  height: 450px;
  object-fit: cover;
}
.carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 0.5rem;
}

/* ===== FEATURED SECTIONS ===== */
.featured-section {
  background: #fdfdfd;
}
.section-title {
  font-weight: 700;
  font-size: 1.8rem;
}

/* ===== PROJECT CARDS ===== */
.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ===== PROPERTY CARDS ===== */
.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.property-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.property-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
}
.price {
  color: #4CAF50;
  font-weight: 700;
}
.location {
  color: #666;
  font-size: 0.9rem;
}
