/*====================================
    CONTACT HERO
====================================*/

.contact-hero{
    background: linear-gradient(rgba(0,35,102,.75),rgba(178,34,34,.75)),
    url("../images/contact-banner.jpg") center/cover no-repeat;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.contact-hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.contact-hero p{
    max-width:700px;
    margin:auto;
    font-size:1.1rem;
    line-height:1.8;
}


/*====================================
    CONTACT SECTION
====================================*/

.contact-section{
    padding:80px 0;
    background:#f8f9fa;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
}


/*====================================
    CONTACT INFO
====================================*/

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-info h2{
    color:#003366;
    margin-bottom:15px;
}

.contact-info>p{
    margin-bottom:35px;
    color:#666;
    line-height:1.8;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#003366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
    transition:.3s;
}

.info-box:hover i{
    background:#c62828;
    transform:scale(1.08);
}

.info-box h4{
    margin-bottom:8px;
    color:#003366;
}

.info-box p{
    color:#555;
    line-height:1.7;
}

/*====================================
    SOCIAL SECTION
====================================*/

.social-section{
    padding:70px 0;
    text-align:center;
    background:#fff;
    
}

.social-section h2{
    color:#003366;
    
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:50px;
}

.social-icons a{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#003366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:24px;
    transition:.3s;
}

.social-icons a:hover{
    background:#c62828;
    transform:translateY(-6px);
    margin-bottom: 50px;
}


/*====================================
    GOOGLE MAP
====================================*/

.map-section{
    padding:80px 0;
    background:#f8f9fa;
}

.map-section h2{
    text-align:center;
    color:#003366;
    margin-bottom:35px;
}

.map-container{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}