.map-container {
    position: relative;
    height: 300px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
    /* same as .rounded */
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay (transparent by default) */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease;
}

/* Button styling */
.map-overlay button {
    background-color: #ffffff;
    color: #7386d5;
    /* your main theme color */
    border: 2px solid #7386d5;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* ✨ Hover effects */
.map-container:hover img {
    transform: scale(1.05);
}

.map-container:hover .map-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.map-container:hover .map-overlay button {
    background-color: #7386d5;
    color: #fff;
    border-color: #7386d5;
    transform: scale(1.05);
}