/* ============================================================
   PREMIUM FAQ SECTION
   ============================================================ */

#faq.faq-premium {
    padding: 90px 0;
    background: linear-gradient(135deg, #061537 0%, #15004a 50%, #330077 100%);
    position: relative;
    overflow: hidden;
}

/* Amoeba glowing background shapes */
#faq.faq-premium::before,
#faq.faq-premium::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

#faq.faq-premium::before {
    top: -120px;
    left: -160px;
    background: #8b2bff;
}

#faq.faq-premium::after {
    bottom: -160px;
    right: -120px;
    background: #ff0080;
}

/* FAQ Headings */
.faq-head {
    margin-bottom: 35px;
}

.faq-title {
    text-align: left;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: left;
    font-size: 17px;
    color: #d7dbff;
    opacity: 0.85;
}

/* FAQ Container Width */
.faq-container {
    max-width: 900px;
    margin: auto;
}

/* FAQ Accordion (Each Item) */
.faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 255, 0.18);
}

/* Accordion Button */
.faq-item .accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-size: 16px;
    padding: 20px;
    font-weight: 600;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

/* Question Icon */
.faq-q-icon {
    margin-right: 12px;
    font-size: 18px;
    opacity: 0.85;
}

/* FAQ Answer Body */
.faq-item .accordion-body {
    background: rgba(0,0,0,0.25);
    color: #e7e9ff;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* CTA Buttons */
.faq-cta .btn-gradient {
    font-size: 18px;
    padding: 14px 26px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .faq-title {
        text-align: center;
        font-size: 32px;
    }

    .faq-subtitle {
        text-align: center;
        font-size: 15px;
    }
}
