/**
 * Fix Cloudflare Turnstile positioning in Contact Form 7
 * Compact spacing for better form layout
 */

/* Remove paragraph spacing around Turnstile */
.wpcf7-form p:has(.cf7-cf-turnstile) {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* Turnstile widget itself - compact spacing */
.wpcf7-form .cf7-cf-turnstile[style],
.wpcf7-form .cf7-cf-turnstile,
p .cf7-cf-turnstile,
div.cf7-cf-turnstile {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    line-height: normal !important;
}

/* Hide all <br> tags near Turnstile */
.cf-turnstile-br,
br.cf-turnstile-br,
.cf7-cf-turnstile + br,
.cf-turnstile + br {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
}

/* Submit button - compact spacing from Turnstile */
.wpcf7-form .wpcf7-submit {
    margin-top: 5px !important;
}

/* If submit button is in same <p> as Turnstile */
.wpcf7-form p:has(.cf7-cf-turnstile) .wpcf7-submit {
    display: inline-block;
    margin-top: 5px !important;
}

/* Fix for mobile responsiveness */
@media (max-width: 768px) {
    .wpcf7-form .cf7-cf-turnstile[style],
    .wpcf7-form .cf7-cf-turnstile {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
    
/*     .cf-turnstile {
        transform: scale(0.9);
        transform-origin: 0 0;
    } */
}
