/* FAQ Section Block Styles (Dark Theme) */

.mobcash-faq-wrapper {
    width: 100%;
}

.mobcash-faq-wrapper .faq-section {
    padding: 60px 0;
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.mobcash-faq-wrapper .faq-container-inner {
    max-width: 900px;
    margin: 0 auto;
}

.mobcash-faq-wrapper .faq-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-white);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.mobcash-faq-wrapper .faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobcash-faq-wrapper .faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.mobcash-faq-wrapper .faq-question-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.mobcash-faq-wrapper .faq-status-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.mobcash-faq-wrapper .faq-status-icon::before,
.mobcash-faq-wrapper .faq-status-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.mobcash-faq-wrapper .faq-status-icon::before {
    width: 12px;
    height: 2px;
}

.mobcash-faq-wrapper .faq-status-icon::after {
    width: 2px;
    height: 12px;
}

.mobcash-faq-wrapper .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.mobcash-faq-wrapper .faq-answer p {
    padding-top: 20px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
}

/* Active state */
.mobcash-faq-wrapper .faq-item.active .faq-question-text {
    color: var(--accent-cyan);
}

.mobcash-faq-wrapper .faq-item.active .faq-status-icon {
    border-color: var(--accent-cyan);
    background-color: rgba(0, 229, 153, 0.1);
    transform: rotate(180deg);
}

.mobcash-faq-wrapper .faq-item.active .faq-status-icon::before,
.mobcash-faq-wrapper .faq-item.active .faq-status-icon::after {
    background-color: var(--accent-cyan);
}

.mobcash-faq-wrapper .faq-item.active .faq-status-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.mobcash-faq-wrapper .faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 10px;
}

/* Hover */
.mobcash-faq-wrapper .faq-item:hover .faq-question-text {
    color: var(--accent-cyan);
}

.mobcash-faq-wrapper .faq-item:hover .faq-status-icon {
    border-color: var(--accent-cyan);
}

/* Footer block */
.mobcash-faq-wrapper .faq-footer {
    margin-top: 60px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.mobcash-faq-wrapper .faq-footer-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.mobcash-faq-wrapper .faq-footer-text p {
    color: var(--text-gray);
    font-size: 14px;
}

.mobcash-faq-wrapper .faq-footer-btns {
    display: flex;
    gap: 15px;
}

.mobcash-faq-wrapper .btn-tg {
    background-color: var(--accent-purple);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.mobcash-faq-wrapper .btn-email {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.mobcash-faq-wrapper .btn-tg:hover {
    background-color: #5b28d6;
    transform: translateY(-2px);
}

.mobcash-faq-wrapper .btn-email:hover {
    border-color: var(--text-white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobcash-faq-wrapper .faq-footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .mobcash-faq-wrapper .faq-footer-btns {
        flex-direction: column;
        width: 100%;
    }

    .mobcash-faq-wrapper .btn-tg,
    .mobcash-faq-wrapper .btn-email {
        width: 100%;
        justify-content: center;
    }

    .mobcash-faq-wrapper .faq-question-text {
        font-size: 16px;
    }
}
