/* AIFoundry reCAPTCHA - Hide Until Form Focus */
.grecaptcha-badge {
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }
  
  /* Show when any form field is focused */
  input:focus ~ .grecaptcha-badge,
  textarea:focus ~ .grecaptcha-badge,
  select:focus ~ .grecaptcha-badge,
  .grecaptcha-badge:hover {
    opacity: 1 !important;
  }
  
  /* Also show when any input anywhere is focused (fallback) */
  body:has(input:focus) .grecaptcha-badge,
  body:has(textarea:focus) .grecaptcha-badge,
  body:has(select:focus) .grecaptcha-badge {
    opacity: 1 !important;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .grecaptcha-badge {
      transform: scale(0.9) !important;
    }
  }