/* ============================
   LOCAL HOURLY – LIGHT PURPLE THEME
   Hero matches tours / our-cabs
============================ */

/* ===============================
   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 BACKGROUND */
body.local-hourly-page{
  font-family: 'Poppins',sans-serif;
  background: linear-gradient(180deg,#f7f9ff 0%,#ffffff 60%);
  color:#222;
}

/* WRAPPER */
.local-hourly-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);
}

/* 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;
}

/* IMAGE */
.package-card img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:14px;
  background:#f7f7fb;
}

/* TEXT */
.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 */
.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){
  .tab-button{font-size:14px;padding:8px 14px;}
}

@media(max-width:768px){
  .page-hero{
    padding:70px 16px 40px;
  }
  .page-hero h1{
    font-size:26px;
  }
  .page-hero p{
    font-size:14px;
  }
  .local-hourly-wrapper{
    margin:30px auto 60px;
  }
}
