/* ============================================================
   KINGDOMTOTO - style.css
   Tema: Merah | Orange | Gelap | Emas
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --red:        #c0122c;
  --red-dark:   #8b0a1e;
  --red-light:  #e63946;
  --orange:     #e85d04;
  --orange-lt:  #f48c06;
  --gold:       #d4a017;
  --gold-light: #f0c040;
  --gold-shine: #ffe066;
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1c1c1c;
  --dark-4:     #242424;
  --dark-card:  #181818;
  --border:     rgba(212,160,23,0.18);
  --text:       #e8e0d0;
  --text-muted: #9a8f7e;
  --white:      #ffffff;

  --font-display: 'Cinzel', serif;
  --font-body:    'Nunito', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 24px rgba(212,160,23,0.18);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title span {
  background: linear-gradient(90deg, var(--gold), var(--gold-shine), var(--orange-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 3rem;
}

/* ── Section Spacing ── */
section { padding: 90px 0; position: relative; }

/* ── Divider ── */
.gold-divider {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  margin: 0.75rem auto 1.5rem;
}

/* ── Buttons ── */
.btn-kingdom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary-k {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,18,44,0.35);
}
.btn-primary-k:hover {
  background: linear-gradient(135deg, var(--orange), var(--red-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,18,44,0.5);
  color: var(--white);
}

.btn-gold-k {
  background: linear-gradient(135deg, var(--gold), var(--gold-shine));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,160,23,0.3);
}
.btn-gold-k:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.5);
  color: var(--dark);
}

.btn-outline-k {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-k:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── Navbar ── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--gold); }

.navbar-toggler {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 6px 10px;
  background: transparent;
  cursor: pointer;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,160,23,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(192,18,44,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212,160,23,0.10) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, #110508 50%, #0d0a00 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero-title .brand-name {
  background: linear-gradient(90deg, var(--gold), var(--gold-shine), var(--orange-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .brand-sub {
  color: var(--red-light);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-pasaran {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-pasaran-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pasaran-tag {
  background: rgba(192,18,44,0.15);
  border: 1px solid rgba(192,18,44,0.3);
  color: var(--red-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.pasaran-tag:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Floating hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orb {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(212,160,23,0.22) 0%,
    rgba(192,18,44,0.18) 40%,
    rgba(13,13,13,0.6) 70%,
    transparent 100%);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbFloat 6s ease-in-out infinite;
  box-shadow:
    0 0 80px rgba(192,18,44,0.15),
    0 0 160px rgba(212,160,23,0.08),
    inset 0 0 60px rgba(212,160,23,0.06);
}

.hero-orb-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.15), rgba(192,18,44,0.2), transparent);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbFloat 4s ease-in-out infinite reverse;
}

.hero-crown-svg { opacity: 0.9; filter: drop-shadow(0 0 20px rgba(212,160,23,0.5)); }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

/* ── About / Brand Story ── */
#about {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  border-top: 1px solid var(--border);
}

.about-story-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--orange));
}

.about-year-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange-lt));
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.about-desc {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-pillars {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(192,18,44,0.15), rgba(212,160,23,0.12));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

/* ── Why Choose / Keunggulan ── */
#keunggulan {
  background: var(--dark-2);
}

.keunggulan-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.keunggulan-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.keunggulan-card:hover {
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.keunggulan-card:hover::after { transform: scaleX(1); }

.k-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(192,18,44,0.2), rgba(212,160,23,0.15));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.k-icon-wrap svg { width: 28px; height: 28px; }

.keunggulan-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.keunggulan-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.k-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.k-badge-red { background: rgba(192,18,44,0.2); color: var(--red-light); border: 1px solid rgba(192,18,44,0.3); }
.k-badge-gold { background: rgba(212,160,23,0.15); color: var(--gold-light); border: 1px solid var(--border); }

/* ── Statistik ── */
#statistik {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(212,160,23,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.08), transparent);
}

.stat-icon-wrap {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(192,18,44,0.18), rgba(212,160,23,0.12));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-shine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Info Hari Ini box */
.info-hari-ini {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.info-hari-ini::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
}

.info-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-item:last-child { border-bottom: none; }

.info-dot-red { width: 6px; height: 6px; background: var(--red-light); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.info-text { font-size: 0.88rem; color: var(--text-muted); }
.info-text strong { color: var(--text); }

/* ── Testimoni / Rating ── */
#testimoni {
  background: var(--dark-3);
}

.swiper-testimoni { padding-bottom: 3rem !important; }

.testi-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition);
  user-select: none;
}

.testi-card:hover {
  border-color: rgba(212,160,23,0.35);
  box-shadow: var(--shadow-gold);
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars svg { width: 16px; height: 16px; }

.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testi-pasaran-badge {
  font-size: 0.68rem;
  background: rgba(192,18,44,0.15);
  border: 1px solid rgba(192,18,44,0.25);
  color: var(--red-light);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

/* swiper nav */
.swiper-pagination-bullet { background: var(--gold) !important; opacity: 0.4 !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 24px !important; border-radius: 4px !important; }

/* ── Kendala ── */
#kendala {
  background: var(--dark-2);
}

.kendala-card {
  background: var(--dark-card);
  border: 1px solid rgba(192,18,44,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.kendala-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--red), var(--orange));
  border-radius: 4px 0 0 4px;
}

