/* Tropical Car Rental Search Section Styles */
.search-card-tropical {
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(40, 167, 69, 0.10), 0 1.5px 8px rgba(28,30,50,0.09);
  backdrop-filter: blur(2px);
  border: none;
  opacity: 0;
  transform: translateY(40px);
  animation: tropicalCardFadeUp 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
@keyframes tropicalCardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-card-tropical .row > div {
  opacity: 0;
  transform: translateY(32px);
  animation: tropicalFieldFadeUp 0.85s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.search-card-tropical .row > div:nth-child(1) { animation-delay: 0.4s; }
.search-card-tropical .row > div:nth-child(2) { animation-delay: 0.55s; }
.search-card-tropical .row > div:nth-child(3) { animation-delay: 0.7s; }
.search-card-tropical .row > div:nth-child(4) { animation-delay: 0.85s; }
.search-card-tropical .row > div:nth-child(5) { animation-delay: 1s; }
@keyframes tropicalFieldFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-tropical {
  color: #1C7C54;
  letter-spacing: 0.5px;
}
.tropical-field {
  border-radius: 16px;
  border: 1.5px solid #28a745;
  background: #f8fff8;
  color: #1C1E32;
  font-size: 1.12rem;
  padding: 0.95rem 1.25rem;
  height: 54px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.03);
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  margin-bottom: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
}
.tropical-field:focus {
  border-color: #1C7C54;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.14);
  background: #f0fff0;
}
.tropical-field:hover {
  border-color: #1C7C54;
}
/* Remove default arrow for input[type='text'] in some browsers */
input.tropical-field::-webkit-outer-spin-button,
input.tropical-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.tropical-field[type='text'] {
  -moz-appearance: textfield;
}
/* Label spacing */
.search-card-tropical .form-label {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}
/* Button alignment fix */
.search-card-tropical .btn-tropical-search {
  height: 54px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-top: 0;
}
/* Responsive tweaks */
@media (max-width: 991.98px) {
  .search-card-tropical {
    padding: 1.5rem 0.7rem 1.7rem 0.7rem;
  }
  .tropical-field {
    font-size: 1rem;
    padding: 0.7rem 0.9rem;
    height: 46px;
  }
  .search-card-tropical .btn-tropical-search {
    font-size: 1rem;
    height: 46px;
    min-width: 120px;
  }
}

.tropical-field:focus {
  border-color: #1C7C54;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.14);
  background: #f0fff0;
}
.btn-tropical-search {
  background: linear-gradient(90deg, #28a745 60%, #1C7C54 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.11);
  transition: background 0.2s, transform 0.18s;
}
.btn-tropical-search:hover {
  background: linear-gradient(90deg, #1C7C54 60%, #28a745 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 991.98px) {
  .search-card-tropical {
    padding: 1.5rem 0.7rem 1.7rem 0.7rem;
  }
  .tropical-field {
    font-size: 0.98rem;
    padding: 0.6rem 0.8rem;
  }
  .btn-tropical-search {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
}
