/* Custom modal image override for service images */
@media (max-width: 600px) {
  .service-modal-img {
    max-width: 90vw !important;
    max-height: 60vh !important;
  }
}
@media (min-width: 601px) {
  .service-modal-img {
    max-width: 60vw !important;
    max-height: 80vh !important;
  }
}
.service-modal-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Modal overlay: allow scroll position to remain */
.service-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
