* {
  margin: 0;
  padding: 0;
}

/* MAP BACKGROUND */
.map-section {
  background: url("../images/map.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 800px;
  width: 100%;
  display: flex;
  align-items: center;
}

.map-number-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.map-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-left: 60px;
}

/* EACH ITEM */
.map-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

/* ICON (IMAGE) */
.map-icon {
  width: 45px;
  height: 45px;        /* fixed ratio */
  object-fit: contain;  /* 🔥 keep image perfect on all devices */
}

/* NUMBER + LABEL */
.map-info {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.map-counter-number {
  font-size: 64px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #ee1b22;
}

.map-label {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-top: 5px;
}

/* PLUS SIGN */
.map-plus {
  font-size: 64px;
  font-weight: 700;
  color: #ee1b22;
  font-family: "Poppins", sans-serif;
}

/* =========================================
   📱 MOBILE RESPONSIVE (0px - 480px)
   ========================================= */
@media (max-width: 480px) {
  .map-section {
    height: auto;
    padding: 40px 20px;
  }

  .map-content {
    padding-left: 0;
    gap: 25px;
  }

  .map-icon {
    width: 32px;
    height: 32px;
  }

  .map-counter-number {
    font-size: 36px;
  }

  .map-plus {
    font-size: 32px;
  }

  .map-label {
    font-size: 16px;
  }
}

/* =========================================
   📱 TABLET RESPONSIVE (481px - 768px)
   ========================================= */
@media (max-width: 768px) and (min-width: 481px) {
  .map-section {
    height: auto;
    padding: 60px 40px;
  }

  .map-content {
    padding-left: 0;
    gap: 30px;
  }

  .map-icon {
    width: 38px;
    height: 38px;
  }

  .map-counter-number {
    font-size: 48px;
  }

  .map-plus {
    font-size: 45px;
  }

  .map-label {
    font-size: 18px;
  }
}
