/* Contact Page Specific Styles */

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Custom Form Input Focus Enhancement */
.form-input:focus {
    border-color: #00cfff !important;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.25);
}

/* Form Validation Error States (Vanilla JS driven) */
.form-input.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

    .form-input.error:focus {
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
    }

.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}
