.property-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.property-image {
  height: 160px; /* compact image */
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.property-card .card-body {
  padding: 12px 14px;
}

.property-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 6px;
}

.property-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.property-location {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  font-size: 0.8rem;
  padding: 10px;
  background: #f9fafb;
  border-radius: 10px;
  margin-bottom: 10px;
}

.property-features div {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #374151;
}

.property-features i {
  color: #16a34a;
  font-size: 16px; /* smaller icons */
}

.property-developer {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.property-developer span {
  color: #16a34a;
  font-weight: 500;
}

.btn-view-details {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 0;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.btn-view-details:hover {
  background: linear-gradient(90deg, #15803d, #16a34a);
}