/* ===== More Packages Section ===== */
.more-packages{
  padding:70px 20px;
  background:linear-gradient(#f8fafc,#eef3f9);
}

.more-packages-container{
  max-width:900px;
  margin:auto;
}

.more-packages h2{
  text-align:center;
  font-size:32px;
  margin-bottom:35px;
  color:#0f172a;
  font-weight:700;
  letter-spacing:.3px;
}

/* List */
.more-package-list{
  list-style:none;
  padding:0;
  margin:0;
}

.more-package-list li{
  margin-bottom:14px;
}

/* Row */
.more-package-list a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 22px;
  background:#ffffff;
  border-radius:14px;
  text-decoration:none;
  border:1px solid #e6eaf0;
  transition:.25s ease;
  font-size:16px;
  color:#0f172a;
  position:relative;
}

/* Left Title */
.more-package-list a::before{
  content:"✈";
  margin-right:10px;
  color:#22c55e;
  font-size:14px;
}

/* Duration */
.more-package-list span{
  color:#64748b;
  font-size:14px;
  font-weight:500;
}

/* Price */
.more-package-list strong{
  color:#ef4444;
  font-size:18px;
  font-weight:700;
  min-width:90px;
  text-align:right;
}

/* Hover Effect */
.more-package-list a:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  border-color:#22c55e;
  background:#f0fdf4;
}

.more-package-list a:hover strong{
  color:#16a34a;
}

/* Mobile */
@media(max-width:640px){
  .more-packages h2{
    font-size:24px;
  }

  .more-package-list a{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:16px;
  }

  .more-package-list strong{
    text-align:left;
  }
}
