.contact-map-section{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
}

.map-container{
    width:100%;
    height:100%;
}

.map-container iframe{
    width:100%;
    height:100%;
    filter:grayscale(100%);
}

.contact-card{
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);
    width:450px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    z-index:10;
}

.contact-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.contact-content{
    padding:30px;
}

.contact-content h3{
    margin-bottom:20px;
    font-size:30px;
    font-weight:700;
    color:#111;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
}

.contact-item i{
    color:#d9232d; /* Color JZ Roofers */
    font-size:18px;
    margin-top:4px;
}

.contact-item span{
    color:#555;
    line-height:1.7;
    font-size:16px;
}

@media(max-width:768px){

    .contact-card{
        width:90%;
        top:20px;
    }

    .contact-map-section{
        height:700px;
    }

}