.grecaptcha-badge {
    visibility: hidden;
}
#contactPopup {
  position: fixed;
  top: 50px; /* Adjust based on your navbar height */
  right: 2rem;
  width: 24rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1056; /* Make sure it's above navbar */
  background: white;
  border: 1px solid #000;
}

#contactPopup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