.kendala-card:hover {
  border-color: rgba(192,18,44,0.5);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(192,18,44,0.15);
}

.kendala-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(192,18,44,0.12);
  border: 1px solid rgba(192,18,44,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.kendala-card h5 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.kendala-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.kendala-tag {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--red-light);
  text-transform: uppercase;
  background: rgba(192,18,44,0.12);
  border: 1px solid rgba(192,18,44,0.25);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Panduan Pemula ── */
#panduan {
  background: var(--dark-3);
}

.panduan-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.panduan-step:hover {
  border-color: rgba(212,160,23,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateX(6px);
}

.panduan-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,18,44,0.35);
}

.panduan-content h5 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.panduan-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.panduan-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), rgba(212,160,23,0.2));
  margin: 0 auto;
  margin-left: 47px;
}

/* ── Promo ── */
#promo {
  background: var(--dark);
  overflow: hidden;
}

/* Kilau / shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212,160,23,0.15), 0 0 60px rgba(192,18,44,0.08); }
  50% { box-shadow: 0 0 50px rgba(212,160,23,0.3), 0 0 100px rgba(192,18,44,0.15); }
}

.promo-featured-card {
  background: linear-gradient(145deg, #1a0f02, #1c0a0a, #0d0d0d);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: glowPulse 3s ease-in-out infinite;
  transition: var(--transition);
}

.promo-featured-card:hover { transform: translateY(-6px); }

.promo-featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,160,23,0.08),
    rgba(255,224,102,0.12),
    rgba(212,160,23,0.08),
    transparent);
  animation: shimmer 3s linear infinite;
}

.promo-featured-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-shine), var(--gold), transparent);
  animation: shimmer 2s linear infinite;
  background-size: 200% auto;
}

.promo-regular-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.promo-regular-card:hover {
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.promo-regular-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.promo-regular-card:hover::before { opacity: 1; }

.promo-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(192,18,44,0.2), rgba(212,160,23,0.15));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.promo-percent {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine), var(--orange-lt));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.promo-type {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.promo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.promo-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.promo-list { margin-bottom: 1.5rem; }

.promo-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 5px 0;
}

.promo-list li svg { flex-shrink: 0; }

.promo-badge-hot {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ── FAQ ── */
#faq {
  background: var(--dark-2);
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(212,160,23,0.35); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold-light); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  margin-top: -1px;
}

/* ── CTA Banner ── */
#cta-banner {
  background: linear-gradient(135deg, #1a0508, #0d0d0d, #120d00);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(192,18,44,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(232,93,4,0.06) 0%, transparent 60%);
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ── Footer ── */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ── Modal Login / Daftar ── */
.modal-content {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 1rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-close { filter: invert(1) sepia(1) saturate(0) brightness(2); }

.modal-body { padding: 1.5rem 2rem 2rem; }

.modal-tabs {
  display: flex;
  background: var(--dark-4);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.75rem;
}

.modal-tab-btn {
  flex: 1;
  padding: 9px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-tab-btn.active {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
}

.form-label-k {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.3px;
}

.form-input-k {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-input-k:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

.form-input-k::placeholder { color: var(--text-muted); }

.form-group-k { margin-bottom: 1rem; }

.forgot-link {
  font-size: 0.8rem;
  color: var(--gold-light);
  float: right;
  margin-top: -4px;
}

.btn-submit-k {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-k:hover {
  background: linear-gradient(135deg, var(--orange), var(--red-light));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,18,44,0.4);
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.2rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-check-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-check-label a { color: var(--gold-light); }

/* ── Overlay Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(192,18,44,0.4);
}

#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(192,18,44,0.5); }

/* ── Utilities ── */
.text-gold { color: var(--gold-light) !important; }
.text-red { color: var(--red-light) !important; }
.bg-dark-card { background: var(--dark-card); }

/* ── AOS custom ── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  section { padding: 70px 0; }

  .hero-orb { width: 280px; height: 280px; }
  .hero-orb-inner { width: 160px; height: 160px; }

  .nav-links { display: none; }

  .about-story-card { padding: 2rem 1.5rem; }

  .panduan-step:hover { transform: translateY(-4px); }
}

@media (max-width: 767.98px) {
  section { padding: 56px 0; }

  .hero-visual { margin-top: 3rem; }
  .hero-orb { width: 220px; height: 220px; }
  .hero-orb-inner { width: 130px; height: 130px; }

  .hero-cta { gap: 10px; }
  .hero-cta .btn-kingdom { padding: 11px 22px; font-size: 0.88rem; }

  .panduan-connector { margin-left: 43px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .modal-body { padding: 1.25rem 1.25rem 1.75rem; }
}

@media (max-width: 575.98px) {
  .hero-pasaran { gap: 8px; }
  .about-pillars { gap: 10px; }
}