.contact-card,
.contact-form-card,
.office-card{

    background:#fff;
    border-radius:24px;
    padding:40px;
    height:100%;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.3s;

}

.contact-card:hover,
.office-card:hover{

    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,76,129,.15);

}

.contact-icon{

    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--primary),#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;

}

.contact-icon i{

    color:#fff;
    font-size:30px;

}

.contact-form-card input,
.contact-form-card textarea{

    border-radius:14px;

}