/* ===============================
   PAGE HERO (Same as About Page)
================================ */
.page-hero {
  padding: 100px 0 60px;
  background: linear-gradient(
    135deg,
    rgba(122, 57, 255, 0.15),
    rgba(248, 180, 0, 0.12)
  );
  text-align: center;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 720px;
  margin: auto;
}

/* ===============================
   PAGE LAYOUT
================================ */
body.airport-page {
  font-family: 'Poppins',sans-serif;
  background: linear-gradient(180deg,#f7f9ff 0%,#ffffff 60%);
  color:#222;
}

.airport-wrapper{
  max-width:1200px;
  margin:40px auto 70px;
  padding:0 16px;
}

/* Tabs */
.tab-buttons {
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.tab-button {
  padding:10px 18px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:#2d2f90;
  background:#f3f5ff;
  box-shadow:0 6px 18px rgba(75,71,255,0.06);
  transition:all .18s;
}
.tab-button:hover{transform:translateY(-3px)}
.tab-button.active {
  color:#fff;
  background:linear-gradient(135deg,#4a3aff,#007bff);
  box-shadow:0 20px 40px rgba(74,58,255,.18);
}

/* Filters */
.filter-section {
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.filter-section select {
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #e6e8ff;
  min-width:220px;
  font-weight:600;
}

/* Message */
.no-result {
  text-align:center;
  padding:16px;
  border-radius:10px;
  margin:12px auto 26px;
  color:#444;
  background:#fff8f6;
  border:1px solid #ffe6e6;
  display:none;
}

/* Grid */
.package-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
  gap:24px;
}

/* Card */
.package-card {
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  overflow:hidden;
}
.package-card img {
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:14px;
  background:#f7f7fb;
}
.package-card h6 {
  font-weight:700;
  margin-bottom:6px;
  color:#2d2f90;
  font-size:1.05rem;
}
.package-card p {
  margin:0;
  color:#444;
  font-size:.95rem;
}

/* Meta info */
.meta-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:12px;
}
.meta-left {
  display:flex;
  gap:10px;
  align-items:center;
}
.meta-left .pill {
  background:linear-gradient(135deg,#eef2ff,#f6f8ff);
  color:#2d2f90;
  padding:6px 10px;
  border-radius:8px;
  font-weight:600;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* Price + button */
.price {
  font-size:1.25rem;
  font-weight:800;
  background:linear-gradient(135deg,#4a3aff,#007bff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-align:right;
}
.btn-modern {
  background:linear-gradient(135deg,#4a3aff,#007bff);
  color:#fff;
  font-weight:600;
  border-radius:10px;
  padding:8px 14px;
  border:none;
  text-decoration:none;
  display:inline-block;
}

/* Responsive */
@media(max-width:900px){
  .filter-section select{min-width:150px}
}

@media(max-width:768px){
  .page-hero{
    padding:80px 0 40px;
  }
  .page-hero h1{
    font-size:2.1rem;
  }
  .page-hero p{
    font-size:1rem;
  }
  .airport-wrapper{
    margin:30px auto 60px;
  }
}
