/* Hero */
.tour-hero {
  background: url('/asset/img/travel.png') center/cover no-repeat;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.tour-hero h1 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  z-index: 2;
  max-width: 90%;
}

/* Search Box */
.tour-search-box {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  background: #fff!important;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  flex-wrap: wrap;
}

/* Inputs and select */
.tour-search-box select,
.tour-search-box input {
  padding: 0 12px;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  min-width: 180px;
}

/* Button */
.btn-search {
  background: #FF7043!important;
  border: 1px solid #ccc;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  height: 48px;
  transition: background 0.2s ease;
}

.btn-search:hover {
  background: #f1f1f1;
  color: #000;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .tour-hero {
    height: 500px;
  }

  .tour-hero h1 {
    font-size: 36px;
  }

  .tour-search-box {
    gap: 10px;
    padding: 12px 16px;
  }

  .tour-search-box select,
  .tour-search-box input {
    min-width: 150px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tour-hero {
    height: 420px;
    padding: 0 15px;
  }

  .tour-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .tour-search-box {
    flex-direction: column;
    align-items: stretch;
    bottom: -50px;
    width: 90%;
  }

  .tour-search-box select,
  .tour-search-box input,
  .btn-search {
    width: 100%;
    min-width: auto;
  }

  .btn-search {
    margin-top: 10px;
  }
}

/* Extra Small (HP kecil) */
@media (max-width: 480px) {
  .tour-hero {
    height: 360px;
  }

  .tour-hero h1 {
    font-size: 22px;
  }

  .tour-search-box {
    padding: 10px 12px;
  }

  .tour-search-box select,
  .tour-search-box input {
    font-size: 13px;
    height: 42px;
  }

  .btn-search {
    height: 42px;
    font-size: 14px;
    padding: 0 18px;
  }
}
