/* ===================================== */


/* FAQ PREMIUM SECTION */


/* ===================================== */

.faq-premium-section {
    background: linear-gradient( 180deg, #f8f9fb 0%, #ffffff 100%);
    position: relative;
}


/* TITLE */

.faq-title-area {
    max-width: 760px;
    margin-bottom: 70px;
}

.faq-mini-title {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 140, 0, .08);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq-main-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 22px;
}

.faq-main-title span {
    color: var(--primary);
}

.faq-description {
    color: #6b7280;
    line-height: 1.9;
    font-size: 16px;
}


/* WRAPPER */

.faq-wrapper {
    max-width: 950px;
    margin: auto;
}


/* ITEM */

.faq-item {
    background: #fff;
    border-radius: 24px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
    transition: .4s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}


/* QUESTION */

.faq-question {
    width: 100%;
    padding: 30px 34px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    padding-right: 20px;
}


/* ICON */

.faq-icon {
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient( 135deg, var(--primary), #c87412);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: .4s ease;
    box-shadow: 0 10px 25px rgba(255, 140, 0, .18);
}

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


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, padding .35s ease;
}

.faq-answer p {
    padding: 0 34px 34px 34px;
    margin: 0;
    color: #6b7280;
    line-height: 1.9;
    font-size: 16px;
}


/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* MOBILE */

@media(max-width:991px) {
    .faq-main-title {
        font-size: 40px;
    }
}

@media(max-width:767px) {
    .faq-question {
        padding: 24px;
    }
    .faq-question span {
        font-size: 17px;
    }
    .faq-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
    }
    .faq-main-title {
        font-size: 32px;
    }
}