/* GENERAL */
body {
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#f5f7fa;
  line-height:1.6;
}

/* HERO */
.tour-hero {
  height:50vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
              url('assets/img/ForestVilla/family8.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.tour-hero h1 { font-size:3rem; margin-bottom:10px; }
.tour-hero p { font-size:1.5rem; }

/* OVERVIEW */
.tour-overview {
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin:40px 0;
}
.itinerary h2{
  text-align: center;
}
.box {
  background:#fff;
  padding:25px 30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.3s;
  font-weight:600;
}

.box i { color:#ff7a00; font-size:1.5rem; margin-bottom:5px; display:block; }

.box:hover {
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

/* TOUR TABLE / ITINERARY */
.tour-table {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  padding:40px 20px;
}

.tour-day {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 25px rgba(0,0,0,0.1);
  transition:transform 0.3s, box-shadow 0.3s;
  display:flex;
  flex-direction:column;
}

.tour-day:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.tour-day img {
  width:100%;
  height:180px;
  object-fit:cover;
}

.tour-info { padding:20px; text-align:center; }
.tour-info h3 { color:#ff7a00; margin-bottom:10px; }
.tour-info p { color:#555; margin-bottom:15px; }

.btn-tour {
  display:inline-block;
  padding:10px 25px;
  background:linear-gradient(45deg,#ff7a00,#ffb347);
  color:#fff;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-tour:hover {
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

/* PRICING */
.pricing { text-align:center; padding:60px 20px; }
.price-cards { display:flex; justify-content:center; gap:25px; flex-wrap:wrap; }
.price-card { background:#fff; padding:30px; border-radius:20px; width:250px; box-shadow:0 12px 25px rgba(0,0,0,0.15); transition:0.3s; }
.price-card:hover { transform:translateY(-5px); box-shadow:0 18px 35px rgba(0,0,0,0.25); }
.price-card p { color:#ff7a00; font-size:1.5rem; margin:10px 0; }
/*Meals*/
.meal h2{
  border: 1px solid black;
  padding: 10px 25px;
}

/* CTA */
.cta { text-align:center; padding:60px 20px; background:#fef9f5; }
.btn-cta { padding:14px 30px; background:linear-gradient(45deg,#ff7a00,#ffb347); color:#fff; border-radius:30px; text-decoration:none; font-weight:600; transition:0.3s; }
.btn-cta:hover { transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,0.3); }

/* RESPONSIVE */
@media(max-width:768px){
  .tour-hero h1{font-size:2.5rem;}
  .tour-hero p{font-size:1.2rem;}
  .price-card{width:90%; margin:15px auto;}
}