/* service-areas-map-v1 — service detail pages: map banner + embed + cities + work photos */

.service-areas-map {
  background: #f3f3f3 !important;
  color: #2e2e2e !important;
  padding-top: clamp(2.5rem, 5vw, 3.75rem) !important;
  padding-bottom: clamp(2.75rem, 6vw, 4rem) !important;
}

.service-areas-map .section-label {
  color: #6a6a6a !important;
}

.service-areas-map h2 {
  color: #1a1a1a !important;
  margin: 0.35rem 0 0.75rem !important;
}

.service-areas-map-lead {
  color: #5c5c5c !important;
  max-width: 46rem;
  margin: 0 0 1.75rem !important;
  line-height: 1.65;
}

.service-areas-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.service-areas-map-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.service-areas-map-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #0a0a0a;
  object-fit: cover;
  max-height: 280px;
}

.service-areas-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #e8e8e8;
}

.service-areas-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-areas-map-side {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.service-areas-map-side h3 {
  margin: 0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}

.service-areas-map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-areas-map-cities a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1a1a1a !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-areas-map-cities a:hover {
  background: #1c1c1c !important;
  border-color: #1c1c1c !important;
  color: #f0f0f0 !important;
  transform: translateY(-1px);
}

.service-areas-map-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.service-areas-map-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #111;
  aspect-ratio: 4 / 3;
}

.service-areas-map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-areas-map-photo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #f3f3f3 !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-areas-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .service-areas-map-grid {
    grid-template-columns: 1fr;
  }

  .service-areas-map-embed {
    padding-bottom: 68%;
  }
}

@media (max-width: 520px) {
  .service-areas-map-photos {
    grid-template-columns: 1fr 1fr;
  }

  .service-areas-map-banner {
    max-height: 200px;
  }
}
