.floating-chat {
  position: fixed;
  bottom: 35%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Each Button */
.chat-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icon */
.chat-btn img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  margin-left: 8px;
}

/* Label */
.chat-label {
  padding: 4px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-family: montserrat;
  font-weight: bold;
  white-space: nowrap;
  animation: pulse 1.5s infinite;
}

/* WhatsApp */
.whatsapp .chat-label {
  background: #25D366;
  color: #fff;
}

/* Telegram */
.telegram .chat-label {
  background: #0088cc;
  color: #fff;
}

/* Hover */
.chat-btn:hover {
  transform: translateX(-5px);
}

/* Active */
.chat-btn:active .chat-label {
  filter: brightness(85%);
  transform: scale(0.95);
  transition: all 0.1s ease;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 1.08; }
  100% { transform: scale(1); opacity: 1; }
}
