body{
  margin:0;
  font-family:Arial;
  background:#0f172a;
  color:white;
}

/* PAGE */
.package-page{
  padding:15px;
  text-align:center;
}

/* ================= SLIDER ================= */
.slider{
  position:relative;
  width:100%;
  height:280px;
  overflow:hidden;
  border-radius:15px;
}

/* sab images hide by default */
.slide{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transition:0.5s;
}

/* sirf active image show hogi */
.slide.active{
  opacity:1;
}

/* ================= TEXT ================= */
h1{
  margin:15px 0 5px;
}

.desc{
  color:#cbd5e1;
}

/* ================= TAG ================= */
.tag{
  display:inline-block;
  padding:6px 15px;
  border-radius:20px;
  margin:10px 0;
  font-weight:bold;
}

/* ================= FEATURES ================= */
.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:15px;
}

.box{
  padding:12px;
  border-radius:12px;
  text-align:left;
  transition:0.3s;
}

.box:hover{
  transform:scale(1.03);
}

/* ================= PRICE ================= */
.price{
  font-size:28px;
  margin:20px 0;
  font-weight:bold;
}

/* ================= BUTTON ================= */
.book-btn{
  width:100%;
  padding:15px;
  border:none;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  font-weight:bold;
  transition:0.3s;
}

.book-btn:hover{
  transform:scale(1.05);
}

/* ===================================================== */
/* 🔥 LOCAL DESIGN (WHITE THEME) */
/* ===================================================== */

.local{
  background:#ffffff;
  color:#000;
  border-radius:15px;
  padding:10px;
}

.local .tag{
  background:#22c55e;
  color:white;
}

.local .box{
  background:#f1f5f9;
  color:black;
}

.local .book-btn{
  background:#22c55e;
  color:white;
}

/* ===================================================== */
/* 🔥 PRO DESIGN (SILVER THEME) */
/* ===================================================== */

.pro{
  background:linear-gradient(135deg,#cbd5e1,#94a3b8);
  color:black;
  border-radius:15px;
  padding:10px;
}

.pro .tag{
  background:#3b82f6;
  color:white;
}

.pro .box{
  background:#e2e8f0;
}

.pro .book-btn{
  background:#3b82f6;
  color:white;
}

/* ===================================================== */
/* 🔥 PREMIUM DESIGN (GOLD THEME) */
/* ===================================================== */

.premium{
  background:linear-gradient(135deg,#facc15,#eab308,#ca8a04);
  color:black;
  border-radius:15px;
  padding:10px;
}

.premium .tag{
  background:black;
  color:gold;
}

.premium .box{
  background:rgba(255,255,255,0.7);
}

.premium .book-btn{
  background:black;
  color:gold;
}


.back-btn{
  position:fixed;
  top:12px;
  left:10px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,0.6);
  color:#fff;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  backdrop-filter: blur(6px);
  box-shadow:0 2px 6px rgba(0,0,0,0.2);
  cursor:pointer;
}
