/* Toast alerts for contact form */
#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: toast-in 0.3s ease;
}
.toast.success { background: #0d7a4a; color: #fff; }
.toast.error { background: #b91c1c; color: #fff; }
@keyframes toast-in {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
