.contact-hero{
    margin-top:65px;
    min-height:250px;
    background:#4e5b73;
    display:flex;
    align-items:center;
}

.contact-hero-content h1{
    color:#fff;
    font-size:4rem;
    font-weight:700;
}

.contact-hero-content p{
    color:rgba(255,255,255,.85);
    max-width:700px;
}

.contact-modern{
    padding:80px 0;
    background:#f8f9fb;
}

.contact-modern-grid{
    display:grid;
    grid-template-columns:45% 55%;
    gap:35px;
    align-items:stretch;
}

.contact-panel{
    background:#0A1A36;
    color:#fff;
    border-radius:30px;
    padding:45px;
}

.contact-panel h2{
    font-size:2.6rem;
    margin:18px 0;
}

.contact-intro{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:35px;
}

.contact-line{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:22px;
    margin-top:22px;
}

.contact-line strong{
    color:#C28A2E;
    display:block;
    margin-bottom:8px;
}

.contact-line p{
    color:rgba(255,255,255,.82);
    margin:0;
    line-height:1.8;
}

.contact-form-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.07);
}

.contact-form-card h2{
    color:#0A1A36;
    margin-bottom:28px;
}

.form-control{
    margin-bottom:18px;
    padding:14px 16px;
    border-radius:12px;
}

.send-btn{
    width:100%;
    border:none;
    background:#C28A2E;
    color:#fff;
    padding:15px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.send-btn:hover{
    background:#a87522;
}

.contact-map{
    margin-top:35px;
}

.contact-map iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:30px;
}

.faq-section{
    display:none;
}

@media(max-width:991px){
    .contact-modern-grid{
        grid-template-columns:1fr;
    }

    .contact-panel,
    .contact-form-card{
        padding:30px;
    }

    .contact-panel h2{
        font-size:2rem;
    }
}