/* =====================================================
   HOME – ABOUT TEN/MET (TRANSPARENT MAP VERSION)
===================================================== */

#home-about {
  padding: 3rem 1.25rem;
  background: #f7faf9;
  overflow-x: hidden;
}

/* ================== LAYOUT ================== */
.home-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ================== TEXT ================== */
.home-about-text {
  max-width: 560px;
}

.home-about-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a7c66;
  margin-bottom: 0.5rem;
}

.home-about-heading {
  font-size: 1.9rem;
  line-height: 1.25;
  color: #0b2e27;
  margin-bottom: 1rem;
}

.home-about-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #425f58;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.home-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.home-about-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #0e75c2;
  margin-bottom: 0.75rem;
}

.home-about-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0e75c2;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.home-about-cta {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  /* border-radius: 999px; */
  background: #0e75c2;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.home-about-cta:hover {
  background: #086a58;
}

/* ================== MAP ================== */
.home-about-map {
  display: flex;
  justify-content: center;
}

/* TRANSPARENT MAP CONTAINER */
.tz-map-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.15;

  /* KEY CHANGES */
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Transparent PNG/SVG map */
.tz-map-bg {
  position: absolute;
  inset: 0;
  background: url("../images/abt-latest.png") center / contain no-repeat;
  pointer-events: none;
}

/* ================== PINS ================== */
.tz-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #0a7c66;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 124, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(10, 124, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 124, 102, 0);
  }
}

/* ================== TOOLTIP ================== */
.tz-tooltip {
  position: absolute;
  min-width: 190px;
  background: #0b2e27;
  color: #ffffff;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 10;
}

.tz-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================== DESKTOP ================== */
@media (min-width: 900px) {
  .home-about-container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .home-about-text {
    flex: 1 1 55%;
  }

  .home-about-map {
    flex: 1 1 45%;
    justify-content: flex-end;
  }
}
