/* ===================================================
   ASPEN JOURNEYS — FINAL PREMIUM DETAILS PAGE FIX
   =================================================== */

/* ============ WRAPPER RESET ============ */
.details-hero,
.package-details {
  all: unset;
  display: block;
}

/* ============ HERO SECTION ============ */
.details-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.details-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%) contrast(1.05);
}

.details-hero .overlay {
  position: absolute;
  inset: 0;
}

.details-hero.heli .overlay {
  background: linear-gradient(180deg, rgba(8,16,40,0.6), rgba(10,18,55,0.9));
}

.details-hero.road .overlay {
  background: linear-gradient(180deg, rgba(10,70,65,0.55), rgba(0,85,75,0.9));
}

.details-hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 900px;
  width: 90%;
}

.details-hero .hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffd86b, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.details-hero .hero-content p {
  color: #eee;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ============ PACKAGE DETAILS ============ */
.package-details {
  background: #f7f9fb;
  padding: 100px 0;
}

.details-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .details-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ============ CONTENT BOXES ============ */
.content-box,
.itinerary-box,
.price-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover,
.itinerary-box:hover,
.price-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.content-box h2,
.itinerary-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 15px;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.highlights li {
  margin: 8px 0;
  font-weight: 500;
  color: #333;
}

/* ============ ITINERARY BOX ============ */
.itinerary-box p {
  color: #333;
  border-left: 3px solid #0b4da2;
  padding: 8px 14px;
  background: #f9faff;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* ============ PRICE BOX ============ */
.price-box {
  text-align: center;
}

.price-box h3 {
  color: #666;
  font-weight: 600;
  margin-bottom: 5px;
}

.price-box h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0fb5b3;
}

.price-box span {
  font-size: 1rem;
  color: #777;
}

.btn-book {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ============ HELICOPTER THEME ============ */
.heli .btn-book {
  background: linear-gradient(90deg, #ffd86b, #fcb64c);
  color: #0b1c3f;
}

.heli .btn-book:hover {
  background: #fff;
  color: #0b1c3f;
}

/* ============ ROAD THEME ============ */
.road .btn-book {
  background: linear-gradient(90deg, #0fb5b3, #08817e);
  color: #fff;
}

.road .btn-book:hover {
  background: #0b4da2;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .details-hero {
    height: 380px;
    border-radius: 0;
  }
  .details-hero .hero-content h1 {
    font-size: 1.8rem;
  }
  .details-hero .hero-content p {
    font-size: 1rem;
  }
  .package-details {
    padding: 60px 0;
  }
  .content-box,
  .itinerary-box,
  .price-box {
    padding: 25px;
  }
  .btn-book {
    width: 100%;
  }
}
