/*
 * Domain Advantages - Feature Card Hover Effects
 * Avantajlar bölümü için özel hover efektleri
 * Başlık ve ikon her zaman görünür, açıklama hover'da görünür
 */

.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e0e0e0 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(22, 15, 62, 0.08) !important;
    min-height: 120px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 15, 62, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #160f3e !important;
    box-shadow: 0 15px 45px rgba(22, 15, 62, 0.18) !important;
}

.feature-card .card-body {
    position: relative;
    z-index: 1;
}

/* İkon - Her zaman görünür */
.feature-card .addons {
    transition: all 0.4s ease;
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card:hover .addons {
    transform: scale(1.15) rotate(5deg);
    color: #d4af37 !important;
}

/* Başlık - Her zaman görünür */
.feature-card h5 {
    transition: color 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card:hover h5 {
    color: #160f3e !important;
}

/* Açıklama metni - Sadece hover'da görünür */
.feature-card p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0 !important;
}

.feature-card:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px !important;
    color: #495057;
}
