@import url("./domestic-packages.css");

.tours-travel-page {
  background: #f7f9fc;
}

.tours-hero {
  background:
    linear-gradient(90deg, rgba(3, 27, 63, 0.96) 0%, rgba(5, 43, 99, 0.72) 40%, rgba(5, 43, 99, 0.08) 74%),
    url("../../images/travel/maldives.jpg") center / cover no-repeat;
}

.tours-section-label {
  margin: 0 0 18px;
}

.showcase-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-family-heading);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.showcase-title i {
  color: var(--travel-orange);
  font-size: 1.15em;
}

.showcase-title span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--travel-orange);
  border-radius: 999px;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.showcase-header:not(:first-child) {
  margin-top: 28px;
}

.showcase-header > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.showcase-header > a:hover,
.showcase-header > a:focus {
  color: var(--travel-orange-dark);
}

.showcase-header--center {
  justify-content: center;
  text-align: center;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.tours-grid .mini-destination-card {
  aspect-ratio: 1 / 1.28;
}

.tours-grid .mini-destination-card span {
  right: 12px;
  bottom: 12px;
  left: 12px;
  font-size: 1rem;
}

.travel-style-card {
  overflow: hidden;
  color: var(--color-primary);
  background: var(--color-card-bg);
  border: 1px solid rgba(5, 43, 99, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.1);
  text-align: center;
  text-decoration: none;
}

.travel-style-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}

.travel-style-card span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--color-primary);
  font-family: var(--font-family-heading);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.travel-style-card:hover img,
.travel-style-card:focus img {
  transform: scale(1.05);
}

.travel-service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 36px 32px;
  padding: 18px 0;
  background: #f8fafc;
  border: 1px solid #e7edf4;
  border-radius: 8px;
}

.travel-service-strip a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--color-primary);
  text-align: center;
  text-decoration: none;
  border-right: 1px solid #dce2ea;
}

.travel-service-strip a:last-child {
  border-right: 0;
}

.travel-service-strip i {
  color: var(--travel-orange);
  font-size: 1.8rem;
}

.travel-service-strip span {
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .tours-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .travel-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-service-strip a {
    border-right: 0;
    border-bottom: 1px solid #dce2ea;
  }

  .travel-service-strip a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .showcase-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .showcase-header--center {
    align-items: center;
  }

  .tours-grid,
  .travel-service-strip {
    grid-template-columns: 1fr;
  }

  .travel-service-strip {
    margin: 0 18px 26px;
  }

  .travel-service-strip a {
    min-height: 68px;
  }
}
