/* Custom styles for modern UI */
body {
    font-family: 'Inter', sans-serif;
}

input, select, textarea {
    transition: all 0.3s ease-in-out;
}

input:focus, select:focus, textarea:focus {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

button[type="submit"] {
    transition: all 0.3s ease-in-out;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
}

#mobileMenu a {
    transition: background-color 0.2s ease-in-out;
}

#successModal {
    animation: fadeIn 0.3s ease-in-out;
}

#successModal .animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}