/* Global UI moved from include/header.php and include/footer.php */

.btn-close {
  filter: invert(1);
}

.btn-brand {
  background: linear-gradient(90deg, #f7d774, #e6b94c);
  border: none;
  font-weight: 600;
}

.btn-brand:hover {
  background: linear-gradient(90deg, #e6b94c, #d4a63f);
}

.captcha-box {
  background: #eef5f7;
  padding: 8px 14px;
  font-weight: bold;
  letter-spacing: 4px;
  border-radius: 6px;
}

.modal-content {
  border-radius: 12px;
}

.enquiry-logo {
  height: 50px;
}

.enquiry-close-btn {
  font-size: 22px;
  color: #000000;
  font-weight: 500;
}

.enquiry-call-btn {
  background: #2f6fed;
  border-radius: 12px;
}

.whatsapp-float {
  position: fixed;
  bottom: 120px;
  right: 10px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #fff;
}

.chatbot-toggle {
  position: fixed;
  bottom: 190px;
  right: 12px;
  width: 58px;
  height: 58px;
  background: #0b1a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chatbot-toggle span {
  font-size: 28px;
}

.chat-label {
  position: absolute;
  top: -10px;
  right: 64px;
  background: #2dd4bf;
  color: #000;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
}

.chatbot-box {
  position: fixed;
  bottom: 260px;
  right: 18px;
  width: 320px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  display: none;
  overflow: hidden;
}

.chatbot-header {
  background: #2f6fed;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-body {
  background: #f6f8fb;
  height: 230px;
  overflow-y: auto;
  padding: 12px;
}

.bot-msg,
.user-msg {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  max-width: 82%;
}

.bot-msg {
  background: #e8edf5;
  color: #1f2937;
}

.user-msg {
  background: #2f6fed;
  color: #fff;
  margin-left: auto;
}

.chatbot-footer {
  border-top: 1px solid #e5e7eb;
  padding: 10px;
  display: flex;
  gap: 8px;
}

.chatbot-footer input {
  flex: 1;
  border: 1px solid #cfd5e1;
  border-radius: 8px;
  padding: 8px 10px;
}

.chatbot-footer button {
  border: none;
  border-radius: 8px;
  background: #2f6fed;
  color: #fff;
  padding: 8px 12px;
}
