* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

/* BODY */
body {
  background: #f5f7fb;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: linear-gradient(135deg, #70e2ff, #4e9bff);
  padding: 80px 20px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.85);
  object-fit: cover;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.hero p {
  font-size: 18px;
  color: #eef6ff;
  margin-top: 10px;
}

/* WHY SECTION */
.why {
  text-align: center;
  padding: 70px 20px 50px;
}

.why h2 {
  font-size: 32px;
  color: #5a4bff;
  font-weight: 700;
}

.why .subtitle {
  margin-top: 8px;
  font-size: 16px;
  color: #666;
}

/* FEATURE CARDS */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  width: 300px;
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 50px;
  color: #7b2ff7;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #666;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .card {
    width: 90%;
  }
}

.feature-list li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li.include::before {
  content: "✔";
  color: #00c9c8; /* warna hijau-aqua */
  font-weight: 600;
  font-size: 16px;
}

.feature-list li.exclude::before {
  content: "✖";
  color: #ff5b5b; /* merah soft */
  font-weight: 600;
  font-size: 16px;
  opacity: 0.8;
}

.btn-close-custom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f3f3f3;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}



.btn-close-custom:hover {
  background: #e0e0e0;
  transform: scale(1.1);
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 40%, #e8eeff 100%);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(90, 110, 255, 0.15);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* efek gradient halo */
.feature-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -40%;
  left: -40%;
  background: linear-gradient(120deg, #4ecbff, #70e2ff, #4e9bff);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 30px;
  filter: blur(40px);
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 0.45;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(90, 110, 255, 0.25);
}

.feature-card i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #6b73ff;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.18) rotate(3deg);
  color: #5f3dc4;
}

.feature-card h5 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: bold;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #4a4a4a;
  font-size: 0.97rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Card utama */
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.pricing-header {
  text-align: center;
  padding: 30px 20px;
  color: #fff;
}

/* --- CSS TAMBAHAN (Supaya lebih rapi & seukuran) --- */

/* Padding row kiri kanan */
.pricing-col {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* Membuat kartu punya tinggi seragam */
.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* BODY */
.pricing-body {
  padding: 25px 30px;
  text-align: center;
  flex-grow: 1;
}
.pricing-body ul li {
  padding: 7px 0;
  font-size: 15px;
  color: #444;
}

/* FOOTER */
.pricing-footer {
  padding: 20px 30px 30px;
}

/* BADGE TERPOPULER */
.popular-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: #ff7b00;
  color: #fff;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 20px;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
}

/* ACTIVE (Paket Medium) */
.pricing-card.active {
  border: 3px solid #9333ea;
  transform: scale(1.02);
}
.pricing-card.active:hover {
  transform: scale(1.03) translateY(-6px);
}

/* GRADIENTS */
.bg-gradient-blue {
  background: linear-gradient(to right, #0066ff, #3b82f6);
}
.bg-gradient-purple {
  background: linear-gradient(to right, #7c3aed, #9333ea);
}

/* BUTTON */
.btn-gradient {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  padding: 12px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
}
.btn-gradient:hover {
  opacity: 0.85;
}

/* Floating WhatsApp */
.wa-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 32px;
  padding: 14px 18px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s;
}

.wa-floating:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* ============================
   PREMIUM MODAL DESIGN
============================= */

/* Animasi modal muncul */
.modal.fade .modal-dialog {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Styling utama modal */
.modal-content {
  border-radius: 25px;
  border: 2px solid rgba(110, 84, 247, 0.3);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(110, 84, 247, 0.25);
  padding: 25px;
  animation: modalGlow 2s infinite alternate;
}

@keyframes modalGlow {
  0% {
    box-shadow: 0 0 12px rgba(110, 84, 247, 0.25);
  }
  100% {
    box-shadow: 0 0 26px rgba(110, 84, 247, 0.45);
  }
}

/* Icon / gambar paket */
.modal-thumb {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  object-fit: contain;
  margin: 10px auto 20px;
  display: block;
  padding: 10px;
  background: radial-gradient(circle at top, #6e54f7, #b9a6ff);
  box-shadow: 0 5px 20px rgba(110, 84, 247, 0.5);
}

/* Judul modal */
.modal-title-custom {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #6e54f7;
}

/* LIST FITUR MODAL - ELEGAN */
.modal-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.modal-list li {
  position: relative;
  padding-left: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px dashed #e5e5e5;
}

/* ICON CHECK CUSTOM */
.modal-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  background: linear-gradient(135deg, #6e54f7, #8f6bff);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 12px;
  font-weight: bold;
  box-shadow: 0px 2px 8px rgba(110, 84, 247, 0.3);
}

/* HOVER EFEK PREMIUM */
.modal-list li:hover {
  padding-left: 36px;
  color: #6e54f7;
  cursor: pointer;
  transform: translateX(4px);
}

/* Tombol WhatsApp premium */
.btn-wa {
  background: #6e54f7 !important;
  border: none;
  font-size: 16px;
  padding: 12px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn-wa:hover {
  background: #5c3de7 !important;
  transform: scale(1.05);
}

/* Floating WhatsApp lebih premium */
.wa-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #6e54f7;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 6px 22px rgba(110, 84, 247, 0.6);
  transition: 0.3s;
  z-index: 999;
}

.wa-floating:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 8px 32px rgba(110, 84, 247, 0.75);
}

/* List Fitur Premium */
.list-unstyled li {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;

  /* memberi pemisah elegan */
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

/* Icon centang custom */
.list-unstyled li::before {
  content: "✔";
  font-size: 16px;
  font-weight: bold;
  color: #6e54f7; /* warna branding Anda */
  background: rgba(110, 84, 247, 0.12);
  padding: 4px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Section */
.footer-section {
  background: #0d0d0d;
  color: #ccc;
  padding: 60px 0;
  margin-top: 80px;
  border-top: 4px solid #6e54f7;
}

.footer-section h5 {
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #6e54f7;
  padding-left: 5px;
}

.footer-contact i {
  margin-right: 8px;
  color: #6e54f7;
}

.social-links a {
  font-size: 20px;
  margin-right: 15px;
  color: #ccc;
  transition: 0.3s;
}

.social-links a:hover {
  color: #6e54f7;
}

/* Mobile Centering */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .social-links a {
    margin: 0 10px;
  }
}
