/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 120px 40px;
    background: transparent;
}

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

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-icon-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon {
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-title {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-title-icon {
    color: #FF6B6B;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(21, 21, 21, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

@supports (corner-shape: squircle) {
    .faq-item {
        corner-shape: squircle;
        border-radius: 40px;
    }
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
    border-color: rgba(100, 104, 251, 0.5);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
    border-radius: 20px;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);

}

.faq-question-text {
    flex: 1;
}

.faq-chevron {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-chevron {
    color: white;
}

.faq-item.active .fa-chevron-down {
    display: none;
}

.faq-item.active .fa-chevron-up {
    display: flex;
}

.faq-item:not(.active) .fa-chevron-up {
    display: none;
}

.faq-item:not(.active) .fa-chevron-down {
    display: flex;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    color: rgba(186, 186, 186, 1);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 1024px) {

    .faq-icon {
        height: 500px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-left {
        order: 2;
    }

    .faq-right {
        order: 1;
    }

    .faq-icon-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 768px) {

    .faq-icon {
        max-width: 100%;
        height: auto;
    }

    .faq-section {
        padding: 80px 20px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-title-icon {
        font-size: 36px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }
}

