
.bannerSearch-section {
  background: linear-gradient(180deg, #2b0a4a, #160424);
  padding: 70px 20px 90px;
  text-align: center;
  color: #fff;
}

.bannerSearch-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.underline {
  width: 90px;
  height: 4px;
  background: #ff7a00;
  margin: 0 auto 35px;
  border-radius: 10px;
}

/* Search Bar */
.search-bar {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.location-box {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 500;
}

.location-box i {
  color: #6b21a8;
}

.divider {
  width: 1px;
  height: 28px;
  background: #ddd;
  margin: 0 15px;
}

.search-input-box {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.search-input-box i {
  color: #888;
}

.search-input-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .search-bar {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .divider {
    display: none;
  }
  .bannerSearch-content h1{
      font-size: 25px;
  }
}
