/* FAQ Premium Accordion Skin */
.faq-premium-accordion {
    max-width: 900px;
    margin: 40px auto;
}

.premium-acc-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-acc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-rgb, 12, 26, 50), 0.1);
}

.premium-acc-header {
    margin: 0;
}

.premium-acc-button {
    width: 100%;
    padding: 20px 20px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary, #0c1a32);
    font-size: 1.1rem;
}

.premium-acc-button:focus {
    outline: none;
}

.premium-acc-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb, 12, 26, 50), 0.05);
    color: var(--primary, #0c1a32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.premium-acc-button:not(.collapsed) .premium-acc-icon {
    background: var(--primary, #0c1a32);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb, 12, 26, 50), 0.3);
}

.premium-acc-button::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    opacity: 0.5;
}

.premium-acc-button:not(.collapsed)::after {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--accent, #febb02);
}

.premium-acc-body {
    padding: 20px 20px 20px 80px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

.premium-acc-answer {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .premium-acc-button {
        padding: 20px;
        font-size: 1rem;
    }

    .premium-acc-icon {
        width: 32px;
        height: 32px;
        margin-right: 15px;
    }

    .premium-acc-body {
        padding: 0 20px 20px 67px;
    }
}