
/* =============================== 
   PAGE HERO (Reusable Global Hero)
================================ */
.page-hero {
  padding: 110px 0 70px;
  background: linear-gradient(
    135deg,
    rgba(122, 57, 255, 0.12),
    rgba(248, 180, 0, 0.10)
  );
  text-align: center;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #222;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 720px;
  margin: auto;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 90px 15px 50px;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}
/* ===============================
   CITY FILTER CAPSULES
================================ */

.city-filters {
  margin: 25px 0 35px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;              /* Prevent wrapping */
  overflow-x: auto;               /* Horizontal scroll */
  padding-bottom: 5px;
  scrollbar-width: none;          /* Firefox hide scrollbar */
}

.city-filters::-webkit-scrollbar {
  display: none;                  /* Chrome hide scrollbar */
}

.city-btn {
  flex: 0 0 auto;                 /* Prevent shrinking */
  padding: 8px 18px;
  border-radius: 50px;
  background: #f3f3f3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.city-btn:hover {
  background: linear-gradient(135deg, #6a5af9, #4a3fd8);
  color: #fff;
  border-color: transparent;
}

.city-btn.active {
  background: linear-gradient(135deg, #6a5af9, #4a3fd8);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(74,63,216,0.3);
}


/* ===============================
   ROUTES GRID
================================ */

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}


/* ===============================
   ROUTE CARD
================================ */

.route-card {
  background: linear-gradient(135deg, #6a5af9, #4a3fd8);
  padding: 22px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.route-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.route-price {
  font-size: 15px;
  margin-bottom: 18px;
  opacity: 0.95;
}


/* ===============================
   BOOK BUTTON
================================ */

.book-btn {
  display: inline-block;
  background: #fff;
  color: #4a3fd8;
  padding: 9px 16px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.book-btn:hover {
  background: #f3f3f3;
  transform: scale(1.05);
}