/* ===========================
   Single Tour Page Styles
   =========================== */

.tour-details-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Cormorant Garamond", serif;
}

.tour-details-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.tour-details-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* Tour Content */
.tour-content {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
}

.tour-excerpt {
  background: #fff;
  padding: 25px;
  border-left: 4px solid #f5c842;
  margin-bottom: 30px;
}

.excerpt-text {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  font-style: italic;
}

.tour-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.tour-description p {
  margin-bottom: 20px;
}

.tour-highlights,
.tour-includes,
.tour-excludes {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tour-highlights h3,
.tour-includes h3,
.tour-excludes h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.highlights-content ul,
.includes-content ul,
.excludes-content ul {
  list-style: none;
  padding: 0;
}

.highlights-content li,
.includes-content li,
.excludes-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.highlights-content li:before,
.includes-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5c842;
  font-weight: bold;
}

.excludes-content li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

/* Tour Sidebar */
.tour-sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.tour-info-box,
.related-tours-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.tour-info-box h3,
.related-tours-box h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f5c842;
  letter-spacing: 1px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.info-label {
  font-weight: 600;
  color: #333;
  font-size: 1.05rem;
}

.info-value {
  color: #666;
  font-size: 1.05rem;
}

.btn-book-now {
  display: block;
  width: 100%;
  padding: 15px 30px;
  margin-top: 25px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Cormorant Garamond", serif;
}

.btn-book-now:hover {
  background: #f5c842;
  border-color: #f5c842;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Tours */
.related-tours-list {
  margin-top: 15px;
}

.related-tour-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.related-tour-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-tour-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.related-tour-info {
  flex: 1;
}

.related-tour-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.related-tour-info h4 a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-tour-info h4 a:hover {
  color: #f5c842;
}

.related-price {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .tour-details-wrapper {
    grid-template-columns: 1fr;
  }

  .tour-sidebar {
    position: static;
  }

  .tour-content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .tour-details-section {
    padding: 60px 20px;
  }

  .tour-content {
    padding: 25px 15px;
  }

  .tour-info-box,
  .related-tours-box {
    padding: 20px;
  }

  .excerpt-text {
    font-size: 1.05rem;
  }

  .tour-description {
    font-size: 1rem;
  }
}
