.embed-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 0.5rem;     /* rounded-lg */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
}

    /* --- Custom CSS --- */
    #modalOverlay {
      transition: opacity 0.3s ease;
      opacity: 0;
      pointer-events: none;
    }
    #modalOverlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    #quoteModal {
      transition: all 0.3s ease;
      transform: scale(0.95);
      opacity: 0;
    }
    #quoteModal.active {
      transform: scale(1);
      opacity: 1;
    }
    body.modal-open {
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .form-container {
        padding: 2rem;
      }
    }
    