html {
  scroll-behavior: smooth;
}

.package-filter {
  background: #f9f9f9;
  padding: 2rem 1rem;
  font-family: "Segoe UI", sans-serif;
}

.filter-box {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.filter-box h2 {
  margin-bottom: 0.25rem;
}

.filter-box p {
  margin-bottom: 1rem;
  color: #666;
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem;
}

.input-box i {
  margin-right: 0.5rem;
  color: #094154;
}

.input-box input {
  border: none;
  outline: none;
  flex: 1;
}

.input-box select {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.25rem 0;
}

.row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.row .half {
  flex: 1 1 48%;
}

.filter-dropdowns {
  margin-top: 1rem;
}

.dropdowns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.dropdowns select {
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 120px;
  flex: 1;
  

}

.search-btn {
  width: 100%;
  background: #094154;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn:hover {
  background: #0C556A;
}

.no-results-card {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.no-results-card h3 {
  margin-bottom: 10px;
  color: #d9534f;
}

.custom-trip-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.custom-trip-form input,
.custom-trip-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.custom-trip-form button {
  background-color: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.custom-trip-form button:hover {
  background-color: #0056b3;
}

.whatsapp-button {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 15px;
  background-color: #25d366;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
}

/* Package card hover effects */
.package-card {
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Search criteria tags */
.criteria-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.125rem;
}

/* Loading animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}
