/* FAQ SECTION */

.faq-section{
    padding:130px 60px;
    background:var(--black);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.faq-image-wrap{
    position:relative;
}

.faq-image-wrap::before{
    content:'';
    position:absolute;
    top:-18px;
    left:-18px;
    right:18px;
    bottom:18px;
    border:1px solid var(--gold);
    opacity:.3;
    z-index:0;
}

.faq-image-wrap img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
    position:relative;
    z-index:1;
    filter:brightness(.78);
}

.faq-cta-box{
    position:absolute;
    bottom:30px;
    left:30px;
    right:30px;
    background:rgba(10,10,10,.92);
    border:1px solid rgba(201,168,76,.25);
    padding:30px;
    z-index:2;
}

.faq-cta-box h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:2rem;
    margin-bottom:10px;
}

.faq-cta-box p{
    margin-bottom:20px;
}

.faq-cta-box a{
    color:var(--gold);
}

.faq-content h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(3rem,5vw,5.5rem);
    line-height:.95;
    margin-bottom:40px;
}

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

.faq-item{
    border:1px solid rgba(201,168,76,.15);
    transition:.3s;
}

.faq-item:hover{
    border-color:rgba(201,168,76,.4);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#f5f0e8;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
    font-size:1rem; 
}

.faq-icon{
    color:var(--gold);
    font-size:1.5rem;
    line-height:1;
}

.faq-answer{
    display:none;
    padding:0 28px 24px;
    color:rgba(255,255,255,.58);
    line-height:1.8;
    font-size:.85rem;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

@media(max-width:900px){

    .faq-section{
        grid-template-columns:1fr;
        padding:80px 24px;
        gap:50px;
    }

    .faq-image-wrap img{
        height:420px;
    }

    .faq-cta-box{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }
}