/* Global reset + clean design tokens */
* { box-sizing: border-box; }
:root {
  --primary: #FF6B35; /* brand */
  --secondary: #004E89;
  --muted: #6b7280;
  --bg: #f7fafc;
  --card: #ffffff;
  --success: #06D6A0;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(2,6,23,0.08);
}

html,body { height: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: #0f1724;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px; /* space for fixed navbar */
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg,var(--primary), #ff7a4a);
  color: #fff; border: 0; padding: 10px 18px; border-radius: 10px; font-weight: 600;
  box-shadow: 0 6px 18px rgba(255,107,53,0.12);
}
.btn-outline-primary { border: 1px solid rgba(0,0,0,0.08); color: var(--secondary); background: transparent; }
.btn { cursor: pointer; }

/* Navbar */
.navbar { background: #fff; border-bottom: 1px solid rgba(2,6,23,0.04); }
.navbar .navbar-brand img { height: 56px; }
.nav-link { color: #374151 !important; padding: 8px 12px !important; }
.nav-link:hover { color: var(--primary) !important; }

/* Cards / property */
.property-card { background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: block; transition: transform .25s ease; }
.property-card:hover { transform: translateY(-6px); }
.property-img { height: 220px; object-fit: cover; width: 100%; }
.property-details { padding: 18px; text-align: left; }
.property-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.property-location { color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; }
.price-tag { position: absolute; right: 14px; top: 14px; background: rgba(255,255,255,0.95); padding: 8px 12px; border-radius: 8px; font-weight: 700; color: var(--primary); box-shadow: 0 6px 18px rgba(2,6,23,0.06); }

/* Footer */
.main-footer { background: #0b1220; color: rgba(255,255,255,0.92); }
.main-footer a { color: rgba(255,255,255,0.85); }

/* Responsive tweaks */
@media (max-width: 767px) {
  .property-img { height: 160px; }
  .navbar { padding: 12px 0; }
}














