/* ===============================
   GOOGLE FONTS
================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ===============================
   BACKGROUND WRAPPER
================================= */
.contact-bg {
    padding: 0 !important;
    background-color: #F5F1EB !important;
}

/* ===============================
   ROW ALIGNMENT
================================= */
.contact-area .row.align-items-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* LEFT COLUMN REMOVE */
.contact-area .col-lg-5 {
    display: none !important;
}

/* ===============================
   SECTION BASE
================================= */
.contact-info-section {
    padding: 0 !important;
    background: #F5F1EB !important;
}

/* ===============================
   CONTAINER
================================= */
.contact-info-section .container,
.contact-map.container {
    max-width: 1000px !important;
    margin: auto !important;
}

/* ===============================
   TOP IMAGE
================================= */
.contact-image {
    margin-bottom: 30px;
}

.contact-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;

    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

/* HOVER */
.contact-image img:hover {
    transform: scale(1.03);
}

/* ===============================
   TEXT BOX
================================= */
.contact-box {
    text-align: center;
    max-width: 720px;
    margin: 40px auto 50px;
}

/* EMAIL */
.contact-email {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-email span {
    color: #c8a96a;
}

/* DESCRIPTION */
.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6e6e6e;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* THANK YOU */
.contact-thank {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1a1a1a;
}

/* ===============================
   MAP SECTION
================================= */
.contact-map {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    background-color: #F5F1EB !important;
}

/* MAP STYLE */
.contact-map iframe {
    width: 100% !important;
    height: 420px !important;

    border: none !important;
    border-radius: 12px !important;

    filter: grayscale(100%) contrast(90%) brightness(0.95);
    transition: all 0.4s ease;
}

/* HOVER MAP */
.contact-map iframe:hover {
    filter: grayscale(0%) contrast(100%);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .contact-image img {
        height: 260px;
    }

    .contact-box {
        padding: 0 15px;
    }

    .contact-map iframe {
        height: 300px !important;
    }
}