  /* Alert genel stil */
  .alert {
    position: relative;
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    margin-bottom: 20px;
    animation: slideUp 0.4s ease forwards;
}

/* Başarı alert stili */
.contact-form-success,
.alert-success {
    border-left: 4px solid #28a745;
    background-color: #f0fff4;
    color: #1e7e34;
    display: flex !important;
    align-items: center;
}

/* Hata alert stili */
.contact-form-error,
.alert-danger {
    border-left: 4px solid #dc3545;
    background-color: #fff5f5;
    color: #b02a37;
    display: flex !important;
    align-items: center;
}

/* Alert animasyon */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* d-none ile çakışma olmaması için düzeltme */
.alert.d-none {
    display: none !important;
}