body {
  background: #f8f7ff;
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* background hexagonal */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(180, 160, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

.navbar {
  background-color: #5f4b8b;
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 40px;
}

.hero {
  background: linear-gradient(135deg, #6c4bbd 0%, #4b3c94 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
}

.hero .hashtag {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffb347;
  margin-top: 25px;
  display: block;
}

.price-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #fff;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-header {
  background-color: #6c4bbd;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}

.price-body {
  padding: 30px 20px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #5f4b8b;
}

.features li {
  list-style: none;
  margin: 8px 0;
}

.cta-section {
  background-color: #5f4b8b;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 20px;
  margin-top: 60px;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1eb14a;
  transform: scale(1.05);
}

footer {
  background-color: #2e1f4d;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .price-card {
    margin-bottom: 20px;
  }
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Rocket animation */
.hero-logo {
  width: 100px;
  animation: floatRocket 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

@keyframes floatRocket {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Glow effect for text */
.hero h1 {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Floating background dots (optional aesthetic effect) */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveBg 10s linear infinite;
  z-index: 0;
  opacity: 0.3;
}

@keyframes moveBg {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Paket Cards */
.paket-card {
  border-radius: 15px;
  transition: all 0.3s ease;
}
.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
}

/* Info Section */
.info-section {
  background: #7c3aed;
  color: #fff;
}

/* Button styling */
.btn-light {
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
}
.btn-light:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Section login penuh layar */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

/* Kartu form */
.login-card {
  background: #fff;
  max-width: 400px;
  width: 100%;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.8s ease;
}

/* Tombol violet */
.btn-violet {
  background-color: #7c3aed !important;
  color: #fff !important;
  border: none;
  transition: all 0.3s ease;
}
.btn-violet:hover {
  background-color: #6927d9 !important;
  transform: translateY(-2px);
}

/* Animasi masuk */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Label & input */
.form-floating > label {
  color: #777;
}
.form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

/* Responsif */
@media (max-width: 576px) {
  .login-card {
    padding: 2rem;
  }
}

/* Profil Pelanggan */
.card {
  border-radius: 15px;
}

.table th {
  background-color: #f7f7fc;
}

.badge {
  font-size: 0.85rem;
}

.btn-violet {
  background-color: #7c3aed !important;
  color: #fff !important;
  border: none;
  transition: all 0.3s ease;
}
.btn-violet:hover {
  background-color: #6927d9 !important;
  transform: translateY(-2px);
}

