/* AI Booking Service - Floating Button */
.ai-booking-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998; /* Just below chatbot which is 9999 */
  animation: fadeInLeft 0.5s ease-in-out;
}

.ai-booking-btn {
  display: flex;
  align-items: center;
  gap: 0px;
  background: linear-gradient(135deg, #00CFF4 0%, #009FE5 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 207, 244, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.ai-booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 207, 244, 0.4);
  background: linear-gradient(135deg, #00e4ff 0%, #00b8d4 100%);
}

.ai-booking-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 207, 244, 0.3);
}

.ai-booking-icon {
  font-size: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.ai-booking-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.ai-booking-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-booking-number {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .ai-booking-float {
    bottom: 100px; /* Higher on mobile to avoid chat button */
    left: 20px;
  }

  .ai-booking-btn {
    padding: 12px 16px;
    gap: 10px;
  }

  .ai-booking-icon {
    font-size: 18px;
  }

  .ai-booking-label {
    font-size: 10px;
  }

  .ai-booking-number {
    font-size: 14px;
  }
}

/* Alternative compact version for smaller screens */
@media (max-width: 480px) {
  .ai-booking-btn {
    padding: 10px 16px;
  }

  .ai-booking-text {
    display: flex;
  }
}
