
/* Hide only AI chat window, keep chat-style button */
.academy-chat-window,
.chat-window,
.support-chat-window,
.ai-chat-window,
#academy-chat-window,
#chat-window,
#support-chat-window,
.modal-chat,
.chat-modal {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Same chat icon style, but WhatsApp click */
.academy-whatsapp-direct {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7c2cff, #5f19d6);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(95, 25, 214, .30);
}

.academy-whatsapp-direct svg {
  width: 30px;
  height: 30px;
  display: block;
}

.academy-whatsapp-direct:hover {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .academy-whatsapp-direct {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }
}


/* FINAL: make WhatsApp support button circular like old chat icon */
.academy-whatsapp-direct {
  width: 62px !important;
  height: 62px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #7c2cff, #5f19d6) !important;
  color: #fff !important;
  padding: 0 !important;
}

@media (max-width: 640px) {
  .academy-whatsapp-direct {
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
  }
}
