/* Section */
.contactus-section {
    background: #f9fbff;
}

/* Title */
.contact-underline {
    width: 80px;
    height: 4px;
    background: #e91e63;
    margin-top: 10px;
    border-radius: 10px;
}

/* Contact Card */
.contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border-left: 5px solid #e91e63;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: #fff5f9;
}

.contact-card h4 {
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.contact-card p {
    color: #555;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.contact-card i {
    color: #e91e63;
    margin-right: 6px;
}

/* MAP */
.map-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
    display: flex;
    justify-content: space-between;
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(10%) contrast(1.05);
    transition: 0.4s ease;
}

.map-box:hover iframe {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.01);
}

/* Mobile */
@media (max-width: 768px) {
    .map-box iframe {
        height: 300px;
    }
}

#dynamic-map-iframe1 {
    width: 100%;
    border: 2px solid #e91e63 !important;
}
#dynamic-map-iframe2 {
    width: 100%;
    border: 2px solid #e91e63 !important;
}

/* Map Wrapper */
.map-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border: 4px solid #fff;
    background: #fff;
}

/* Map iframe */
.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
    transition: all 0.6s ease;
    opacity: 0;
    transform: scale(1.05);
    position: absolute;
    top: 0;
    left: 0;
}

/* Active map */
.map-box iframe.active-map {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

/* Hover glow */
.map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 0 rgba(233, 30, 99, 0.4);
    transition: 0.4s ease;
    pointer-events: none;
}

.map-box:hover::after {
    box-shadow: inset 0 0 30px rgba(233, 30, 99, 0.3);
}

/* Active card */
.contact-card.active {
    background: #fff5f9;
    border-left: 5px solid #e91e63;
    transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 768px) {
    .map-box iframe {
        height: 300px;
    }
}
