.contact-section{

    padding:90px 0;
    background:#f8f9fa;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:#8b1c2d;
    font-weight:bold;
    letter-spacing:3px;

}

.section-title h2{

    color:#0b7a3b;
    font-size:42px;
    font-weight:700;
    margin:15px 0;

}

.section-title p{

    color:#666;
    max-width:700px;
    margin:auto;
    line-height:30px;

}

/* Contact Card */

.contact-card{

    background:#fff;
    border-radius:18px;
    padding:30px;

    display:flex;
    align-items:center;

    gap:25px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    border-left:5px solid #0b7a3b;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-left:5px solid #8b1c2d;

    box-shadow:0 20px 35px rgba(0,0,0,.15);

}

.icon-box{

    width:80px;
    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#0b7a3b,#1fa15f);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    flex-shrink:0;

}

.contact-card h4{

    color:#8b1c2d;

    margin-bottom:12px;

    font-weight:700;

}

.contact-card p{

    margin:0;

    color:#555;

    line-height:30px;

}

/* Google Map */

.map-section{

    padding-bottom:80px;

    background:#f8f9fa;

}

.map-section iframe{

    width:100%;

    height:450px;

    border:0;

    border-radius:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

/* Mobile */

@media(max-width:991px){

.section-title h2{

font-size:32px;

}

.contact-card{

padding:25px;

}

.icon-box{

width:65px;
height:65px;
font-size:26px;

}

}

@media(max-width:576px){

.contact-section{

padding:60px 0;

}

.section-title h2{

font-size:28px;

}

.contact-card{

flex-direction:column;
text-align:center;

}

.icon-box{

margin-bottom:15px;

}

.map-section iframe{

height:300px;

}

}