/* ===== Auto-greeting bubble for the Facebook Messenger button =====
   Appears ~15s after load, above the bottom-left Messenger button.
   Clicking it (or its close) opens the same Messenger link. */
.ge-fb-greet {
  position: fixed !important;
  left: 18px;
  bottom: 96px;                 /* sits just above the Messenger button */
  z-index: 99999;
  max-width: 290px;
  width: max-content;
  background: #0d1b30;
  color: #ffffff;
  border-radius: 16px 16px 16px 4px;
  padding: 14px 40px 14px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(5, 31, 61, .35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.ge-fb-greet.ge-fb-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.ge-fb-greet strong { color: #f2b705; }
.ge-fb-greet .ge-fb-greet-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 22px;
  cursor: pointer;
  padding: 0;
}
.ge-fb-greet .ge-fb-greet-close:hover { color: #ffffff; }
/* little tail pointing down toward the button */
.ge-fb-greet::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #0d1b30;
}
@media (max-width: 575px) {
  .ge-fb-greet {
    left: 10px;
    bottom: 78px;
    max-width: 76vw;
    font-size: 14px;
  }
}
