.floating-form-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #2563EB;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
  transition: transform .2s ease, background .2s ease;
}

.floating-form-btn__icon {
  flex: 0 0 auto;
  transform: translateY(1px);
}

.floating-form-btn:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .floating-form-btn {
    right: 12px;
    left: 12px;
    bottom: 12px;
    border-radius: 12px;
    min-height: 52px;
  }
}
