/* Floating Contact Widgets */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  color: #fff;
}

.floating-btn--whatsapp {
  background-color: #25D366; /* Official WhatsApp Green */
}
.floating-btn--whatsapp:hover {
  background-color: #1ebe5c;
}

.floating-btn--call {
  background-color: var(--navy, #0a1930); /* Brand Blue */
}
.floating-btn--call:hover {
  background-color: var(--marine, #0055a5);
}

@media (max-width: 768px) {
  .floating-widgets {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}
