.contact-locations {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 560px;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.16);
}

.contact-locations-panel {
  background: #f4f5f4;
  padding: 36px 32px;
}

.contact-locations-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-locations-title::before {
  content: "";
  width: 8px;
  height: 46px;
  background: #10231c;
  border-radius: 999px;
}

.contact-locations-title h3 {
  margin: 0;
  color: #050706;
  font-size: 34px;
  line-height: 1;
}

.contact-locations-list {
  display: grid;
  gap: 0;
}

.contact-location-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(5, 7, 6, 0.12);
  background: transparent;
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font: inherit;
}

.contact-location-row:last-child {
  border-bottom: 0;
}

.contact-location-clock {
  width: 48px;
  height: 48px;
  border: 2px solid #050706;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #050706;
  color: #ffffff;
}

.contact-location-clock::before,
.contact-location-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: #83d46c;
  transform-origin: bottom center;
  border-radius: 999px;
}

.contact-location-clock::before {
  height: 16px;
  transform: translate(-50%, -100%) rotate(var(--hour-angle, 0deg));
}

.contact-location-clock::after {
  height: 20px;
  transform: translate(-50%, -100%) rotate(var(--minute-angle, 90deg));
}

.contact-location-clock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
}

.contact-location-name {
  display: block;
  color: #050706;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-location-meta {
  display: block;
  color: rgba(5, 7, 6, 0.62);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 4px;
}

.contact-location-time {
  display: block;
  color: #1c6b4f;
  line-height: 1.4;
  margin-top: 4px;
}

.contact-location-time span {
  display: block;
  color: rgba(5, 7, 6, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.contact-location-time strong {
  display: block;
  color: #1c6b4f;
  font-size: 13px;
  font-weight: 800;
}

.contact-location-toggle {
  color: #050706;
  font-size: 18px;
  letter-spacing: 2px;
}

.contact-location-row.is-active .contact-location-clock {
  background: #ffffff;
  color: #050706;
}

.contact-locations-map {
  position: relative;
  min-height: 560px;
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 94, 126, 0.08), transparent 32%),
    linear-gradient(135deg, #f4fbff, #eaf6fb);
  overflow: hidden;
}

.contact-world-map {
  position: absolute;
  inset: 4% 1%;
  width: 98%;
  height: 92%;
  display: block;
  object-fit: contain;
  opacity: 1;
  filter: saturate(1.18) contrast(1.2);
}

.contact-map-pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #83d46c;
  background: rgba(28, 107, 79, 0.12);
  box-shadow: 0 0 0 7px rgba(28, 107, 79, 0.14), 0 0 22px rgba(28, 107, 79, 0.32);
  cursor: pointer;
}

.contact-map-pin::before,
.contact-map-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(28, 107, 79, 0.78);
}

.contact-map-pin::after {
  inset: 8px;
  background: #1c6b4f;
}

.contact-map-pin.is-active {
  box-shadow: 0 0 0 9px rgba(28, 107, 79, 0.22), 0 0 34px rgba(28, 107, 79, 0.42);
}

.contact-map-label {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 4;
  display: none;
  min-width: 180px;
  max-width: 240px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: #10231c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.contact-map-label.top {
  transform: translate(-50%, calc(-100% - 24px));
}

.contact-map-label.right {
  transform: translate(28px, -50%);
}

.contact-map-label.left {
  transform: translate(calc(-100% - 28px), -50%);
}

.contact-map-label.bottom {
  transform: translate(-50%, 28px);
}

.contact-map-label.is-active {
  display: block;
}

.contact-map-label strong {
  display: block;
  margin-bottom: 4px;
}

.contact-map-label span {
  display: block;
  color: rgba(16, 35, 28, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .contact-locations {
    grid-template-columns: 1fr;
  }

  .contact-locations-map {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .contact-locations-panel {
    padding: 28px 22px;
  }

  .contact-locations-title h3 {
    font-size: 28px;
  }

  .contact-location-row {
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
  }

  .contact-location-clock {
    width: 42px;
    height: 42px;
  }

  .contact-location-name {
    font-size: 16px;
  }

  .contact-locations-map {
    min-height: 360px;
  }

  .contact-map-label {
    min-width: 160px;
    max-width: 190px;
  }
}
