@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");

/* Global body background */
body {
  background-color: #000000;
}

/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image is set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: McQueen;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------
   PACKAGES
--------------------------------------------- */
.black-bg-section {
  background: #000000;
  color: #ffffff;
}

.tours-header {
  margin: 20px 0;
}

.package-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.package-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.package-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 56px;
}

.package-route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.package-route span {
  color: #d4af37;
  font-weight: 500;
}

.package-route i {
  font-size: 10px;
  color: #666;
}

.package-features {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li i {
  color: #d4af37;
  font-size: 14px;
}

.package-activities {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 8px;
}

.activity-item i {
  color: #ffffff;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-pricing {
  margin-top: auto;
  padding-top: 15px;
  border-top: 2px solid #d4af37;
}

.emi-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px 15px;
  background: #222;
  border-radius: 8px;
}

.emi-info .label {
  font-size: 12px;
  color: #999;
}

.emi-info .amount {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.total-price {
  text-align: right;
}

.total-price .price {
  font-size: 28px;
  font-weight: 800;
  color: #d4af37;
  display: inline-block;
}

.total-price .per {
  font-size: 14px;
  color: #999;
  margin-left: 5px;
}

.total-price .original-price {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/* Package card button */
.package-card .btn-primary {
  background: #bb9a49;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.package-card .btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Package Responsive */
@media (max-width: 768px) {
  .package-card {
    margin-bottom: 20px;
  }

  .package-title {
    font-size: 18px;
    min-height: auto;
  }

  .package-route {
    font-size: 12px;
  }

  .total-price .price {
    font-size: 24px;
  }
}
