/* ================= PAKISTAN PACKAGES ================= */
.travel-packages {
  padding: 100px 6%;
  background: #ffffff;
}

.packages-header {
  text-align: center;
  margin-bottom: 60px;
}

.packages-header h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
}

.packages-header p {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 8px;
}

/* GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.package-card {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}

/* IMAGE */
.package-img {
  position: relative;
  height: 360px;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LOCATION TAG */
.tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* CONTENT */
.package-content {
  padding: 26px 6px;
}

.package-content h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.sub {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.price {
  font-size: 0.95rem;
  color: #1f2933;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .package-img {
    height: 300px;
  }
}
/* ===== FADE IN ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.itinerary {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.package-img:hover .itinerary {
  opacity: 1;
  transform: translateY(0);
}
/* ================= BOOKING CTA ================= */
.booking-cta {
  margin: 100px 6%;
  padding: 70px 40px;
  color: #ffffff;
  object-position: 10px;
  text-align: center;
  border-radius: 30px;
  background: url("../images/thumb.jpg");
  
}

.booking-cta h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  border-radius: 999px;
  background-color: #6b72804f;
}

.booking-cta p {
  color: #d1d5db;
  margin-bottom: 26px;
  
}

.cta-btn {
  display: inline-block;
  background: #9cf5a6;
  color: #1f2933;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
