/* ==================== Google Maps Iframe Fix ==================== */
.map-placeholder {
    position: relative;
    width: 100%;
  height: 450px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-sand));
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 10px;
}

.map-placeholder small {
    display: none;
}

/* Responsive Google Maps */
@media (max-width: 768px) {
    .map-placeholder {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
      height: 280px;
    }
}
