

/* ── Floating Button Stack (bottom-right) ── */
.sbaa-float-stack {
  position: fixed;
  bottom: 150px;
  right: 18px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* ── Enquiry Float Button ── */
.sbaa-float-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3c6e 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 5px 5px 5px 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
  animation: sbaa-float-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Gold shimmer on hover */
.sbaa-float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c49a2c 0%, #e8c97a 100%);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 50px;
}
.sbaa-float-btn:hover::before { opacity: 1; }
.sbaa-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(196, 154, 44, 0.40);
}
.sbaa-float-btn:active { transform: scale(0.97); }

/* Icon + text sit above the ::before layer */
.sbaa-float-btn .sbaa-float-icon,
.sbaa-float-btn .sbaa-float-text {
  position: relative;
  z-index: 1;
}

.sbaa-float-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0;
}

/* ── Tooltip label (shows on hover) ── */
.sbaa-float-btn .sbaa-float-text {
  max-width: 160px;
  overflow: hidden;
}

/* ── Pulse animation ── */
@keyframes sbaa-float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(13,27,42,.35), 0 0 0 0 rgba(196,154,44,0); }
  50%       { box-shadow: 0 4px 20px rgba(13,27,42,.35), 0 0 0 8px rgba(196,154,44,0); }
}

/* ── Responsive: smaller on mobile ── */
@media (max-width: 768px) {
  .sbaa-float-stack {
    bottom: 80px;  /* pushes above your Call/Email/WhatsApp bar */
    right: 12px;
  }

  .sbaa-float-btn {
    padding: 5px 5px 5px 5px;
    font-size: 12px;
    border-radius: 50px;
  }

  .sbaa-float-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  /* Hide the text label on mobile — show icon only */
  .sbaa-float-text {
    display: none;
  }
}
