/* FAQ Premium Grid Skin */
.faq-premium-grid {
    padding: 20px 0;
}

.premium-faq-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent, #febb02);
    transition: all 0.3s ease;
    z-index: 2;
}

.premium-faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(var(--primary-rgb, 12, 26, 50), 0.1);
}

.premium-faq-card:hover::before {
    height: 100%;
}

.premium-faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--accent-rgb, 254, 187, 2), 0.1);
    color: var(--accent, #febb02);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.premium-faq-card:hover .premium-faq-icon {
    background: var(--accent, #febb02);
    color: white;
    transform: rotate(10deg);
}

.premium-faq-q {
    font-weight: 800;
    color: var(--primary, #0c1a32);
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.premium-faq-a {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 575px) {
    .premium-faq-card {
        padding: 25px;
    }
}