/*=========================================
        MAP BANNER
=========================================*/

.map-banner{
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    line-height:0;
}

.map-banner iframe{
    display:block;
    width:100%;
    height:650px;
    border:0;
    margin:0;
    padding:0;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width:991px){

.map-banner iframe{
    height:500px;
}

}

@media (max-width:768px){

.map-banner iframe{
    height:400px;
}

}

@media (max-width:576px){

.map-banner iframe{
    height:300px;
}

}
/*=========================================
        CONTACT INFO SECTION
=========================================*/

.contact-info-section{
    padding:100px 0;
    background:#f7f9fc;
}

/*=========================================
        SECTION TITLE
=========================================*/

.contact-info-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.contact-info-title span{
    display:inline-block;
    color:#ff6b00;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.contact-info-title h2{
    font-size:42px;
    font-weight:800;
    color:#0C4DA2;
    margin-bottom:18px;
}

.contact-info-title p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin:0;
}

/*=========================================
        CONTACT GRID
=========================================*/

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

/*=========================================
        CARD
=========================================*/

.contact-card{
    background:#fff;
    border-top:5px solid #ff6b00;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

    padding:40px 30px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;

    min-height:380px;   /* Same height for all cards */
    text-align:center;

    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.contact-icon{
    width:80px;
    height:80px;
    margin-bottom:25px;
    border-radius:50%;
    background:#0C4DA2;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact-icon i{
    color:#fff;
    font-size:32px;
}

.contact-card h4{
    color:#0C4DA2;
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
}

.contact-card p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin:0;
}
.contact-container{
    max-width:1320px;
    margin:0 auto;
    padding-left:15px;
    padding-right:10px;
}
/*=========================================
        MAP RESPONSIVE
=========================================*/

@media (max-width:991px){

.map-banner iframe{
    height:600px;
}

}

@media (max-width:768px){

.map-banner iframe{
    height:550px;   /* Increased */
}

.contact-info-section{
    padding:50px 0 70px;
}

}

@media (max-width:576px){

.map-banner iframe{
    height:500px;   /* Increased */
}

.contact-info-section{
    padding:40px 0 60px;
}

}/*=========================================
        CONTACT SECTION RESPONSIVE
=========================================*/

/* Laptop */
@media (max-width:1200px){

.contact-container{
    max-width:1140px;
    padding:0 20px;
}

.contact-info-grid{
    gap:25px;
}

}

/* Tablet */
@media (max-width:991px){

.map-banner iframe{
    height:600px;
}

.contact-info-section{
    padding:70px 0;
}

.contact-info-title{
    margin-bottom:45px;
}

.contact-info-title h2{
    font-size:36px;
}

.contact-info-title p{
    font-size:16px;
}

.contact-info-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-card{
    min-height:320px;
    padding:30px 20px;
}

.contact-card h4{
    font-size:20px;
}

.contact-card p{
    font-size:15px;
}

}

/* Mobile */
@media (max-width:768px){

.map-banner iframe{
    height:500px;
}

.contact-info-section{
    padding:50px 0;
}

.contact-container{
    padding:0 15px;
}

.contact-info-title{
    margin-bottom:35px;
}

.contact-info-title span{
    font-size:13px;
}

.contact-info-title h2{
    font-size:30px;
    line-height:1.3;
}

.contact-info-title p{
    font-size:15px;
    line-height:1.8;
}

/* 2 Cards Per Row */
.contact-info-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.contact-card{
    min-height:250px;
    padding:20px 15px;
    border-radius:16px;
}

.contact-icon{
    width:60px;
    height:60px;
    margin-bottom:15px;
}

.contact-icon i{
    font-size:24px;
}

.contact-card h4{
    font-size:17px;
    margin-bottom:10px;
}

.contact-card p{
    font-size:13px;
    line-height:1.6;
}

}

/* Small Mobile */
@media (max-width:576px){

.map-banner iframe{
    height:450px;
}

.contact-container{
    padding:0 12px;
}

/* Keep 2 cards per row */
.contact-info-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.contact-card{
    min-height:230px;
    padding:18px 12px;
}

.contact-icon{
    width:55px;
    height:55px;
}

.contact-icon i{
    font-size:22px;
}

.contact-card h4{
    font-size:15px;
}

.contact-card p{
    font-size:12px;
    line-height:1.5;
}

}
/*=========================================
    CONTACT MOBILE (1 CARD PER ROW)
=========================================*/
@media (max-width:768px){

    .contact-info-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .contact-card{
        width: 100%;
        min-height: auto;
        padding: 25px 20px;
        border-radius: 18px;
    }

    .contact-icon{
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .contact-icon i{
        font-size: 26px;
    }

    .contact-card h4{
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-card p{
        font-size: 15px;
        line-height: 1.7;
    }

}