
/* ================= PACKAGES ================= */

.packages {
  padding: 100px 80px;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 48px;
  color: #a31212;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  font-size: 18px;
}

/* GRID */

.package-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;

  /* FIX: remove extra padding */
  padding: 0;
}

/* CARD */

.package-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE (optional) */

.package-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 18px;
}

.package-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 65%;
    transition:.4s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

/* HEADER */

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.package-header h3 {
  font-size: 30px;
  font-weight: 700;
}

.package-header span {
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* LIST */

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.package-card li {
  margin: 18px 0;
  font-size: 17px;
  color: #444;
}

.package-card i {
  color: #28a745;
  margin-right: 10px;
}

/* BUTTON */

.package-card button {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}

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

/* ================= COLORS (unchanged logic) ================= */

.gold .package-header h3 { color: #d4af37; }
.gold .package-header span,
.gold button { background: #d4af37; }

.diamond .package-header h3 { color: #4fc3f7; }
.diamond .package-header span,
.diamond button { background: #4fc3f7; }

.ruby .package-header h3 { color: #d32f2f; }
.ruby .package-header span,
.ruby button { background: #d32f2f; }

.sapphire .package-header h3 { color: #1565c0; }
.sapphire .package-header span,
.sapphire button { background: #1565c0; }

.emerald .package-header h3 { color: #2e7d32; }
.emerald .package-header span,
.emerald button { background: #2e7d32; }

.silver .package-header h3 { color: #9e9e9e; }
.silver .package-header span,
.silver button { background: #9e9e9e; }

.platinum .package-header h3 { color: #607d8b; }
.platinum .package-header span,
.platinum button { background: #607d8b; }

.opal .package-header h3 { color: #8e24aa; }
.opal .package-header span,
.opal button { background: #8e24aa; }

/* ================= QUANTITY ================= */

.package-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.package-qty button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.package-qty input {
  width: 65px;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}

/* ================= UTIL ================= */

.hidden {
  display: none !important;
}

/* ================= RESPONSIVE FIX ================= */

@media (max-width: 992px) {
  .packages {
    padding: 80px 40px;
  }

  .package-container {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .packages {
    padding: 60px 20px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }
}