@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #18251f; background: #f8f7f3; }
button, select { font: inherit; }
button { cursor: pointer; border: 0; }

.navbar {
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; background: rgba(248,247,243,.95); position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid #e6e4dc; backdrop-filter: blur(10px);
}
.logo { font-size: 25px; font-weight: 700; letter-spacing: -.8px; color: #173d2c; }
.logo span { color: #c48835; }
nav { display: flex; gap: 30px; }
nav a { color: #425149; text-decoration: none; font-weight: 500; }
nav a:hover { color: #b47528; }
.post-btn, .contact button {
  background: #173d2c; color: white; padding: 12px 19px; border-radius: 8px; font-weight: 600;
}
.hero {
  min-height: 590px; display: flex; align-items: center; padding: 70px 7%;
  background: linear-gradient(90deg, rgba(13,35,25,.92), rgba(13,35,25,.58), rgba(13,35,25,.12)),
  url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=85') center/cover;
}
.hero-content { max-width: 780px; color: white; }
.eyebrow { color: #bd8235; font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
h1, h2 { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(48px, 7vw, 82px); line-height: .98; letter-spacing: -2px; }
h1 span { color: #e2b66f; }
.hero-text { margin: 24px 0 30px; max-width: 600px; font-size: 18px; line-height: 1.6; color: #e9eee9; }
.search-box { background: white; padding: 10px; border-radius: 12px; display: flex; gap: 8px; max-width: 760px; box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.search-box select { flex: 1; min-width: 150px; padding: 14px; border: 0; background: #f5f5f1; border-radius: 8px; color: #34443b; }
.search-box button { background: #b8792c; color: white; padding: 0 22px; border-radius: 8px; font-weight: 700; }

.section { padding: 85px 7%; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 35px; }
h2 { font-size: clamp(34px, 4vw, 48px); color: #173d2c; }
#resultCount { color: #7b847e; font-size: 14px; }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.property-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 25px rgba(28,44,36,.07); transition: .25s; }
.property-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(28,44,36,.13); }
.property-img { height: 225px; width: 100%; object-fit: cover; display: block; }
.property-info { padding: 21px; }
.badge { display: inline-block; background: #edf4ef; color: #2d684b; padding: 5px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 11px; }
.property-info h3 { font-size: 20px; margin-bottom: 7px; color: #1e3028; }
.location { color: #7a837d; font-size: 14px; margin-bottom: 17px; }
.details { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 15px; }
.price { color: #a96822; font-weight: 700; font-size: 19px; }
.area { color: #68736d; font-size: 13px; padding-top: 3px; }

.cities-section { background: #173d2c; color: white; }
.centered { display: block; text-align: center; }
.centered h2 { color: white; }
.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 35px; }
.city-card { height: 280px; border-radius: 15px; overflow: hidden; position: relative; text-align: left; color: white; background-size: cover; background-position: center; }
.city-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(0,0,0,.8)); }
.city-card div { position: absolute; bottom: 25px; left: 25px; z-index: 1; }
.city-card span { display: block; font: 700 31px 'Playfair Display'; }
.city-card small { color: #ddd; }
.delhi { background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?auto=format&fit=crop&w=900&q=80'); }
.hyderabad { background-image: url('https://images.unsplash.com/photo-1577717903315-1691ae25ab3f?auto=format&fit=crop&w=900&q=80'); }
.bengaluru { background-image: url('https://images.unsplash.com/photo-1596176530529-78163a4f7af2?auto=format&fit=crop&w=900&q=80'); }

.stats { display: grid; grid-template-columns: repeat(4,1fr); padding: 50px 7%; background: #eee9dd; text-align: center; gap: 20px; }
.stats strong { display: block; color: #173d2c; font: 700 38px 'Playfair Display'; }
.stats span { color: #68736d; font-size: 14px; }

.contact { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.contact p:not(.eyebrow) { max-width: 600px; margin-top: 15px; color: #68736d; line-height: 1.6; }
.contact button { white-space: nowrap; }

footer { background: #102b20; color: #b8c1bb; display: flex; justify-content: space-between; padding: 28px 7%; align-items: center; font-size: 13px; }
footer .logo { color: white; }

.toast { position: fixed; right: 25px; bottom: 25px; background: #173d2c; color: white; padding: 14px 18px; border-radius: 9px; opacity: 0; transform: translateY(15px); pointer-events: none; transition: .3s; z-index: 30; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 850px) {
  nav { display: none; }
  .navbar { padding: 0 5%; }
  .hero { padding: 60px 5%; }
  .search-box, .contact { flex-direction: column; align-items: stretch; }
  .search-box select, .search-box button { width: 100%; min-height: 48px; }
  .section { padding: 65px 5%; }
  .property-grid, .city-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); padding: 40px 5%; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
