/* Mobile Booking Styles */
.hotel-booking-form-container {
  transition: all 0.3s ease;
}

/* Mobile Book Now Button */
.mobile-book-now {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.mobile-book-btn {
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-book-btn i {
  font-size: 18px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  }
}

/* Booking Modal */
.booking-modal .modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
}

.booking-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.booking-modal .modal-header {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 15px 20px;
}

.booking-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-modal .modal-title i {
  font-size: 20px;
}

.booking-modal .btn-close {
  color: white;
  opacity: 1;
  text-shadow: none;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.booking-modal .modal-body {
  padding: 20px;
}

.booking-modal .form-group {
  margin-bottom: 16px;
}

.booking-modal .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.booking-modal .form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
}

.booking-modal .form-control:focus {
  border-color: #ef9a9a;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15);
}

.booking-modal .modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 20px;
}

.booking-modal .btn-book {
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.booking-modal .btn-book:hover {
  background: #b71c1c;
}

.booking-modal .counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.booking-modal .counter-item {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.booking-modal .counter-sublabel {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.booking-modal .counter-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-modal .counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.booking-modal .counter-btn:hover {
  background: #eee;
}

.booking-modal .counter-value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hotel-booking-form-container {
    display: none !important;
  }
  
  .mobile-book-now {
    display: block;
  }
}
