/* <!-- NOTIFICATION STYLES --> */
#contact-success-notification {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
    transform: translateX(450px);
    opacity: 0;
    }
    to {
    transform: translateX(0);
    opacity: 1;
    }
}

@keyframes slideOut {
    from {
    transform: translateX(0);
    opacity: 1;
    }
    to {
    transform: translateX(450px);
    opacity: 0;
    }
}

#contact-success-notification.hiding {
    animation: slideOut 0.4s ease-in forwards;
}

.notification {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.notification-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-left: 5px solid #388E3C;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
}

.notification-icon {
    font-size: 28px;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
    line-height: 1;
}

.notification-message {
    flex: 1;
    padding: 0;
    margin: 0;
}

.notification-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.notification-text {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    line-height: 1;
}

.notification-close:hover {
    opacity: 0.7;
}

/* Mobile responsive */
@media (max-width: 480px) {
    #contact-success-notification {
    left: 10px;
    right: 10px;
    max-width: none;
    }
}