/* Booking Modal Styling */
#bookingModal .modal-content {
  background: #1a1a1a !important;
  border-radius: 8px;
}

#bookingModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}

#bookingModal .modal-body {
  padding: 2rem !important;
}

#bookingModal .subtitle {
  color: #C41E3A;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

#bookingModal .form-control,
#bookingModal .form-select,
#bookingModal select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#bookingModal .form-control:focus,
#bookingModal .form-select:focus,
#bookingModal select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #C41E3A;
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
  color: #fff;
  outline: none;
}

#bookingModal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#bookingModal select option {
  background: #1a1a1a;
  color: #fff;
}

#bookingModal .btn-close-white {
  opacity: 0.7;
  filter: brightness(1.5);
}

#bookingModal .btn-close-white:hover {
  opacity: 1;
}

.modal-backdrop.show {
  opacity: 0.8;
}

/* Swiper fixes to prevent flickering */
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.swiper-inner {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.sw-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.whatsapp-float i {
  line-height: 60px;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  
  .whatsapp-float i {
    line-height: 50px;
  }
}
