/* Contact Page Styles - Minimal custom CSS for features Tailwind cannot handle */

/* Custom gradient top border for form container */
.form-gradient-border {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

/* Custom select dropdown arrow - keeping this as Tailwind's arbitrary values are complex for this */
.custom-select-arrow {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

/* Shimmer effect for submit button - complex animation that's easier in CSS */
.submit-btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn-shimmer:hover::before {
    left: 100%;
}