/* Chat floating button + modal styles */
body {
  background: #122035;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Blur overlay */
#blurOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 1040;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #20b859;
}
.whatsapp-float .unread-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: pulse-badge 1.5s infinite;
}
@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Modal dark theme */
.modal-content {
  background: #1a1e2a;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}
.modal-header, .modal-footer {
  border-color: rgba(255,255,255,0.08);
}
.form-control.bg-dark {
  background-color: #0f192a !important;
}