/* =========================================================
   HOME 5 – LOCATIONS WE SERVICE
   Updated:
   - Removed cities list styles
   - Removed "See More" button styles
   - Centered state/country name
   ========================================================= */

.home5-locations{
  background: var(--gc-dark-blue);
  padding: clamp(48px, 6vw, 96px) 0;
  color: #fff;
}

.home5-title{
  text-align: center;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  font-size: clamp(1.6rem, 1.25rem + 1.4vw, 2.4rem);
}

/* GRID */
.home5-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 22px);
}

/* CARD */
.home5-card{
  position: relative;
  border-radius: 16px;
  border: 2px solid #ff8204;
  overflow: hidden;
  text-decoration: none !important;
  min-height: 240px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Map image */
.home5-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--map);
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.home5-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.45) 100%
  );
}

/* INNER */
.home5-card__inner{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 18px;
  display: grid;
  place-items: center; /* ✅ center text vertically/horizontally */
}

/* STATE/COUNTRY NAME */
.home5-card__state{
  text-align: center;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 26px rgba(0,0,0,.35);
  letter-spacing: -0.01em;
}

/* HOVER */
.home5-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .home5-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .home5-grid{ grid-template-columns: 1fr; }
}
