/* ===============================
   RESET & DASAR
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
/* ===============================
   HERO HOME
================================ */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  text-align: center;
  background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

/* Container */
.hero-container {
  width: 100%;
  max-width: 560px;
}

/* ===============================
   JUDUL
================================ */
.hero-home .judul {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: #0d1b2a;
  margin-bottom: 14px;
}

/* ===============================
   DESKRIPSI
================================ */
.hero-home .description {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 28px;
}

/* ===============================
   TOMBOL HERO (KIRI - KANAN)
================================ */
.hero-home .hero-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

/* Tombol umum */
.hero-home .hero-buttons a {
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}

/* Detail Paket - KIRI */
.hero-home .btn-primary {
    background: linear-gradient(90deg, #00BFFF, #1E90FF);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 191, 255, 0.35);
}

.hero-home .btn-primary:hover {
  transform: translateY(-2px);
}

/* Konsultasi WA - KANAN */
.hero-home .btn-secondary {
  background: linear-gradient(90deg, #FF7F50, #FF6347);
  color: #fff;
  box-shadow: 0 6px 14px rgba(255, 99, 71, 0.35);
}

.hero-home .btn-secondary:hover {
  transform: translateY(-2px);
}

/* ===============================
   TABLET & DESKTOP
================================ */
@media (min-width: 768px) {
  .hero-home {
    padding: 120px 40px;
  }

  .hero-home .hero-buttons {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ===== SECTION PAKET ===== */
.paket {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 10vw, 140px) 16px;
  background: linear-gradient(135deg, #E3F2FD, #90CAF9);
  overflow: hidden;
}

.paket-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.paket-title {
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.3;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 20px;
}

.paket-text {
  font-size: clamp(13px, 2.5vw, 16px);
  line-height: 1.6;
  color: #1B365D;
  max-width: 680px;
  margin: 0 auto 36px;
}

.paket-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}

/* CARD */
.paket-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  overflow: hidden; /* penting biar badge gak keluar */
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 0 1 300px;
  max-width: 300px;
  min-height: 500px;
  padding-bottom: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

/* HEADER */
.paket-header {
  background: linear-gradient(135deg, #4facfe, #00c6ff);
  color: #fff;
  padding: 26px 20px;
}

.paket-header h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
}

.paket-header span {
  font-size: 13px;
  opacity: 0.9;
}

/* PRICE */
.paket-price-box {
  background: #1e90ff;
  color: #fff;
  padding: 18px;
  margin: -20px auto 22px;
  width: 85%;
  border-radius: 12px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.8;
  margin: 0;
  font-size: 13px;
}

.paket-price-box h2 {
  margin: 6px 0;
  font-size: 28px;
}

.paket-price-box small {
  font-size: 12px;
  opacity: 0.9;
}

/* FITUR */
.paket-fitur {
  list-style: none;
  padding: 0 26px;
  text-align: left;
  margin-bottom: 22px;
}

.paket-fitur li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #1B365D;
}

.icon-box {
  width: 20px;
  height: 20px;
  background: #1e90ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #fff;
  font-size: 11px;
}

/* BUTTON */
.btn-pesan {
  margin-top: auto;
  align-self: center;
  background: #1e90ff;
  color: #fff;
  padding: 10px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-pesan:hover {
  background: #187bcd;
}

.badge-diskon {
  position: absolute;
  top: 14px;
  right: -38px;
  background: linear-gradient(135deg, #ff5252, #ff1744);
  color: #fff;
  padding: 6px 50px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  letter-spacing: 0.5px;
  z-index: 5;
  pointer-events: none;
  text-align: center;
}

.badge-diskon span {
  display: inline-block;      /* WAJIB */
  transform: translateX(8px); /* geser tulisan */
}
/* RESPONSIVE BADGE */
@media (max-width: 576px) {
  .paket-card {
    width: 100%;
    max-width: 100%;
    min-height: 480px;
  }
  .badge-diskon {
    padding: 5px 42px;
    font-size: 10px;
    right: -34px;
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  .paket-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .paket-card {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (min-width: 1025px) {
  .paket-card {
    flex: 0 1 300px;
    max-width: 300px;
  }
}

/* ===== MEDIA QUERY GLOBAL HERO & SECTION ===== */
@media (max-width: 768px) {
  .hero, .tentang, .kenapa, .no-website, .pain-section, .intro-section, .paket {
    padding: 40px 16px;
  }

  .hero .judul, .title, .section-heading, .pain-title, .intro-title, .paket-title, .no-website-title {
    text-align: center;
  }
  .hero .description, .tentang-description, .description, .pain-text, .intro-text, .paket-text, .no-website-text {
    text-align: center;
  }
}
.footer {
  background-color: #08293F; /* navy gelap elegan */
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
}

.footer-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1EA0FF;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-section a {
  display: block;
  color: #cfe8ff;
  margin: 6px 0;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.7;
}
.footer-divider {
  margin-top: 32px;
  text-align: center;
}

.footer-divider hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #475569, transparent);
  margin: 14px 0;
}

.footer-bottom {
  font-size: 14px;
  color: #cbd5f5;
  opacity: 0.85;
}
