/*=====================================
            CONTACT HERO
======================================*/

.contact-hero{

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:100px 8%;

    background:linear-gradient(135deg,#1C2526,#263238);

}

.contact-hero .container{

    max-width:850px;

    margin:auto;

}

.contact-hero .hero-tag{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,213,79,.12);

    border:1px solid rgba(255,213,79,.35);

    border-radius:50px;

    color:#FFD54F;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:30px;

}

.contact-hero h1{

    font-size:64px;

    margin-bottom:25px;

    color:#ffffff;

}

.contact-hero p{

    font-size:22px;

    color:#CFD8DC;

    line-height:1.8;

    margin-bottom:45px;

}

.contact-hero .primary-btn{

    display:inline-block;

    padding:18px 38px;

    background:#FFD54F;

    color:#1C2526;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.contact-hero .primary-btn:hover{

    background:#FFC107;

    transform:translateY(-3px);

}
/*=====================================
        CONTACT INFORMATION
======================================*/

.contact-info{

    padding:120px 8%;

    background:#202A2D;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.contact-card{

    background:#263238;

    padding:40px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:#FFD54F;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.contact-icon{

    font-size:60px;

    margin-bottom:25px;

}

.contact-card h3{

    color:#FFD54F;

    font-size:30px;

    margin-bottom:18px;

}

.contact-card p{

    color:#CFD8DC;

    line-height:1.8;

    font-size:17px;

    margin-bottom:25px;

}

.contact-card a{

    display:inline-block;

    color:#FFD54F;

    font-weight:700;

    font-size:18px;

    text-decoration:none;

    transition:.3s;

}

.contact-card a:hover{

    color:#ffffff;

}
/*=====================================
                FAQ
======================================*/

.faq-section{

    padding:120px 8%;

    background:#202A2D;

}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#263238;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.faq-item:hover{

    border-color:#FFD54F;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#ffffff;

    font-size:22px;

    font-weight:600;

    text-align:left;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-icon{

    color:#FFD54F;

    font-size:30px;

    font-weight:bold;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#CFD8DC;

    line-height:1.8;

    font-size:17px;

}
