/* Hero */
.hero {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 0 0 30px 30px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: white;
  color: #0077b6;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #023e8a;
  color: white;
}

/* Search Section */
.search-section {
  margin: 2rem auto;
  text-align: center;
}
.search-box input {
  width: 90%;
  max-width: 600px;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #0077b6;
  font-size: 1.1rem;
  outline: none;
  transition: 0.3s ease;
}
.search-box input:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 8px rgba(0,183,255,0.3);
}

/* Cities */
.cities {
  padding: 2rem;
}
.cities h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0077b6;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.city-card {
  background: white;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  text-align: center;
  transition: 0.2s ease;
}
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.city-card a {
  text-decoration: none;
  color: #0077b6;
  font-weight: bold;
  line-height: 1.3;
  word-break: break-word;
}

/* SEO text */
.seo-text {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  margin: 2rem auto;
  text-align: center;
  max-width: 900px;
}
.seo-text h2 {
  color: #0077b6;
  margin-bottom: 1rem;
}
