.destinations-section {
  padding: 60px 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.region-tabs {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

.region-tabs li {
  cursor: pointer;
  padding-bottom: 12px;
  font-weight: 500;
  position: relative;
}

.region-tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff7a00;
}

.region-content {
  display: none;
}

.region-content.active {
  display: block;
}

.destination-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

.destination-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
}

.destination-card.large {
  grid-row: span 2;
  height: 460px;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
}

@media(max-width: 991px) {
  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }
  .destination-card.large {
    height: 220px;
    grid-row: auto;
  }

  .section-title {
        font-size: 28px;
  }
}

.region-tabs {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0 0 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;

  overflow-x: auto;              /* ✅ enables horizontal scroll */
  white-space: nowrap;           /* ✅ prevents line break */
  -webkit-overflow-scrolling: touch;
}

.region-tabs::-webkit-scrollbar {
  height: 4px;
}

.region-tabs::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 4px;
}

.region-tabs li {
  flex-shrink: 0;                /* ✅ prevents tab shrinking */
  cursor: pointer;
  padding-bottom: 12px;
  font-weight: 500;
  position: relative;
}
