/* Inner Tour Detail Page Styles */

/* Page Header */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30,58,138,0.8), rgba(30,58,138,0.9));
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.125rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-meta i {
  color: var(--secondary);
}

/* Tour Detail Layout */
.tour-detail-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.tour-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}

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

.tour-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.overview-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.highlights-list i {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 4px;
}

/* Itinerary Timeline */
.itinerary-timeline {
  margin-bottom: 48px;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: -32px;
  width: 2px;
  background: var(--border-color);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-day {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--primary-light);
}

.timeline-content {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--text-muted);
}

/* Inclusions & Exclusions */
.inc-exc-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .inc-exc-box {
    grid-template-columns: 1fr;
  }
}

.inc-card, .exc-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.inc-card h3 { color: #10B981; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;}
.exc-card h3 { color: #EF4444; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;}

.inc-card ul li, .exc-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.inc-card ul li i { color: #10B981; margin-top: 4px;}
.exc-card ul li i { color: #EF4444; margin-top: 4px;}

/* Sidebar */
.tour-sidebar {
  position: sticky;
  top: 100px;
}

.booking-widget {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.booking-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.booking-price span {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-price h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 800;
}

.booking-form .form-group {
  margin-bottom: 16px;
}

.booking-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  transition: var(--transition);
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.booking-form .btn {
  width: 100%;
  margin-top: 16px;
}

.help-widget {
  background: var(--primary);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}

.help-widget i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.help-widget h3 {
  margin-bottom: 16px;
}

.help-widget a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
