/* Contact page only CSS */
/* contact reach section start */

.contact-reach-section .row {
    row-gap: 50px;
}

.contact-reach-content {
    max-width: 520px;
}

.contact-reach-content .section-subtitle {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #004A92;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.contact-reach-content .section-subtitle span {
    width: 21px;
    height: 2px;
    display: block;
    flex-shrink: 0;
    background: #F9B42B;
}

.contact-reach-content h2 {
    margin: 0 0 15px;
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.contact-reach-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-reach-item {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #202020;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-reach-item:hover {
    color: #004A92;
}

.contact-reach-icon {
    width: 23px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00549B;
}

.contact-social {
    margin-top: 31px;
}

.contact-social h3 {
    margin: 0 0 19px;
    color: #004A92;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-social-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact-social-links a {
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-social-links a:hover {
    transform: translateY(-3px);
}

.contact-social-links img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.contact-map-wrap {
    position: relative;
    padding: 12px 14px 0 0;
}

.contact-map-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 14px);
    height: calc(100% - 12px);
    background: #F9B42B;
    border-radius: 15px;
}

.contact-map {
    position: relative;
    height: 460px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: -10px 12px 20px rgba(0, 0, 0, 0.16);
    background: #eeeeee;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* contact reach section end */

@media (max-width: 1199px) {

    .contact-reach-content h2 {
        font-size: 33px;
    }

    .contact-map {
        height: 430px;
    }

}

@media (max-width: 991px) {

    .contact-reach-section .col-6 {
        width: 100%;
    }

    .contact-reach-content {
        max-width: 650px;
        margin: 0 auto;
    }

    .contact-map {
        height: 460px;
    }

}

@media (max-width: 767px) {

    .contact-reach-content .section-subtitle {
        font-size: 14px;
    }

    .contact-reach-content h2 {
        font-size: 30px;
    }

    .contact-reach-list {
        gap: 16px;
    }

    .contact-reach-item {
        gap: 12px;
        font-size: 16px;
    }

    .contact-social {
        margin-top: 26px;
    }

    .contact-map-wrap {
        padding: 9px 9px 0 0;
    }

    .contact-map-bg {
        width: calc(100% - 9px);
        height: calc(100% - 9px);
        border-radius: 12px;
    }

    .contact-map {
        height: 380px;
        border-radius: 12px;
        box-shadow: -7px 9px 16px rgba(0, 0, 0, 0.15);
    }

}

@media (max-width: 575px) {

    .contact-map {
        height: 330px;
    }

    .contact-reach-item {
        font-size: 15px;
    }

}