:root {
  --brand-primary: #0f4c3a;
  --brand-accent: #d4a537;
}

body { font-family: 'Segoe UI', system-ui, sans-serif; color: #222; }

.navbar-brand { color: var(--brand-primary) !important; font-size: 1.4rem; }
.btn-primary { background-color: var(--brand-primary); border-color: var(--brand-primary); }
.btn-primary:hover { background-color: #0b3a2c; border-color: #0b3a2c; }
.btn-outline-primary { color: var(--brand-primary); border-color: var(--brand-primary); }

.hero-slide {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content { position: relative; z-index: 2; color: #fff; }

.category-card, .property-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.category-card:hover, .property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.property-card img, .category-card img { height: 200px; object-fit: cover; width: 100%; }
.badge-status { position: absolute; top: 10px; left: 10px; }
.property-card .card-body { padding: 1rem; }
.price-tag { color: var(--brand-primary); font-weight: 700; font-size: 1.1rem; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 999;
}

.owner-locked {
  background: #f8f5ea;
  border: 1px dashed var(--brand-accent);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 576px) {
  .hero-slide { height: 340px; }
}
