/* ========================================
   FAQS SECTION
   ======================================== */

.faqs-section {
    background-color: #EEEEEE;
}

.faqs-container {
    padding: 64px 32px;
}

.faqs-list {
    display: flex;
    flex-direction: column;
}

/* FAQ Item */
.faq-item {
    border-top: 1px solid #C2C2C2;
}

.faq-item:last-child {
    border-bottom: 0;
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    opacity: 0.8;
}

/* Question Text */
.faq-question-text {
    font-family: "loew-variable", sans-serif;
    font-weight: 700;
    font-stretch: 10%;
    font-size: 28px;
    line-height: 90%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #020202;
    flex: 1;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Toggle Icon (+/-) */
.faq-toggle {
    font-family: "LoewNext", system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #020202;
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

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

.faq-answer p {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #2B2B2B;
    margin: 0;
}

.faqs-section-view-all-btn {
    display: flex;
    width: 176px;
    height: 64px;
    border-radius: 8px;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    margin: 64px auto 0;
    text-decoration: none;
    transition: color 300ms ease, transform 200ms ease, box-shadow 200ms ease;

    /* Fancy Hover Setup */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faqs-section-view-all-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--color-fluoro);
    transition: height 300ms ease;
    z-index: -1;
}

.faqs-section-view-all-btn:hover {
    opacity: 1;
    color: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faqs-section-view-all-btn:hover::after {
    height: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
    .faqs-list {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1440px) {
    .faqs-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faqs-list {
        max-width: 920px;
        margin: 0 auto;
    }

    .faq-question-text {
        font-size: 32px;
        line-height: 100%;
    }
}