.chatbot_chat-window,
.chatbot_chat-window * {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
  z-index: 999999;
}

/* ================= CHAT TOGGLE ICON ================= */
.chatbot_toggle-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 198, 253, 0.45));
}

.chatbot_chat-toggle:hover .chatbot_toggle-icon {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* ================= FLOAT BUTTON ================= */
.chatbot_chat-toggle {
  position: fixed;
  z-index: 999999;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00C6FD, #00DB84);
  box-shadow: 0 18px 40px rgba(0, 219, 132, 0.45);
  border: 3px solid #ffffff;
}

.chatbot_badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b3b;
  color: #fff;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= CHAT WINDOW ================= */
.chatbot_chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 360px;
  max-width: 92vw;
  height: 560px;
  background: linear-gradient(180deg, #ffffff, #f4fffb);
  border-radius: 25px;
  box-shadow: 0 32px 72px rgba(0, 198, 253, 0.25);
  display: flex;
  flex-direction: column;
  animation: chatbot_slideUp .25s ease;
}

.chatbot_hidden {
  display: none !important;
}

@keyframes chatbot_slideUp {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: none; }
}

/* ================= HEADER ================= */
.chatbot_chat-header {
  height: 66px;
  padding: 0 14px;
  background: linear-gradient(135deg, #00C6FD, #00DB84);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 18px 18px 0 0;
}

.chatbot_header-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chatbot_avatar {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #00C6FD;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot_status {
  font-size: 11px;
  opacity: .9;
}

.chatbot_chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* ================= BODY ================= */
.chatbot_chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f8fffd, #eefcf7, #e6faf2);
}

/* ================= ICONS ================= */
.chatbot_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.chatbot_message {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-end;
}

.chatbot_message.chatbot_bot {
  justify-content: flex-start;
}

.chatbot_message.chatbot_user {
  justify-content: flex-end;
}

/* ================= BUBBLES ================= */
.chatbot_bubble {
  max-width: 72%;
  padding: 11px 15px;
  font-size: 13px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* BOT */
.chatbot_bot .chatbot_bubble {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(235,255,245,0.85)
  );
  border: 1px solid rgba(0, 219, 132, 0.25);
  border-radius: 18px 18px 18px 6px;
  color: #134e4a;
  box-shadow: 0 6px 20px rgba(0, 219, 132, 0.2);
}

/* USER */
.chatbot_user .chatbot_bubble {
  background: linear-gradient(135deg, #00C6FD, #00DB84);
  color: #ffffff;
  font-weight: 500;
  border-radius: 18px 18px 6px 18px;
  box-shadow: 0 10px 28px rgba(0, 219, 132, 0.45);
}

.chatbot_bubble:hover {
  transform: translateY(-1px);
}

/* ================= OPTIONS ================= */
.chatbot_options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.chatbot_option-btn {
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.9),
    rgba(230,255,245,0.75)
  );
  border: 1px solid rgba(0, 219, 132, 0.35);
  color: #047857;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot_option-btn:hover {
  background: linear-gradient(135deg, #00C6FD, #00DB84);
  color: #fff;
  transform: translateY(-1px);
}

/* ================= TYPING ================= */
.chatbot_typing {
  font-size: 11px;
  opacity: .6;
}

/* ================= HOME SCREEN ================= */
/* ================= HOME SCREEN (REFINED) ================= */

.chatbot_home-screen {
  height: 100%;
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8fffd, #eefcf7, #e6faf2);
}

/* ---------- TOP ---------- */
.chatbot_home-top {
  text-align: center;
  padding-top: 10px;
}

.chatbot_home-cta {
  margin: 18px auto 14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00C6FD, #00DB84);
  box-shadow: 0 16px 36px rgba(0, 219, 132, 0.45);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.chatbot_home-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 46px rgba(0, 219, 132, 0.55);
}

.chatbot_home-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 6px;
}

.chatbot_home-subtitle {
  font-size: 12px;
  color: #475569;
  opacity: 0.85;
  margin-top: 4px;
}

/* ---------- MIDDLE ---------- */
.chatbot_home-middle {
  flex: 1;
  margin-top: 22px;
  padding: 0 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.chatbot_home-middle-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.chatbot_home-middle-desc {
  font-size: 12px;
  line-height: 1.55;
  color: #334155;
  opacity: 0.8;
}

/* ---------- BOTTOM ---------- */
.chatbot_home-bottom {
  text-align: center;
  padding-top: 10px;
}

.chatbot_home-divider {
  width: 40px;
  height: 3px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00C6FD, #00DB84);
}

.chatbot_home-footer {
  font-size: 11.5px;
  color: #334155;
  opacity: 0.75;
}

.chatbot_home-powered {
  font-size: 10.5px;
  margin-top: 6px;
  color: #64748b;
  opacity: 0.7;
}

/* ================= HOME SERVICES ICON ROW ================= */

.chatbot_home-services {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.chatbot_service {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #334155;
  opacity: 0.85;
}

.chatbot_service-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;

  background: linear-gradient(135deg, #00C6FD, #00DB84);
  color: #fff;
  font-size: 16px;

  box-shadow: 0 8px 20px rgba(0, 219, 132, 0.45);
}

.chatbot_avatar {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chatbot_avatar img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.chatbot_inline-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 12px auto 0;
  padding: 8px 16px;

  border-radius: 999px;
  background: #ffffff;
  color: #25D366;
  border: 1px solid #25D366;

  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot_inline-whatsapp img {
  width: 16px;
  height: 16px;
  display: block;     
  object-fit: contain;
  flex-shrink: 0;
}


.chatbot_inline-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.6);
}





