/* Hero Section Styles */
.hero-section {
  position: relative;
  background-image: url("../images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  padding: 0;
  z-index: 10;
}

/* Search Form Styles */
.search-form-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  z-index: 20;
}

.tab-buttons {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  gap: 10px;
}

.tab-button {
  padding: 12px 20px;
  background-color: var(--bs-primary);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tab-button.active {
  background-color: var(--bs-success);
  color: var(--bs-primary);
}

.tab-button i {
  margin-right: 8px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.search-btn {
  background-color: var(--bs-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  width: 100%;
}

.search-btn:hover {
  background-color: var(--bs-secondary);
}

.trip-type {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.trip-type label {
  margin-right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.trip-type input {
  margin-right: 5px;
}

.hero-image-mobile {
  display: none;
  width: 100%;
  padding: 10px;
}

.hero-image-mobile img {
  width: 100%;
}

/* Responsive styles */

@media (max-width: 992px) {
  .hero-section {
    background-image: none;
  }

  .hero-image-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab-button {
    padding: 6px 10px;
  }

  .search-form-container {
    margin: 30px 10px;
  }
}

@media (max-width: 576px) {
  .icon-box {
    width: 100px;
    height: 100px;
  }

  .form-group {
    flex-wrap: nowrap !important;
  }

  .tab-button {
    font-size: 12px;
  }
}
