/* ===================================== */


/* CONTACT SECTION */


/* ===================================== */

.contact-map-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 650px;
    background: #fff;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    filter: grayscale(10%);
}


/* RIGHT BOX */

.contact-social-box {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    height: 100%;
}


/* BUTTONS */

.contact-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 20px 24px;
    border-radius: 18px;
    margin-bottom: 18px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}


/* ICON */

.contact-btn-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    font-size: 22px;
}


/* WHATSAPP */

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 12px 25px rgba(37, 211, 102, .28);
}


/* INSTAGRAM */

.instagram-btn {
    background: linear-gradient( 135deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 12px 25px rgba(221, 42, 123, .28);
}


/* FACEBOOK */

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0d5ddf);
    box-shadow: 0 12px 25px rgba(24, 119, 242, .28);
}


/* PHONE */

.phone-btn {
    background: linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 12px 25px rgba(17, 24, 39, .25);
}


/* MAIL */

.mail-btn {
    background: linear-gradient(135deg, #EA4335, #c5221f);
    box-shadow: 0 12px 25px rgba(234, 67, 53, .28);
}


/* MOBILE */

@media (max-width: 991px) {
    .contact-map-box,
    .contact-map-box iframe {
        min-height: 420px;
    }
    .contact-social-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-btn {
        padding: 18px;
        font-size: 15px;
    }
    .contact-btn-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
    }
}

.contact-row {
    align-items: stretch;
}

.contact-row>div {
    display: flex;
}

.contact-map-box,
.contact-social-box {
    width: 100%;
    height: 100%;
}