/* Contact Page CSS */

/* Map embed */
.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}

.contact-map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Chat button pulse */
#open-chat-btn {
    position: relative;
    overflow: hidden;
}

#open-chat-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: rgba(0, 0, 0, 0.05);
    transition: opacity 0.2s ease;
}

#open-chat-btn:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-map-wrap {
        padding-bottom: 80%;
    }
}