/* SECTION */
.all-location {
  margin-top: 4rem;
  text-align: center;
}

.all-location h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ROW */
.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  animation: rowFadeIn 0.8s ease forwards;
  margin-top: 20px;
}

/* ANIMATION */
@keyframes rowFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COLUMN CARD */
.column {
  width: 23%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* HOVER LIFT */
.column:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* IMAGE HOVER EFFECT */
.column:hover img {
  transform: scale(1.1);
  filter: brightness(85%);
}

/* OVERLAY */
.location-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  /* backdrop-filter: blur(2px); */
  padding: 15px;
  transition: all 0.4s ease;
}

/* OVERLAY HOVER */
.column:hover .location-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  backdrop-filter: blur(4px);
}

/* TEXT */
.location-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.location-overlay p {
  font-size: 13px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  opacity: 0.85;
}

/* TEXT HOVER ANIMATION */
.column:hover .location-overlay h4 {
  transform: translateY(-3px);
}

/* BUTTONS */
.viewmore-button,
.viewless-button {
  display: none;
  margin: 25px auto 0;
  padding: 10px 22px;
  background: transparent;
  color: #001730;
  font-weight: 600;
  border: 1.5px solid #001730;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.viewmore-button:hover,
.viewless-button:hover {
  background: #001730;
  color: #fff;
  transform: translateY(-2px);
}

/* ICON */
.viewmore-button i,
.viewless-button i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.viewmore-button.expanded i {
  transform: rotate(180deg);
}

