/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
  background: linear-gradient(135deg, #df4a81, #c430d7, #b03ad8);
  color: white;
}

/* HEADER */
.top-header {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255,255,255,0.08);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.top-header h1 {
  font-size: 2.6rem;
}
.top-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* MAIN */
.package-main {
  padding: 50px 20px;
}

/* GRID */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* PACKAGE BOX */
.package-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 30px;
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}

.package-box:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* POPULAR */
.package-box.popular {
  border: 2px solid #ffd1ff;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff79c6, #ffd1ff);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* TEXT */
.package-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd1ff;
  margin-bottom: 15px;
}

/* LIST */
.package-box ul {
  list-style: none;
  margin-bottom: 20px;
}
.package-box ul li {
  margin: 8px 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* BUTTON */
.book-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #df4a81, #c430d7);
  color: white;
  font-size: 1rem;
  text-align: center;
  text-decoration: none; /* 🔥 THIS REMOVES BLUE + UNDERLINE */
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 480px) {
  .top-header h1 {
    font-size: 2rem;
  }
  .price {
    font-size: 1.7rem;
  }
}
