html {
  scroll-behavior: smooth;
}

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* Scrollbar Dark Modern */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #000000, #111);
  border-radius: 10px;
  border: 2px solid #000000; /* biar ada efek depth */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #000000, #000000);
}

/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #4c00ff, #000000);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Header */
.site-header {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.3s ease;
}

.site-header.hide {
  transform: translateY(-100%);
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .logo img {
  height: 40px;
  width: auto;
}

.site-header .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

/* Main content */
main {
  flex: 1;
  padding: 60px 20px;
  text-align: center;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  margin-bottom: 40px;
  font-size: 16px;
  opacity: 0.85;
}

/* Packages */
.packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}

.package {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px;
  width: 290px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.package:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.package h2 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.price {
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0 22px;
  color: #3cff00;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.package ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14px;
  text-align: left;
}

.package ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #3cff00;
  font-weight: bold;
}

/* Button modern */
.orderBtn {
  display: inline-block;
  background: linear-gradient(135deg, #ff0050, #e600ff);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 0, 80, 0.4);
}

.orderBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #e600ff, #ff0050);
  box-shadow: 0 6px 18px rgba(230, 0, 70, 0.6);
}

/* Featured package */
.featured {
  border: 2px solid #3cff00;
  transform: scale(1.05);
}

/* Terms & Conditions */
.tnc {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: #f1f1f1;
}

.tnc h3 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #3cff00; /* biar standout */
}

.tnc ul {
  list-style: none;
  padding: 0;
}

.tnc ul li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  line-height: 1.6;
  font-size: 15px;
}

.tnc ul li::before {
  content: "⚡"; /* bisa diganti ✔ atau • */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #ff0050; /* kontras biar modern */
}

/* Brands */
.brand-slider {
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
}

.brand-logos {
  display: flex;
  gap: 24px;
  animation: slide var(--speed, 20s) linear infinite;
}

.brand-logos img {
  width: 90px;
  height: auto;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1); /* Diubah dari #fff */
  padding: 6px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  text-align: center;
  font-size: 14px;
  margin-top: auto;
}

footer a {
  color: #ff0050;
  text-decoration: none;
}
