.packages-section {
  padding: 100px 60px;
  background: #f7f7f7;
  text-align: center;
}

.packages-section h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #222;
}

.packages-intro {
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

/* GRID */
.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.package-card {
  position: relative;

  background: white;
  padding: 30px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  text-align: left;

  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

/* ICON FIX (TOP RIGHT) */
.package-icon {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 32px;
  height: 32px;

  object-fit: contain;

  opacity: 0.9;

  transition: 0.3s ease;
}

.package-card:hover .package-icon {
  transform: rotate(8deg) scale(1.05);
  opacity: 1;
}

/* TITLE */
.package-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;

  line-height: 1.3;
}

/* PRICE */
.price {
  font-size: 18px;
  font-weight: bold;

  color: #d4af37;

  margin-bottom: 15px;
}

/* LIST FIX (THIS WAS YOUR MAIN ISSUE) */
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 10px; /* FIXES LINE SPACING */
}

.package-card ul li {
  font-size: 14px;
  color: #555;

  line-height: 1.5; /* FIXES TEXT STACKING */

  display: flex;
  align-items: flex-start;

  gap: 8px;
}

/* optional bullet styling */
.package-card ul li::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  margin-top: 2px;
}

/* BUTTON */
.book-package-btn {
  width: 100%;
  padding: 12px;

  border: none;
  cursor: pointer;

  background: #d4af37;
  color: white;

  font-weight: 600;

  border-radius: 10px;

  margin-top: 18px;

  transition: 0.3s ease;
}

.book-package-btn:hover {
  background: #b8962f;
}