/*
|--------------------------------------------------------------------------
| VALORABANK
| CONTACT PAGE CSS
|--------------------------------------------------------------------------
*/

.contact-hero{

    min-height:60vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.85),
        rgba(8,31,77,.75)
    ),
    url('../images/contact/contact-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.contact-hero h1{

    font-size:3.8rem;
    font-weight:800;

}

.contact-hero p{

    color:#e5e7eb;
    font-size:1.1rem;
    line-height:2;

}

/* ==============================
CONTACT SECTION
============================== */

.contact-section{

    padding:110px 0;

    background:#f8fafc;

}

.contact-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    height:100%;

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.contact-info-item{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

.contact-info-item i{

    color:#FFD447;
    font-size:22px;

    margin-top:4px;

}

.contact-form{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px 20px;

    border-radius:15px;

    border:1px solid #e5e7eb;

    margin-bottom:20px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#103A8C;

    box-shadow:0 0 0 4px rgba(16,58,140,.1);

}

.contact-form button{

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-5px);

}

/* ==============================
MAP
============================== */

.contact-map{

    border-radius:25px;

    overflow:hidden;

    height:400px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/* ==============================
SOCIAL
============================== */

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#081F4D;

    color:#fff;

    transition:.3s;

}

.social-icons a:hover{

    background:#FFD447;

    color:#081F4D;

    transform:translateY(-5px);

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:991px){

    .contact-hero h1{
        font-size:2.8rem;
    }

}

@media(max-width:576px){

    .contact-hero h1{
        font-size:2.2rem;
    }

}