
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#f0fdf4;
  color:#1e293b;
}

.header{
  background:white;
  border-bottom:1px solid #d1fae5;
  padding:18px;
  position:sticky;
  top:0;
  z-index:100;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#059669;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:bold;
}

.logo h1{
  color:#047857;
  font-size:28px;
}

.logo p{
  color:#64748b;
  font-size:13px;
}

.hero{
  padding:40px 20px;
}

.hero-box{
  max-width:900px;
  margin:auto;
  background:white;
  padding:35px;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.badge{
  display:inline-block;
  background:#d1fae5;
  color:#047857;
  padding:8px 14px;
  border-radius:30px;
  font-size:14px;
}

.hero h2{
  margin-top:20px;
  font-size:48px;
}

.hero p{
  margin-top:16px;
  color:#475569;
  line-height:1.6;
  font-size:18px;
}

.search{
  margin-top:25px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.search input{
  height:60px;
  border-radius:18px;
  border:1px solid #cbd5e1;
  padding:0 18px;
  font-size:17px;
}

.search button{
  height:60px;
  border:none;
  border-radius:18px;
  background:#059669;
  color:white;
  font-size:17px;
  font-weight:bold;
  cursor:pointer;
}

.quick{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.quick button{
  border:none;
  background:#d1fae5;
  color:#047857;
  border-radius:30px;
  padding:10px 16px;
  cursor:pointer;
}

.results-section{
  max-width:1100px;
  margin:auto;
  padding:10px 20px 50px;
}

.results-section h3{
  font-size:34px;
  margin-bottom:25px;
}

.results{
  display:grid;
  gap:20px;
}

.card{
  background:white;
  border-radius:28px;
  padding:25px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.card h4{
  font-size:28px;
  color:#0f172a;
}

.meta{
  margin-top:20px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.meta-box{
  background:#f8fafc;
  padding:16px;
  border-radius:18px;
}

.meta-box span{
  display:block;
  color:#64748b;
  font-size:14px;
  margin-bottom:5px;
}

.map-btn{
  display:inline-block;
  margin-top:20px;
  background:#0f172a;
  color:white;
  text-decoration:none;
  padding:14px 20px;
  border-radius:16px;
  font-weight:bold;
}

.empty{
  background:white;
  padding:25px;
  border-radius:24px;
  text-align:center;
  color:#64748b;
}

.footer{
  background:#059669;
  color:white;
  text-align:center;
  padding:30px;
}

@media(min-width:768px){

  .search{
    flex-direction:row;
  }

  .search input{
    flex:1;
  }

  .meta{
    grid-template-columns:repeat(2,1fr);
  }
}
