/* ========== AIRBNB STAY FAQ SECTION ========== */

#as-faq {
    background: #0d0a04;
    padding: 8vh 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1023px) {
    #as-faq {
        width: 100%;
        margin: 0;
        transform: none;
        padding: 60px 0;
        border-radius: 0 !important;
    }
}

#as-faq .faq-list {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

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

#as-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vh 0;
    cursor: pointer;
    list-style: none;
}

#as-faq .faq-question::-webkit-details-marker {
    display: none;
}

#as-faq .faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
}

#as-faq .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    content: url('/img/plus0.svg');
}

#as-faq .faq-item[open] .faq-icon {
    content: url('/img/xmark0.svg');
}

#as-faq .faq-answer {
    padding-bottom: 3vh;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#as-faq details[open] .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#as-faq .faq-answer p {
    font-size: 0.95rem;
    color: #999;
    text-align: left;
}
