/* ==========================================================================
   Tour Page Enhancements
   Additive-only polish layer for tour-details pages.
   Does not override main.css — only adds new, scoped components
   (trust strip) and light refinements that inherit the site's own
   fonts/colors so it stays visually consistent with the rest of the site.
   ========================================================================== */

.trust-strip {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.trust-strip i {
  color: var(--accent-color, #d4af37);
}

.trust-strip span {
  color: var(--heading-color, inherit);
}

@media (max-width: 575px) {
  .trust-strip {
    font-size: 0.85rem;
    gap: 1rem !important;
  }
}

/* Slightly stronger visual weight on price card, without changing its
   declared colors — just adds depth consistent with a "premium" feel */
.pricing-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Ensure long tour titles on the hero still wrap gracefully on mobile */
.hero-content h1 {
  line-height: 1.15;
}

/* Keep feature tags from overflowing on narrow screens */
.day-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ==========================================================================
   Tours Listing Page (tours.html) — category-grouped tour sections
   ========================================================================== */
.tours-category-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color, #1B3358);
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color, #E8720C);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tours-category-title i {
  color: var(--accent-color, #E8720C);
}

.travel-tours .tours-grid .tour-item .tour-image-link {
  display: block;
}

.travel-tours .tours-grid .tour-item .tour-details h4 a {
  color: inherit;
  text-decoration: none;
}

.travel-tours .tours-grid .tour-item .tour-details h4 a:hover {
  color: var(--accent-color, #E8720C);
}

.travel-tours .tours-grid .tour-item .tour-explore-btn {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
