/* New Year Packages Section */
.newyear-packages {
  padding: 56px 0;
  background: #0b1220;
  color: #f7f9fc;
}
.ny-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.ny-header {
  text-align: center;
  margin-bottom: 28px;
}
.ny-header h2 {
  font-size: 2rem;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}
.ny-header p {
  color: #a9b3c7;
  margin: 0;
}
.ny-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ny-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.ny-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
}
.ny-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 18px 12px;
}
.ny-title {
  font-size: 1.25rem;
  margin: 0;
}
.ny-price {
  font-weight: 600;
}
.ny-amount {
  color: #33d17a;
}
.ny-unit {
  color: #a9b3c7;
  margin-left: 8px;
  font-weight: 500;
}
.ny-details {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ny-summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  position: relative;
  font-weight: 600;
}
.ny-summary::marker { display: none; }
.ny-summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #a9b3c7;
  border-bottom: 2px solid #a9b3c7;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 160ms ease;
}
.ny-details[open] .ny-summary::after {
  transform: translateY(-50%) rotate(-135deg);
}
.ny-content {
  padding: 0 18px 18px;
}
.ny-list {
  margin: 10px 0 16px;
  padding-left: 18px;
  color: #d5dbe7;
}
.ny-btn {
  display: inline-block;
  padding: 10px 14px;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
}
.ny-btn:hover {
  background: #1e4fd6;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .ny-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ny-grid { grid-template-columns: 1fr; }
  .ny-header h2 { font-size: 1.6rem; }
}