/* Mobile Step 3 reCAPTCHA Fix - Hide desktop-only step 3 with reCAPTCHA on mobile */

@media (max-width: 768px) {
    /* Hide the desktop-only step 3 that has reCAPTCHA verification */
    .desktop-only-step3 {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Ensure the main step 3 (without reCAPTCHA) is visible on mobile */
    #step3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Make sure property details form continues to step 4 */
    #propertyDetailsForm .continue-btn {
        background: #3b82f6 !important;
        color: white !important;
        border: none !important;
        padding: 15px 30px !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        width: 100% !important;
        margin-top: 20px !important;
    }
    
    #propertyDetailsForm .continue-btn:hover {
        background: #2563eb !important;
    }
    
    #propertyDetailsForm .continue-btn:disabled {
        background: #94a3b8 !important;
        cursor: not-allowed !important;
    }
}

/* Log mobile step 3 fixes */
@media (max-width: 768px) {
    body::before {
        content: "Mobile Step 3 reCAPTCHA fix applied - desktop step 3 hidden";
        position: fixed;
        top: -1000px;
        left: -1000px;
        opacity: 0;
        pointer-events: none;
    }
}