/* =========================
   CAMCLEANS CHATBOT
   ========================= */

#camcleans-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Floating Bubble */
#chat-toggle {
  background: linear-gradient(135deg, #2f7f85, #4db6ac);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#chat-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Chat Window */
#chat-container {
  width: 380px;
  height: 520px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 15px;
  animation: fadeInUp 0.25s ease-out;
}

#chat-header {
  background: linear-gradient(135deg, #2f7f85, #4db6ac);
  color: #fff;
  padding: 14px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

#chat-close {
  cursor: pointer;
  font-size: 18px;
}

/* Chat Messages */
#chat-window {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  font-size: 14px;
  background: #f8fbfc;
}

#chat-window div {
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Input Area */
#chat-input-area {
  display: flex;
  border-top: 1px solid #eee;
  background: #fff;
}

#chat-input-area input {
  flex: 1;
  border: none;
  padding: 14px;
  font-size: 14px;
  outline: none;
}

#chat-input-area button {
  background: #2f7f85;
  color: #fff;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#chat-input-area button:hover {
  background: #256a6f;
}

/* Soft Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
