.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #3b82f6;
}

.map-container {
  margin-top: 60px;
  height: 450px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.6; */
  /* filter: grayscale(1); */
}

.map-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
