/* ===========================
   Contact Page
=========================== */

.contact-section{
    padding:80px 0;
    background:#fff8fb;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:35px;
    align-items:start;
}

.contact-card,
.contact-form{
    background:#fff;
    border:1px solid #f4d8e6;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card{
    text-align:center;
}

.contact-card i{
    font-size:55px;
    color:#1877f2;
    margin-bottom:20px;
}

.contact-card h3{
    font-size:28px;
    color:#d63384;
    margin-bottom:15px;
}

.contact-card p{
    color:#666;
    line-height:2;
    margin-bottom:25px;
}

.contact-card .btn{
    display:block;
    width:100%;
}

.privacy-box{
    margin-top:25px;
    padding:15px;
    background:#fff8fb;
    border:1px solid #f4d8e6;
    border-radius:12px;
    color:#555;
    line-height:1.8;
}

.contact-form .form-group{
    margin-bottom:20px;
}

.contact-form label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#444;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-family:inherit;
    font-size:15px;
    box-sizing:border-box;
    transition:.3s;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#d63384;
    box-shadow:0 0 0 3px rgba(214,51,132,.12);
}

.contact-form .btn{
    width:100%;
}

@media (max-width:992px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}