/* ===========================
   SINGLE TOUR PAGE STYLES
   Mountain Village Trekking
   Built with BEM + Bootstrap 5.3.3
=========================== */

.single-tour-page {
  --primary-color: #0d6efd; /* Brand primary color */
  --accent-color: #ffc107;  /* Highlight or action color */
}

/* Page title */
.single-tour-page__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
}

/* Wrapper for each main content section */
.single-tour-page__section {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03); /* subtle shadow */
}

/* Meta box items (e.g., days, destination, min age) */
.single-tour-page__meta-box {
  font-weight: 600;
  color: #444;
}

/* Rating stars (static for now, dynamic later) */
.single-tour-page__rating {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* ===========================
   META INFO SECTION STYLES
=========================== */

/* Meta box container spacing & hover effect */
.single-tour-page__meta-box {
  padding: 1rem;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
  border-radius: 0.5rem;
}

.single-tour-page__meta-box:hover {
  background-color: #f8f9fa;
}

/* Icon styling inside meta box */
.single-tour-page__meta-box-icon {
  font-size: 1.5rem; /* Adjust icon size */
  color: #88940b;
  margin-right: 0.5rem;
}

/* Label (e.g., "Days", "Destination") */
.single-tour-page__meta-box-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

/* Value below each label (e.g., "14", "Available") */
.single-tour-page__meta-box-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
}

/* Responsive spacing on small screens */
@media (max-width: 767.98px) {
  .single-tour-page__meta-box {
    margin-bottom: 1.5rem;
  }
}

/* ===========================
   GALLERY
=========================== */

/* Gallery thumbnails inside swiper */
.single-tour-page__gallery .swiper-slide img {
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.single-tour-page__gallery .swiper-slide img:hover {
  transform: scale(1.05);
}

/* ===========================
   ITINERARY TIMELINE STYLES
=========================== */

.itinerary-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

/* Dot marker on the timeline */
.itinerary-timeline__dot {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  z-index: 2;
  box-shadow: 0 0 0 3px #e9f0ff;
}

/* Full clickable row */
.itinerary-timeline__trigger {
  padding: 0.5rem 0;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 0.5rem;
}

.itinerary-timeline__trigger:hover {
  background-color: #f8f9fa;
}

/* Day label */
.itinerary-timeline__day {
  font-size: 1rem;
}

/* Title of the itinerary */
.itinerary-timeline__title {
  font-size: 1.05rem;
}

/* Toggle icon */
.itinerary-timeline__icon i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.itinerary-timeline__trigger[aria-expanded="true"] .itinerary-timeline__icon i {
  transform: rotate(180deg);
}

/* Description section */
.itinerary-timeline__desc p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .itinerary-timeline__item {
    padding-bottom: 1.5rem;
  }
}

/* ===========================
   FAQ Accordion Section
=========================== */

/* Open state accordion styling */
.single-tour-page__faq .accordion-button:not(.collapsed) {
  background-color: #e9f0ff;
  color: var(--primary-color);
}

/* ===========================
   BOOKING FORM
=========================== */

/* Booking form title */
.single-tour-book-form__title {
  font-size: 1.25rem;
  font-weight: bold;
}

/* Form labels */
.single-tour-book-form__label {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
  display: block;
}

/* Input and textarea fields */
.single-tour-book-form__input,
.single-tour-book-form__textarea {
  width: 100%;
  height: 48px;
  padding: 0.75rem 1rem;
  font-size: 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: #f9f9f9;
  transition: border-color 0.2s ease;
}

/* Input focus styling */
.single-tour-book-form__input:focus,
.single-tour-book-form__textarea:focus {
  border-color: var(--accent-color);
  background-color: #fff;
  outline: none;
}

/* Textarea height override */
.single-tour-book-form__textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.single-tour-book-form__submit {
  display: inline-block;
  width: 100%;
  background-color: var(--accent-color);
  color: #1a1818;
  padding: 0.75rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

/* Submit hover */
.single-tour-book-form__submit:hover {
  background-color: #f5c518;
}

/* Field group spacing */
.single-tour-book-form__group {
  margin-bottom: 1.25rem;
}

/* ===========================
   EXPERT HELP BOX
=========================== */

.expert-help__img {
  object-fit: cover;
  border: 2px solid #fff;
}

.expert-help__title {
  font-weight: 600;
  font-size: 1rem;
}

.expert-help__desc {
  font-size: 0.95rem;
}

/* CTA button in expert help */
.expert-help__btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #fff;
  color: #198754; /* Bootstrap success color */
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: none;
}

/* Button hover */
.expert-help__btn:hover {
  background-color: #e6ffe6;
  color: #0f5132;
  text-decoration: none;
}

/* ===========================
   SINGLE TOUR CARD STYLES
   Mountain Village Trekking
   Built with BEM + Bootstrap 5.3.3
=========================== */

/* ===========================
           TOUR CARD   
=============================== */
/* Card container */
.tour-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  background-color: #fff;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Image background */
.tour-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  position: relative;
}

.tour-card:hover .tour-card__image {
  transform: scale(1.05);
}

/* Rating overlay */
.tour-card__overlay {
  font-size: 0.85rem;
  padding: 0.5rem;
}

.tour-card__rating-pill {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Title */
.tour-card h5 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.tour-card a:hover h5 {
  color: #0d6efd;
}

/* Labels & Values */
.tour-card .text-muted {
  font-size: 0.85rem;
  color: #6c757d;
}

.tour-card .text-muted strong {
  display: block;
  font-size: 0.95rem;
  color: #000;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Icons - BEM Styled */
.tour-card__icon {
  font-size: 1.3rem;
  vertical-align: middle;
  margin-right: 0.35rem;
}

/* Individual icon color variants */
.tour-card__icon--destination {
  color: #88940b; /* blue */
}
.tour-card__icon--days {
  color: #88940b; /* teal */
}
.tour-card__icon--availability {
  color: #88940b; /* indigo */
}
.tour-card__icon--heart {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: all 0.2s ease;
}
.tour-card__icon--heart:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}



/* ===========================
   SECTION; TOUR GRID
=========================== */
.best-trips-section__subtitle {
  font-family: 'Pacifico', cursive;
  color: #FFD52E;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.best-trips-section__title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #5C3B16;
}