.section {
  padding: 7rem 4rem;
  background: var(--surface);
}

.services-section {
  position: relative;
}

.max-w {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 760px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.8rem;
  letter-spacing: -0.03em;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-subcopy {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 620px;
}

/* GRID */

.destinations-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.destinations-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

/* CARD */

.dest-card {
  height: 100%;

  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    var(--surface);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 28px;

  padding: 3.2rem 2.7rem;

  transition:
    transform 0.45s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);

  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-8px);

  background: var(--surface2);

  border-color: rgba(212, 175, 55, 0.28);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 175, 55, 0.06);
}

.dest-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -30%;

  width: 60%;
  height: 1px;

  background: linear-gradient(90deg, transparent, var(--gold), transparent);

  transition: 0.6s ease;
}

.dest-card:hover::before {
  left: 70%;
}

.dest-card-glow {
  position: absolute;
  inset: auto -80px -80px auto;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.14) 0%,
    transparent 70%
  );

  pointer-events: none;
}

.featured-service {
  border-color: rgba(212, 175, 55, 0.18);
}

/* TOP */

.dest-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.dest-icon {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.dest-badge {
  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.03);

  color: var(--muted);

  padding: 0.5rem 0.9rem;

  border-radius: 999px;

  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-badge {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.08);
}

/* CONTENT */

.dest-title-lg {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.dest-copy-lg {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.9;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;

  margin-top: 1.6rem;
}

.route-tags span {
  padding: 0.55rem 0.9rem;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: #d8d8d8;

  font-size: 0.76rem;
}

/* FEATURES */

.dest-feature-list {
  list-style: none;

  margin-top: 2rem;

  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.dest-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  color: var(--muted);

  font-size: 0.92rem;
}

.gold-text {
  color: var(--gold);
}

/* FOOTER */

.dest-footer {
  margin-top: auto;
  padding-top: 2.8rem;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.dest-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.dest-price-num {
  font-family: var(--font-d);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.dest-price-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.dest-arrow {
  color: var(--gold);

  font-size: 0.95rem;
  font-weight: 500;

  opacity: 0;

  transform: translateX(-10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.dest-card:hover .dest-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hero-video-fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65) brightness(0.48);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .destinations-grid-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 5rem 1.5rem;
  }

  .dest-card {
    padding: 2.4rem 2rem;
  }

  .dest-title-lg {
    font-size: 1.7rem;
  }

  .dest-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .dest-arrow {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 2.3rem;
  }

  .dest-icon {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }

  .dest-price-num {
    font-size: 2.1rem;
  }
}
