.estate-section.white{
  background:#f7f8fa;
  padding:80px 20px;
  font-family:Poppins, sans-serif;
}

.white .estate-title{
  text-align:center;
  font-size:42px;
  color:#222;
  margin-bottom:50px;
}

.white .estate-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.white .estate-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s ease;
}

.white .estate-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.white .estate-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.white .estate-info{
  padding:18px;
  color:#222;
}

.white .estate-info h3{
  font-size:20px;
  margin-bottom:6px;
}

.white .sub{
  font-size:14px;
  color:#666;
  margin-bottom:6px;
}

.white .location{
  font-size:14px;
  color:#888;
}

.white .bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:16px;
}

.white .price{
  font-size:18px;
  font-weight:600;
  color:#1a73e8;
}

.white .btn{
  background:#1a73e8;
  color:#fff;
  padding:8px 16px;
  border-radius:20px;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.white .btn:hover{
  background:#000;
}
