/* ============================================================
   contact-page.css — Toast notification (contact.html)
   ============================================================ */

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s ease-out;
    z-index: 9999;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    background: linear-gradient(135deg, #88A787, #6B8E6B);
    color: white;
}

.toast-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.toast-icon {
    font-size: 24px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 14px;
    opacity: 0.9;
}
