/* Core Styling */
html,
body {
  overflow-x: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
}

/* Hero Background */
.hero-bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
    url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Matikan Fixed Background di Mobile agar tidak berantakan */
@media (max-width: 1024px) {
  .hero-bg {
    background-attachment: scroll;
    min-height: 100vh;
  }
}

/* Navbar on Scroll */
.nav-scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(15px);
  padding: 12px 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Abstract Wrapper */
.abstract-wrapper {
  width: 100%;

  overflow: hidden;
  clip-path: polygon(
    0 5%,
    5% 2%,
    10% 5%,
    15% 1%,
    20% 4%,
    25% 0%,
    30% 5%,
    35% 2%,
    40% 6%,
    45% 1%,
    50% 5%,
    55% 0%,
    60% 4%,
    65% 2%,
    70% 6%,
    75% 1%,
    80% 5%,
    85% 0%,
    90% 4%,
    95% 1%,
    100% 5%,
    100% 95%,
    95% 98%,
    90% 95%,
    85% 100%,
    80% 96%,
    75% 99%,
    70% 94%,
    65% 98%,
    60% 95%,
    55% 100%,
    50% 95%,
    45% 99%,
    40% 94%,
    35% 98%,
    30% 95%,
    25% 100%,
    20% 96%,
    15% 99%,
    10% 95%,
    5% 98%,
    0 95%
  );
  position: relative;
  z-index: 10;

  padding: 80px 0;
}

/* Package Cards */
.package-card {
  border-radius: 2.5rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(72, 192, 216, 0.15);
}

.img-box {
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .img-box {
    height: 280px;
  }
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.card-footer {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  min-height: 100px;
}

.card-footer h3 {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  line-height: 1.2;
  margin-right: 8px;
  flex: 1;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .card-footer h3 {
    font-size: 1.25rem;
    min-height: 3rem;
  }
  .card-footer {
    padding: 2rem;
    min-height: 110px;
  }
}

.arrow-btn {
  width: 45px;
  height: 35px;
  flex-shrink: 0;
  border: 1.5px solid currentColor;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Floating WA Animation */
@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-bounce-slow {
  animation: bounce-slow 3s infinite;
}

/* Security & Fix */
img {
  user-select: none;
  pointer-events: none;
  max-width: 100%;
  height: auto;
}
