
/* =========================================
FAQ SECTION
========================================= */

.faq-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #050505 0%,
        #000000 100%
    );

    padding:15px 0;
}

/* =========================================
BACKGROUND GLOW
========================================= */

.faq-glow{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:700px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.08),
        transparent 70%
    );

    filter:blur(100px);

    pointer-events:none;
}

/* =========================================
TOP
========================================= */

.faq-top{
    text-align:center;
    margin-bottom:70px;
}

.faq-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:42px;
    padding:0 24px;

    border-radius:999px;

    background:rgba(255,0,0,0.08);

    border:1px solid rgba(255,0,0,0.18);

    color:#ff2b2b;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.faq-title{
    max-width:820px;
    margin:auto;

    font-size:52px;
    line-height:1.2;
    font-weight:800;

    color:#ffffff;

    margin-bottom:24px;
}

.faq-desc{
    max-width:760px;
    margin:auto;

    font-size:16px;
    line-height:1.9;

    color:#9f9f9f;
}

/* =========================================
FAQ WRAPPER
========================================= */

@media(max-width:992px){

    .faq-wrapper{
        grid-template-columns:1fr;
    }

}

.faq-wrapper{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

/* =========================================
ITEM
========================================= */

.faq-item{
    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,0.04),
        rgba(0,0,0,0.95)
    );

    border:1px solid rgba(255,255,255,0.06);

    border-radius:26px;

    overflow:hidden;

    transition:0.4s ease;
}

.faq-item.active{
    border-color:rgba(255,0,0,0.3);
}

/* =========================================
QUESTION
========================================= */

.faq-question{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    background:none;
    border:none;

    padding:30px 34px;

    cursor:pointer;

    text-align:left;
}

.faq-question h3{
    font-size:22px;
    line-height:1.5;
    font-weight:700;

    color:#ffffff;
}

/* =========================================
ICON
========================================= */

.faq-icon{
    width:52px;
    height:52px;

    border-radius:50%;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#ffffff;

    font-size:18px;

    transition:0.4s ease;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* =========================================
ANSWER
========================================= */

.faq-answer{
    overflow:hidden;
    max-height:0;
    transition:max-height 0.4s ease;
}

.faq-answer-content{
    padding:0 34px 32px;
}

.faq-answer p{
    font-size:15px;
    line-height:2;

    color:#bcbcbc;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .faq-section{
        padding:15px 0;
    }

    .faq-title{
        font-size:36px;
    }

    .faq-desc{
        font-size:14px;
    }

    .faq-question{
        padding:24px;
    }

    .faq-question h3{
        font-size:18px;
    }

    .faq-answer-content{
        padding:0 24px 28px;
    }

}

@media(max-width:576px){

    .faq-title{
        font-size:30px;
    }

    .faq-question{
        gap:14px;
    }

    .faq-icon{
        width:46px;
        height:46px;

        font-size:16px;
    }

    .faq-question h3{
        font-size:16px;
    }

    .faq-answer p{
        font-size:14px;
    }

}

