/* ================= FAQ SECTION ================= */

/*.faq-section {*/
/*    position: relative;*/
/*    background: url('/asset/luxus/faqbg.jpg') center/cover no-repeat;*/
/*    padding: 100px 20px;*/
/*    color: #fff;*/
/*}*/

/*.faq-overlay {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(0,0,0,0.75);*/
/*}*/


/* ================= FAQ SECTION ================= */

.faq-section {
    position: relative;
    background-image: url('/asset/luxus/faqbg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* premium desktop effect */
    padding: 100px 20px;
    color: #fff;
}

/* Dark overlay */
.faq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.faq-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    z-index: 2;
}

.faq-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* FAQ ITEM */

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.faq-question {
   font-family: 'Inter', sans-serif;
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-icon {
    font-size: 24px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    padding: 0 0 20px;
    color: #ddd;
    line-height: 1.7;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 15px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .faq-title {
        font-size: 26px;
    }
}


/* Tablet */
@media (max-width: 992px) {
    .faq-section {
        background-attachment: scroll; /* fixes iOS issues */
        padding: 80px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
        background-position: center top; /* keeps subject visible */
        background-size: cover;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .faq-section {
        padding: 50px 15px;
        background-position: center 20%;
    }
}