.pack-premium-bg {
  background: #f8f9fc;
  position: relative;
}
.pack-card-link-wrapper {
  display: block;
  text-decoration: none;
  height: 100%;
}
.pack-card-wrapper {
  padding: 15px 5px;
}
.pack-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.pack-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-color: var(--bd-primary);
}
.pack-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.pack-img-box img {
  transition: transform 0.8s ease;
  object-fit: cover;
}
.pack-card:hover .pack-img-box img {
  transform: scale(1.1);
}
.pack-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bd-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.pack-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pack-title {
  font-size: 26px;
  font-weight: 800;
  color: #0c0c0c;
  letter-spacing: -0.5px;
}
.pack-catchy {
  font-size: 15px;
  color: #777;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 25px;
}
.pack-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pack-features li {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pack-features li i {
  color: var(--bd-primary);
  font-size: 16px;
}
.pack-price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
  padding-top: 25px;
  flex-wrap: wrap;
}
.price-label {
  font-size: 14px;
  color: #777;
  font-weight: 600;
  margin-bottom: 0;
}
.price-value {
  font-size: 32px;
  font-weight: 800;
  color: #0c0c0c;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-unit {
  font-size: 16px;
  color: #777;
  font-weight: 600;
}
.pack-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f4f6f8;
  color: #1a1a1a;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.pack-card:hover .pack-btn {
  background: var(--bd-primary);
  color: var(--clr-theme-1);
}
.pack-btn i {
  transition: transform 0.3s ease;
}
.pack-card:hover .pack-btn i {
  transform: translateX(8px);
}

/* Navigation Buttons */
.pack-nav-btns button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  z-index: 10;
  color: #1a1a1a;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pack-nav-btns button:hover {
  background: var(--bd-primary);
  color: #fff;
  border-color: var(--bd-primary);
  transform: translateY(-50%) scale(1.05);
}
.pack-prev {
  left: -30px;
}
.pack-next {
  right: -30px;
}
.pack-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media (max-width: 1400px) {
  .pack-prev { left: 0; }
  .pack-next { right: 0; }
}
