/**
 * Floating SEVA Button Styles
 */

.floating-seva-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  animation: fadeInFloat 0.5s ease-in-out;
}

.floating-seva-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 215px;
  height: 48px;
  background: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(36, 110, 212, 0.2);
  transition: all 0.3s ease;
  padding: 0 20px;
}

.floating-seva-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(36, 110, 212, 0.3);
}

.floating-seva-link:active {
  transform: translateY(0);
}

.floating-seva-link svg {
  flex-shrink: 0;
}

.floating-seva-text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #246ed4;
  white-space: nowrap;
}

@keyframes fadeInFloat {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .floating-seva-btn {
    bottom: 20px;
    right: 20px;
  }

  .floating-seva-link {
    width: 200px;
    height: 44px;
  }

  .floating-seva-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Untuk layar sangat kecil */
@media (max-width: 480px) {
  .floating-seva-btn {
    bottom: 15px;
    right: 15px;
  }

  .floating-seva-link {
    width: 180px;
    height: 42px;
    gap: 6px;
    padding: 0 15px;
  }

  .floating-seva-link svg {
    width: 20px;
    height: 20px;
  }

  .floating-seva-text {
    font-size: 14px;
    line-height: 20px;
  }
}
