/* =========================
   CONTACT PAGE CSS
========================= */

.contact-banner {

    height: 50vh;

    background: url('../images/banners/banner5.jpg') center/cover no-repeat;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}

.banner-overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,0.6);

}

.banner-content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;

}

.banner-content h1 {

    font-size: 52px;

    margin-bottom: 10px;

}

/* CONTACT SECTION */

.contact-section {

    padding: 80px 0;

}

.contact-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

}

.contact-info h2 {

    margin-bottom: 20px;

    color: #0a58ca;

}

.contact-info p {

    margin-bottom: 25px;

    color: #555;

}

.info-box {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;

}

.info-box i {

    width: 50px;

    height: 50px;

    background: #0a58ca;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

}

.contact-social {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}

.contact-social a {

    width: 45px;

    height: 45px;

    background: #0a58ca;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;

}

.contact-social a:hover {

    background: #084298;

}

/* CONTACT FORM */

.contact-form {

    background: #f8f9fa;

    padding: 35px;

    border-radius: 10px;

}

.contact-form form {

    display: flex;

    flex-direction: column;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 15px;

    margin-bottom: 20px;

    border: 1px solid #ddd;

    border-radius: 5px;

    outline: none;

    font-family: 'Poppins', sans-serif;

}

.contact-form button {

    padding: 15px;

    border: none;

    background: #0a58ca;

    color: #fff;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: 0.3s;

}

.contact-form button:hover {

    background: #084298;

}

/* MAP */

.map-section iframe {

    width: 100%;

    height: 450px;

    border: 0;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width: 768px) {

    .banner-content h1 {

        font-size: 34px;

    }

    .contact-form {

        padding: 25px;

    }

}

@media(max-width: 480px) {

    .banner-content h1 {

        font-size: 28px;

    }

    .banner-content p {

        font-size: 14px;

        padding: 0 10px;

    }

    .contact-form {

        padding: 20px;

    }

}