.faq-section {
    padding: 120px 0;
    background-color: #0b0b0b;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff !important;
}

.faq-badge {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.faq-header h2 {
    font-size: 3.5rem;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8; /* Subtle dimming by default */
}

.faq-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    color: #a855f7;
    flex-shrink: 0;
    background: rgba(168, 85, 247, 0.05);
}

.faq-icon-box svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.answer-inner {
    padding-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 850px;
}

/* Active & Hover States */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-item:hover .faq-question h3 {
    opacity: 1;
}

.faq-item.active {
    background: rgba(168, 85, 247, 0.04);
    padding: 0 30px;
    margin: 0 -30px;
    border-radius: 24px;
    border-top-color: transparent;
}

.faq-item.active + .faq-item {
    border-top-color: transparent;
}

.faq-item.active .faq-question h3 {
    color: #a855f7;
    opacity: 1;
}

.faq-item.active .faq-icon-box {
    background: #a855f7;
    border-color: #a855f7;
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Hover Effects */
.faq-item:not(.active):hover .faq-question {
    padding-left: 10px;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}
