/* ======================================
   DESTINATIONS BLOCK
====================================== */
.db-destinations {
  padding: 9rem 0;
  background: #fafafa;
}

.db-destinations__inner {
  max-width: 1680px;
  padding: 0 0.75rem;
  margin: 0 auto;
}

/* ── Header ── */
.db-destinations__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.db-destinations__header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.db-destinations__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #000;
  background: #f5f2f2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  width: fit-content;
}

.db-destinations__badge svg {
  color: #000;
  flex-shrink: 0;
}

.db-destinations__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #06064e;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.db-destinations__title-highlight {
  color: #06064e;
  margin: 0;
}

.db-destinations__subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
  text-transform: none;
}

/* ── Slider wrap ── */
.db-destinations__slider-wrap {
  position: relative;
}

.db-destinations__track {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 26rem;
}

/* ── Slide ── */
.db-destinations__slide {
  display: none;
  position: relative;
  height: 26rem;
  border-radius: 1.25rem;
  overflow: hidden;
  animation: db-fadein 0.4s ease forwards;
}

.db-destinations__slide--active {
  display: flex;
  align-items: stretch;
  height: 26rem;
}

@keyframes db-fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* BG image */
.db-destinations__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Content */
.db-destinations__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 28rem;
  justify-content: center;
}

.db-destinations__country {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.db-destinations__section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #665200;
  margin: 0;
}

.db-destinations__section-label svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.db-destinations__desc {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.65;
  margin: 0;
  max-width: 23rem;
}

/* Tags */
.db-destinations__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.db-destinations__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: #fff5cc;
  border: 1px solid rgba(102, 82, 0, 0.18);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #665200;
  font-weight: 500;
}

.db-destinations__tag img {
  width: 0.875rem;
  height: 0.875rem;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(28%) sepia(90%) saturate(500%)
    hue-rotate(30deg);
}

/* CTA */
.db-destinations__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(90deg, #0e0eb4 0%, #06064e 100%);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition:
    filter 0.2s ease,
    transform 0.15s ease;
  margin-top: 0.5rem;
}

.db-destinations__cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  color: #fff;
}

/* Arrow inside slide */
.db-destinations__arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.db-destinations__arrow:hover {
  transform: translateY(-50%) translateX(3px);
  opacity: 0.8;
}

/* Dots */
.db-destinations__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.db-destinations__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #fff5cc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.db-destinations__dot--active {
  background: #06064e;
  transform: scale(1.2);
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .db-destinations__header {
    align-items: center;
    text-align: center;
  }

  .db-destinations__subtitle {
    text-align: center;
    max-width: 560px;
  }
}

@media (min-width: 992px) {
  .db-destinations__track {
    min-height: 26rem;
  }

  .db-destinations__slide {
    min-height: 26rem;
  }

  .db-destinations__content {
    padding: 3rem 2.5rem 3rem 3rem;
    max-width: 45rem;
  }

  .db-destinations__arrow {
    right: 2rem;
  }
}

@media (min-width: 1200px) {
  .db-destinations__track {
    height: 36rem;
  }
  .db-destinations__subtitle {
    max-width: 100%;
  }
  .db-destinations__slide,
  .db-destinations__slide--active {
    height: 36rem;
  }
}

@media (max-width: 767px) {
  /* ── Centered header ── */
  .db-destinations__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .db-destinations__subtitle {
    max-width: 100%;
  }

  /* ── Tall portrait slide ── */
  .db-destinations__track,
  .db-destinations__slide,
  .db-destinations__slide--active {
    height: 44rem;
  }

  /* Content fills full slide height so margin-top: auto works */
  .db-destinations__slide--active {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }

  .db-destinations__slide:not(.db-destinations__slide--active) {
    display: none;
  }

  .db-destinations__content {
    flex: 1;
    padding: 1.5rem 1.25rem 2rem !important;
    max-width: 100% !important;
    justify-content: flex-start;
    width: 100%;
    gap: 1.125rem !important;
  }

  .db-destinations__country {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin: 0;
  }

  .db-destinations__section-label {
    margin: 0;
  }

  .db-destinations__desc {
    margin: 0;
  }

  .db-destinations__tags {
    gap: 0.375rem;
    margin: 0;
    margin-top: auto;
  }

  .db-destinations__arrow {
    right: 0.875rem;
    top: 40%;
    font-size: 2rem;
  }

  .db-destinations__tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.625rem;
  }

  /* "+N more" tag style */
  .db-destinations__tag--more {
    background: rgba(255, 245, 204, 0.6);
    font-style: normal;
  }
}

/* ── ≥1200px: show all tags, hide "+N more" ── */
@media (min-width: 1200px) {
  .db-destinations__tag--extra {
    display: inline-flex;
  }

  h3.db-destinations__country {
    font-size: 4rem !important;
  }
  .db-destinations__tag--more {
    display: none;
  }
}

/* ── <1200px: hide extras, show "+N more" ── */
@media (max-width: 1199px) {
  .db-destinations__tag--extra {
    display: none;
  }

  .db-destinations__tag--more {
    display: inline-flex;
  }
}

@media (max-width: 575px) {
  .db-destinations__country {
    font-size: 3.5rem !important;
    margin: 0;
  }

  .db-destinations__track,
  .db-destinations__slide,
  .db-destinations__slide--active {
    height: 42rem;
  }

  .db-destinations__content {
    padding: 5rem 1rem 5rem !important;
    gap: 1rem !important;
  }

  .db-destinations__arrow {
    right: 0.75rem;
    top: 38%;
    font-size: 2rem;
  }
}
