/* ==========================================================
                        FAQ SECTION
========================================================== */


.faq-section {
    width: 100%;
    background: #ffffff;
    padding: 40px 0 10px; 
}

.faq-container{

    width:90%;
    max-width:1380px;
    margin:auto;

}

/* ================= Header ================= */

.faq-header {
    text-align: center;
    margin-bottom: 40px; 
}

.faq-tag{

    display:block;
    color:#C18B2F;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;

}

.faq-title{

    font-family:'Playfair Display',serif;
    font-size:58px;
    font-weight:700;
    color:#13295B;
    line-height:1.1;

}

/* ================= Grid ================= */

.faq-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;

}

.faq-column{

    display:flex;
    flex-direction:column;
    gap:18px;

}

/* ================= Card ================= */

.faq-item{

    border:1px solid #ECECEC;
    border-radius:18px;
    background:#fff;
    overflow:hidden;

    transition:.30s ease;

}

.faq-item:hover{

    box-shadow:0 10px 28px rgba(0,0,0,.06);

}

/* ================= Question ================= */

.faq-question{

    width:100%;
    border:none;
    outline:none;
    background:#fff;

    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px 28px;

    text-align:left;

}

.faq-question span:first-child{

    font-size:18px;
    font-weight:600;
    color:#13295B;
    line-height:1.5;

    width:90%;

}

/* ================= Arrow ================= */

.faq-icon{

    font-size:16px;

    color:#13295B;

    transition:.35s ease;

}

/* ================= Answer ================= */

.faq-answer{

    display:none;

    padding:0 28px 25px;

    animation:fadeAnswer .30s ease;

}

.faq-answer p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

/* ================= Active ================= */

.faq-item.active{

    border-color:#D8C4A8;

}

.faq-item.active .faq-icon{

    transform:rotate(180deg);

}

/* ================= Animation ================= */

@keyframes fadeAnswer{

    from{

        opacity:0;
        transform:translateY(-8px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ================= Tablet ================= */

@media(max-width:1024px){

.faq-grid{

grid-template-columns:1fr;

gap:18px;

}

}

/* ================= Mobile ================= */

@media(max-width:768px){
    .faq-section {
        padding: 40px 0; 
    }


.faq-title{

font-size:42px;

}

.faq-question{

padding:20px;

}

.faq-question span:first-child{

font-size:16px;

}

.faq-answer{

padding:0 20px 20px;

}

.faq-answer p{

font-size:15px;

}

}

