.destination-slider {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px 45px;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.destination-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destination-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.05) 65%
  );
  pointer-events: none;
}

.destination-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 25px;
  text-align: center;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
  transform: translateY(0);
  opacity: 1;
}

.destination-overlay h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.destination-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.destination-btn:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

.slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #111;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev {
  left: 5px;
}

.slider-arrow.next {
  right: 5px;
}

/* Tablet */
@media (max-width: 900px) {
  .destination-card {
    flex: 0 0 calc((100% - 20px) / 2);
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .destination-slider {
    padding: 10px 38px;
  }

  .slider-track {
    gap: 15px;
  }

  .destination-card {
    flex: 0 0 100%;
    height: 450px;
    border-radius: 16px;
  }

  .destination-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 25px 15px;
  }

  .destination-overlay h3 {
    font-size: 27px;
  }

  .destination-btn {
    padding: 11px 22px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .slider-arrow.prev {
    left: 3px;
  }

  .slider-arrow.next {
    right: 3px;
  }
}