/* === BGT Map Section Styling === */
#bgt-map.locations {
  background: black; /* Or transparent if you want */
}

#bgt-map .map iframe {
  border-radius: 12px;
  width: 100%;
  height: 500px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Optional hover effect */
#bgt-map .map iframe:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
