/* ══════════════════════════════════════════════════════════
   POPULAR DESTINATIONS
══════════════════════════════════════════════════════════ */
.destinations-section {
  background: #F2E8D5;
  padding: 6rem 2.5rem;
}

.destinations-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── HEADER ──────────────────────────────────────────────── */
.destinations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.destinations-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.destinations-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  margin-top: 0.35rem;
  font-style: italic;
}

/* ── TRACK WRAPPER ───────────────────────────────────────── */
.dest-pkg-track-wrapper {
  overflow: hidden;
}

/* ── TRACK ───────────────────────────────────────────────── */
.destinations-grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── CARD ────────────────────────────────────────────────── */
.dest-pkg-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.dest-pkg-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

/* ── CARD IMAGE ──────────────────────────────────────────── */
.dest-pkg-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #ddd;
}

.dest-pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dest-pkg-card:hover .dest-pkg-img-wrap img {
  transform: scale(1.05);
}

.dest-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  z-index: 1;
}

/* ── CARD BODY ───────────────────────────────────────────── */
.dest-pkg-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.dest-pkg-location {
  font-size: 0.78rem;
  color: #888;
  font-weight: 400;
}

.dest-pkg-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}

.dest-pkg-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin-top: 0.15rem;
}

/* ── META (dates + nights) ───────────────────────────────── */
.dest-pkg-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.6rem;
}

.dest-pkg-dates {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #555;
}

.dest-pkg-dates svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #888;
}

.dest-pkg-nights {
  font-size: 0.78rem;
  color: #555;
  padding-left: 1.35rem;
}

/* ── PRICE ───────────────────────────────────────────────── */
.dest-pkg-price {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.dest-pkg-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
}

/* ── NAV ─────────────────────────────────────────────────── */
.destinations-nav {
  display: flex;
  gap: 0.5rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-pkg-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 600px) {
  .dest-pkg-card {
    flex: 0 0 100%;
  }
  .dest-pkg-track-wrapper {
    overflow: auto;
  }
}
