/* =========================================
   FAQ Page Styles
   ========================================= */

/* Hero Section */
.faq-hero {
    position: relative;
    width: 100%;
    background: transparent;
    color: var(--color-white);
    padding-top: 220px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
}

.faq-hero__bg-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.faq-hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.faq-hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* FAQ Content Section */
.faq-content {
    color: #fff;
}

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

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 60px 24px 60px;
    background: #fff;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 24px;
    top: 24px;
    font-size: 18px;
    font-weight: 900;
    color: var(--color-text);
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 24px 0 60px;
    background: #fff;
    color: var(--color-text);
    font-size: 15px;
    line-height: 2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    position: relative;
}

.faq-answer::before {
    content: 'A';
    position: absolute;
    left: 24px;
    top: 24px;
    font-size: 18px;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.is-open .faq-answer {
    padding: 24px 24px 24px 60px;
    max-height: 500px;
}

.faq-item.is-open .faq-answer::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding-top: 230px;
        padding-bottom: 150px;
    }

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

    .faq-hero__bg-text {
        font-size: 80px;
        top: 50%;
    }

    .faq-question {
        padding: 20px 50px 20px 50px;
        font-size: 15px;
    }

    .faq-question::before {
        left: 20px;
        top: 20px;
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 20px 0 50px;
    }

    .faq-answer::before {
        left: 20px;
        font-size: 16px;
    }

    .faq-item.is-open .faq-answer {
        padding: 20px 20px 20px 50px;
    }
}