/* --- Expandable Map --- */
.address-container {
    position: relative;
}

.map-reveal {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 300px;
    height: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    /* Stylize Google Maps to dark mode */
    filter: invert(90%) hue-rotate(180deg) contrast(1.2) sepia(20%) hue-rotate(320deg); 
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.address-container:hover .map-reveal {
    height: 200px;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .map-reveal {
        width: 250px;
        left: 50%;
        transform: translateX(-50%);
    }
}
