html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   CONTACT HERO
=================================== */

.contact-banner {
    /* background: linear-gradient(135deg, #072b77, #14aae8); */
    padding: 80px 0;
    text-align: center;
    color: #072b77;
}

.contact-banner h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-banner p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    opacity: .95;
}

/* ===================================
   SECTION TAG
=================================== */

.section-tag {
    display: inline-block;
    background: rgba(20, 170, 232, .12);
    color: #14aae8;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ===================================
   CONTACT FORM SECTION
=================================== */

.contact-form-section {
    padding: 100px 0;
}

.contact-form-section h2 {
    font-size: 48px;
    color: #072b77;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-form-section p {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}

.contact-features {
    margin-top: 35px;
}

.contact-features div {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #072b77;
}

.contact-features i {
    color: #14aae8;
    margin-right: 10px;
}

/* ===================================
   FORM BOX
=================================== */

.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.form-control {
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #14aae8 !important;
}

.send-btn {
    background: linear-gradient(135deg, #14aae8, #072b77);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.send-btn:hover {
    transform: translateY(-3px);
}

.success-popup {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    z-index: 9999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: .4s;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.success-popup i {
    font-size: 40px;
    color: #16c784;
    margin-bottom: 10px;
}

.success-popup h4 {
    margin-bottom: 5px;
    color: #052a73;
}

/* ===================================
   MAP SECTION
=================================== */

.map-section {
    background: #f8fbff;
}

.map-box {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.map-box iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.section-title span {
    color: #14aae8;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title h2 {
    color: #072b77;
    font-size: 46px;
    font-weight: 800;
    margin-top: 12px;
}

@media(max-width:768px) {

    .contact-banner {
        padding: 70px 0;
    }

    .contact-banner h1 {
        font-size: 34px;
    }

    .contact-banner p {
        font-size: 16px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-form-section h2 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .contact-cta h2 {
        font-size: 30px;
    }

    .map-box iframe {
        height: 350px;
    }
}

.map-box {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.map-box iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-action {
    padding: 25px;
    text-align: center;
    background: #fff;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #14aae8, #072b77);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.map-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 170, 232, .3);
}