/* FAQ Section Styles - Premium Dazzling Overhaul */

.faq-section {
    padding-bottom: 4rem;
    position: relative;
}

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

.faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.faq-item:hover::before {
    transform: translateX(100%);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    border-color: var(--gold-accent);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(251, 191, 36, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    color: white;
    position: relative;
    z-index: 1;
}

.faq-question h3 {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Question Icons Styling */
.faq-question h3 i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.text-gold {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.text-neon-blue {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

.text-neon-green {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.text-neon-purple {
    color: #c084fc;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

.faq-item:hover .faq-question h3 {
    color: #e2e8f0;
}

.faq-item.active .faq-question h3 {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-question h3 i {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Plus/Minus Icon */
.faq-question>i {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.05);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item:hover .faq-question>i {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question>i {
    transform: rotate(135deg);
    color: #fbbf24;
    /* Gold active icon */
    background: rgba(251, 191, 36, 0.1);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
    position: relative;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
    transition: max-height 0.6s ease-in-out;
}

.faq-answer p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Icons Animation */
.icon-float {
    position: absolute;
    color: rgba(124, 58, 237, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.icon-1 {
    top: 10%;
    left: 5%;
    font-size: 4rem;
    animation-delay: 0s;
}

.icon-2 {
    top: 40%;
    right: 8%;
    font-size: 3rem;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 15%;
    left: 10%;
    font-size: 5rem;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}