#bookingSearchStep {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

#bookingSearchStep .search-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0.75rem;
}

@media (min-width: 640px) {
  #bookingSearchStep .search-container {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  #bookingSearchStep .search-container {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1280px) {
  #bookingSearchStep .search-container {
    padding: 3rem 3rem;
  }
}

#bookingSearchStep h2 {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#bookingSearchForm {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  #bookingSearchForm {
    padding: 1.25rem;
    border-radius: 1rem;
  }
}

#bookingSearchForm .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  #bookingSearchForm .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

#bookingSearchForm .input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

#bookingSearchForm .input-group > .relative {
  position: relative;
  margin: 0;
  padding: 0;
}

#bookingSearchForm .input-group > div[style*="display: flex"] {
  flex-shrink: 0;
}

#bookingSearchForm .input-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.75rem;
  letter-spacing: 0.025em;
}

#bookingSearchForm .input-group label i {
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}

#bookingSearchForm input,
#bookingSearchForm select {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem 0 3rem;
  font-size: 1rem;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.8);
  border: 1.5px solid rgba(100, 116, 139, 0.4);
  border-radius: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  box-sizing: border-box;
  display: block;
}

#bookingSearchForm select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
}

#bookingSearchForm select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(30, 41, 59, 0.4);
}

#bookingSearchForm input[type="datetime-local"] {
  padding-right: 1rem;
}

#bookingSearchForm input:focus,
#bookingSearchForm select:focus {
  outline: none;
  border-color: #22d3ee;
  background: rgba(30, 41, 59, 1);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1),
              0 10px 25px -5px rgba(34, 211, 238, 0.2);
}

@media (min-width: 768px) {
  #bookingSearchForm input:focus,
  #bookingSearchForm select:focus {
    transform: translateY(-2px);
  }
}

#bookingSearchForm .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.125rem;
  line-height: 1;
  z-index: 10;
}

#bookingSearchForm .select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgb(148, 163, 184);
  line-height: 1;
  font-size: 0.75rem;
}

#bookingSearchForm input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  accent-color: #06b6d4;
  border: 1px solid #475569;
  background: transparent;
}

#bookingSearchForm .age-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  #bookingSearchForm .age-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

#bookingSearchForm .age-btn {
  height: 3.25rem;
  padding: 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgb(148, 163, 184);
  background: rgba(51, 65, 85, 0.5);
  border: 1.5px solid rgba(100, 116, 139, 0.3);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bookingSearchForm .age-btn:hover {
  border-color: #22d3ee;
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.1);
  transform: translateY(-2px);
}

#bookingSearchForm .age-btn.active {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-color: #22d3ee;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4);
}

#bookingSearchForm .search-btn {
  width: 100%;
  height: 3.75rem;
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

#bookingSearchForm .search-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.5);
}

#bookingSearchForm .search-btn:active {
  transform: translateY(-1px) scale(1.01);
}

#bookingVehicleStep {
  padding: 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

#bookingVehicleStep .vehicle-grid,
#vehicleCardsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 0;
  width: 100%;
}

@media (max-width: 640px) {
  #bookingVehicleStep .vehicle-grid,
  #vehicleCardsContainer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  #bookingVehicleStep .vehicle-grid,
  #vehicleCardsContainer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  #bookingVehicleStep .vehicle-grid,
  #vehicleCardsContainer {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1281px) and (max-width: 1536px) {
  #bookingVehicleStep .vehicle-grid,
  #vehicleCardsContainer {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1537px) and (max-width: 1920px) {
  #bookingVehicleStep .vehicle-grid,
  #vehicleCardsContainer {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1921px) {
  #bookingVehicleStep .vehicle-grid,
  #vehicleCardsContainer {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

.booking-vehicle-card {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.85) 100%);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.booking-vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.15);
}

.booking-vehicle-card .card-image {
  position: relative;
  height: 11rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.booking-vehicle-card .card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, transparent 50%, rgba(59, 130, 246, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-vehicle-card:hover .card-image::before {
  opacity: 1;
}

.booking-vehicle-card .card-image i {
  font-size: 4rem;
  color: rgba(34, 211, 238, 0.3);
  transition: all 0.3s ease;
}

.booking-vehicle-card:hover .card-image i {
  color: rgba(34, 211, 238, 0.5);
  transform: scale(1.05);
}

.booking-vehicle-card .card-content {
  padding: 1.25rem;
}

.booking-vehicle-card .card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.375rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.booking-vehicle-card:hover .card-title {
  color: #22d3ee;
}

.booking-vehicle-card .card-description {
  font-size: 0.75rem;
  color: rgb(148, 163, 184);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.booking-vehicle-card .card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.booking-vehicle-card .spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  border-radius: 0.5rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.booking-vehicle-card .spec-badge i {
  font-size: 0.75rem;
}

.booking-vehicle-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.booking-vehicle-card .price-tag {
  display: flex;
  flex-direction: column;
}

.booking-vehicle-card .price-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: #22d3ee;
}

.booking-vehicle-card .price-label {
  font-size: 0.75rem;
  color: rgb(148, 163, 184);
  margin-top: 0.125rem;
}

.booking-vehicle-card .select-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

.booking-vehicle-card .select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.5);
}

#bookingVehicleStep .filters-sidebar {
  position: sticky;
  top: 8rem;
  max-width: 300px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  #bookingVehicleStep .filters-sidebar {
    position: static;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.filter-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.filter-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-option:hover {
  padding-left: 0.5rem;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.filter-option label {
  flex: 1;
  font-size: 0.9375rem;
  color: rgb(203, 213, 225);
  cursor: pointer;
  margin: 0;
}

.filter-option:hover label {
  color: #22d3ee;
}

#bookingExtrasStep,
#bookingCheckoutStep {
}

.addon-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.8) 100%);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.addon-card:hover {
  border-color: #22d3ee;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

@media (max-width: 640px) {
  #bookingSearchStep h2 {
    font-size: 2rem;
  }
  
  .booking-vehicle-card .card-title {
    font-size: 1.25rem;
  }
  
  .booking-vehicle-card .price-amount {
    font-size: 1.5rem;
  }
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.progress-step-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  background: rgba(51, 65, 85, 0.5);
  border: 2px solid rgba(100, 116, 139, 0.3);
  color: rgb(148, 163, 184);
  transition: all 0.3s ease;
}

.progress-step-circle.active {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-color: #22d3ee;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.progress-step-circle.completed {
  background: rgba(34, 211, 238, 0.2);
  border-color: #22d3ee;
  color: #22d3ee;
}

.progress-line {
  width: 3rem;
  height: 2px;
  background: rgba(100, 116, 139, 0.3);
}

.progress-line.active {
  background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
}

@media (max-width: 640px) {
  .progress-step-circle {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
  
  .progress-line {
    width: 1.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step {
  animation: fadeInUp 0.5s ease-out;
}

.booking-vehicle-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.booking-vehicle-card:nth-child(1) { animation-delay: 0.1s; }
.booking-vehicle-card:nth-child(2) { animation-delay: 0.2s; }
.booking-vehicle-card:nth-child(3) { animation-delay: 0.3s; }
.booking-vehicle-card:nth-child(4) { animation-delay: 0.4s; }
.booking-vehicle-card:nth-child(5) { animation-delay: 0.5s; }
.booking-vehicle-card:nth-child(6) { animation-delay: 0.6s; }
