
/* =============================
   GLOBAL STYLE
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Quicksand", sans-serif;
  background: linear-gradient(120deg, #fdfbfb, #ebedee);
  color: #333;
  line-height: 1.7;
}
a {
  text-decoration: none;
  transition: all 0.4s ease;
}
ul {
  list-style: none;
}

/* =============================
   BANNER SECTION
============================= */
/* Banner */
.inner-banner {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.inner-banner .image-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
  z-index: 2;
}

.inner-banner .auto-container {
  position: relative;
  z-index: 3;
}

.inner-banner h2 {
  font-size: 48px;
  font-weight: 700;
}

/* Cloud Effect */
.cloud-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200%;
  height: 100px;
  background: url("./images/icons/cloud.png") repeat-x;
  background-size: contain;
  animation: cloudMove 30s linear infinite;
  z-index: 4;
  margin-bottom: -30px;
  
}

@keyframes cloudMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.inner-banner h2 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  animation: fadeInDown 1s ease;
}
.bread-crumb ul {
  margin-top: 12px;
  display: inline-flex;
  gap: 10px;
  font-weight: 500;
}
.bread-crumb a {
  color: #ffcc70;
}
.bread-crumb a:hover {
  color: #fff;
}

/* =============================
   PACKAGE DETAIL
============================= */
.package-detail-section {
  padding: 90px 20px;
  max-width: 1200px;
  margin: auto;
}
.upper-box h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  position: relative;
}
.upper-box h4::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ff9966, #ff5e62);
  display: block;
  margin-top: 10px;
  border-radius: 5px;
}
.feature-box {
  margin-bottom: 40px;
}
.feature-box h5 {
  font-size: 20px;
  font-weight: 600;
  color: #ff5e62;
  margin-bottom: 12px;
}
.feature-list li {
  padding-left: 28px;
  margin: 10px 0;
  position: relative;
}
.feature-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  color: #ff9966;
  font-size: 18px;
}

/* =============================
   PACKAGE INFO BOX (Glassmorphism)
============================= */
.package-info-box {
  display: flex;
  gap: 25px;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin: 50px 0;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}
.package-info-block {
  text-align: center;
  flex: 1 1 150px;
  transition: transform 0.3s ease;
}
.package-info-block:hover {
  transform: translateY(-10px) scale(1.05);
}
.package-info-block img {
  width: 60px;
  margin-bottom: 12px;
}
.package-info-block strong {
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

/* =============================
   ITINERARY (Cards)
============================= */
.day-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-left: 6px solid #ff9966;
}
.day-box:hover {
  transform: translateY(-8px);
  border-left: 6px solid #ff5e62;
  background: #fff9f7;
}
.day-box .title {
  font-size: 19px;
  font-weight: 700;
  color: #ff5e62;
  margin-bottom: 12px;
}
.day-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

/* =============================
   TARIFF BLOCKS (Modern Cards)
============================= */
.tariff-block-one .inner-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.tariff-block-one .inner-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}
.tariff-block-one img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tariff-block-one:hover img {
  transform: scale(1.1);
}
.bottom-box {
  padding: 20px;
  text-align: center;
}
.bottom-box .fa-whatsapp {
  color: #25d366;
  margin-right: 6px;
}
.bottom-box a {
  font-weight: 700;
  color: #ff5e62;
  transition: color 0.3s ease;
}
.bottom-box a:hover {
  color: #ff9966;
}

/* =============================
   BUTTONS
============================= */
.theme-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(255,94,98,0.3);
}
.theme-btn:hover {
  background: linear-gradient(135deg, #ff5e62, #ff9966);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,94,98,0.45);
}

/* =============================
   ANIMATIONS
============================= */
@keyframes fadeInDown {
  from {opacity:0; transform:translateY(-40px);}
  to {opacity:1; transform:translateY(0);}
}
@keyframes fadeInUp {
  from {opacity:0; transform:translateY(40px);}
  to {opacity:1; transform:translateY(0);}
}


/* =============================
   MEDIA QUERIES (Responsive)
============================= */

/* Tablets (width <= 992px) */
@media (max-width: 992px) {
  .inner-banner h2 {
    font-size: 36px;
  }

  .package-info-box {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .package-info-block {
    flex: 1 1 100%;
  }

  .day-box {
    padding: 20px;
  }

  .day-box .title {
    font-size: 18px;
  }

  .feature-list li {
    font-size: 15px;
  }
}

/* Tablets & Large Mobiles (width <= 768px) */
@media (max-width: 768px) {
  .inner-banner {
    padding: 100px 15px;
  }

  .inner-banner h2 {
    font-size: 32px;
  }

  .upper-box h4 {
    font-size: 22px;
  }

  .feature-box h5 {
    font-size: 18px;
  }

  .day-box {
    padding: 18px;
  }

  .day-box .title {
    font-size: 17px;
  }

  .package-info-box {
    padding: 20px;
  }

  .theme-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}




/* =============================
   PACKAGE INFO BOX RESPONSIVE
============================= */

/* Tablets (width <= 992px) */
@media (max-width: 992px) {
  .package-info-box .inner-container {
    flex-wrap: wrap; /* allow blocks to wrap */
    justify-content: center;
  }

  .package-info-box .package-info-block {
    flex: 1 1 45%; /* two per row */
    margin-bottom: 20px;
  }
}

/* Mobile Devices (width <= 768px) */
@media (max-width: 768px) {
  .package-info-box .package-info-block {
    flex: 1 1 100%; /* full width per row */
    text-align: center;
  }

  .package-info-box .inner-box {
    padding: 15px;
  }

  .package-info-box .icon img {
    width: 50px; /* smaller icons on mobile */
    margin-bottom: 10px;
  }

  .package-info-box strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
  }
}
