/*--------------------------------------------------------------
# Trail Package Page Styles
--------------------------------------------------------------*/

/* Hero Section */
.trail-hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  display: flex;
  align-items: center;
  color: white;
}

.trail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.trail-hero .container {
  position: relative;
  z-index: 2;
}

.trail-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.trail-hero .subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Trail Quick Info Badges */
.trail-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trail-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: white;
}

.trail-badge i {
  color: #ec018a;
  font-size: 1.1rem;
}

/* Trail Overview Section */
.trail-overview {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.trail-overview h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #06518b;
  margin-bottom: 1.5rem;
}

.trail-overview p {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Trail Stats Grid */
.trail-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trail-stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trail-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.trail-stat-item i {
  font-size: 2.5rem;
  color: #ec018a;
  margin-bottom: 1rem;
}

.trail-stat-item h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #06518b;
  margin-bottom: 0.5rem;
}

.trail-stat-item p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Itinerary Section */
.itinerary-timeline {
  position: relative;
  padding-left: 3rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ec018a, #ff4db8);
}

.itinerary-item {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.itinerary-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ec018a;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #ec018a;
}

.itinerary-time {
  display: inline-block;
  background: linear-gradient(135deg, #ec018a, #ff4db8);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.itinerary-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #06518b;
  margin-bottom: 1rem;
}

.itinerary-item p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-box {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.highlight-box .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ec018a, #ff4db8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.highlight-box .icon i {
  font-size: 1.8rem;
  color: white;
}

.highlight-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #06518b;
  margin-bottom: 1rem;
}

.highlight-box p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* What to Bring / Requirements */
.requirements-list {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.requirements-list h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #06518b;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.requirements-list h3 i {
  color: #ec018a;
  font-size: 2rem;
}

.requirements-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list ul li {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.requirements-list ul li:last-child {
  border-bottom: none;
}

.requirements-list ul li i {
  color: #ec018a;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.requirements-list ul li span {
  color: #666;
  line-height: 1.6;
}

/* Difficulty Indicator */
.difficulty-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.difficulty-indicator .level {
  width: 40px;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
}

.difficulty-indicator .level.active {
  background: linear-gradient(90deg, #ec018a, #ff4db8);
}

.difficulty-label {
  margin-left: 1rem;
  font-weight: 600;
  color: #06518b;
}

/* Pricing Box */
.pricing-box {
  background: linear-gradient(135deg, #06518b, #0a7bb5);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: sticky;
  top: 100px;
}

.pricing-box .price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-box .price-currency {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.pricing-box .price-per {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.pricing-box .price-includes {
  text-align: left;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.pricing-box .price-includes h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pricing-box .price-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-box .price-includes ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-box .price-includes ul li i {
  color: #ec018a;
  font-size: 1.1rem;
}

.pricing-box .btn-book {
  background: white;
  color: #06518b;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
}

.pricing-box .btn-book:hover {
  background: #ec018a;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Image Gallery */
.trail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trail-gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.trail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trail-gallery-item:hover img {
  transform: scale(1.1);
}

.trail-gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
}

/* Important Notes / Warnings */
.important-notes {
  background: linear-gradient(135deg, #fff3cd, #fff9e6);
  border-left: 5px solid #ffc107;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.important-notes h4 {
  color: #856404;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.important-notes h4 i {
  font-size: 1.5rem;
}

.important-notes ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #856404;
}

.important-notes ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trail-hero h1 {
    font-size: 2.5rem;
  }

  .trail-hero .subtitle {
    font-size: 1.1rem;
  }

  .trail-badges {
    font-size: 0.85rem;
  }

  .trail-overview {
    padding: 2rem;
    margin-top: -50px;
  }

  .itinerary-timeline {
    padding-left: 2rem;
  }

  .itinerary-item::before {
    left: -2rem;
  }

  .pricing-box {
    position: static;
    margin-top: 2rem;
  }

  .trail-gallery {
    grid-template-columns: 1fr;
  }

  .trail-gallery-item {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .trail-hero {
    min-height: 500px;
  }

  .trail-hero h1 {
    font-size: 2rem;
  }

  .trail-stats-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .pricing-box .price {
    font-size: 2.5rem;
  }
}
