/* ============================================================
   HANASTHA — program.css v2
   Palette: Ebony #04060D | Iron #D3D4D7 | Torea Bay #143AA2 | Royal Blue #3E8DE3
   ============================================================ */

:root {
  --dark-navy:  #0a1929;
  --navy-blue:  #0d2847;
  --ebony:      #0a1929;
  --iron:       #D3D4D7;
  --torea:      #143AA2;
  --torea-light:#1B4EC7;
  --royal:      #3E8DE3;
  --royal-light:#5BA3F0;
  --royal-glow: rgba(62,141,227,.35);
  --white:      #ffffff;
  --surface:    #F5F6F9;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-blue: 0 16px 40px rgba(20,58,162,.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  background: var(--surface);
  color: var(--ebony);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ── HEADER ──────────────────────────────────────────────── */
.pg-header {
  background: linear-gradient(135deg, #0a1929 0%, #0d2847 100%);
  border-bottom: 1px solid rgba(211,212,215,.08);
  position: sticky;
  top: 0; z-index: 900;
}
.pg-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pg-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.pg-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(211,212,215,.7);
  padding: 8px 16px;
  border: 1px solid rgba(211,212,215,.12);
  border-radius: 30px;
  transition: all .25s ease;
}
.pg-back:hover {
  color: var(--royal-light);
  border-color: rgba(62,141,227,.35);
  background: rgba(62,141,227,.06);
}

/* ── HERO STRIP  ───────────── */
.pg-hero {
  background: linear-gradient(135deg, #0a1929 0%, #0d2847 50%, #15325a 100%);
  padding: 60px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(20,58,162,.6) 0%, rgba(62,141,227,.25) 50%, transparent 65%);
  pointer-events: none;
}
.pg-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--royal-light);
  background: rgba(62,141,227,.12);
  border: 1px solid rgba(62,141,227,.2);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.pg-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.pg-hero p {
  font-size: 16px;
  color: rgba(211,212,215,.7);
  max-width: 480px;
  margin: 0 auto;
}
.pg-hero-orb {
  position: absolute;
  bottom: -100px; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(62,141,227,.3) 0%, rgba(91,163,240,.15) 50%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

/* ── MAIN ────────────────────────────────────────────────── */
.pg-main { padding: 60px 0; }
.pg-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── COMING SOON ─────────────────────────────────────────── */
.soon-section {
  background: var(--white);
  border: 1px solid rgba(20,58,162,.1);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.soon-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--torea), var(--royal));
}
.soon-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--torea), var(--royal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-blue);
}
.soon-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--ebony);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.soon-section > p {
  font-size: 15px;
  color: #4A5A72;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* mock cards (skeleton preview) */
.soon-cards-placeholder {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { .soon-cards-placeholder { grid-template-columns: 1fr 1fr; } }
.mobile-hide { }
@media (max-width: 700px) { .mobile-hide { display: none; } }

.soon-card-mock {
  background: var(--surface);
  border: 1px solid rgba(20,58,162,.08);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  animation: skeletonPulse 2s ease-in-out infinite;
}
.soon-card-mock:nth-child(2) { animation-delay: .4s; }
.soon-card-mock:nth-child(3) { animation-delay: .8s; }
@keyframes skeletonPulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .6; }
}
.mock-bar {
  height: 10px;
  background: linear-gradient(90deg, rgba(20,58,162,.08), rgba(62,141,227,.12), rgba(20,58,162,.08));
  background-size: 200% 100%;
  border-radius: 6px;
  margin-bottom: 10px;
  animation: shimmer 2s linear infinite;
}
.mock-bar.long { width: 85%; }
.mock-bar.medium { width: 65%; }
.mock-bar.short { width: 45%; }
.mock-pill {
  height: 28px;
  width: 90px;
  background: rgba(20,58,162,.07);
  border-radius: 20px;
  margin-top: 16px;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* soon actions */
.soon-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── TOPICS SECTION ──────────────────────────────────────── */
.topics-section { margin-bottom: 60px; }
.topics-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: var(--ebony);
  margin-bottom: 8px;
  letter-spacing: -.02em;
  text-align: center;
}
.topics-sub {
  font-size: 15px;
  color: #4A5A72;
  text-align: center;
  margin-bottom: 32px;
}
.topics-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.topic-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid rgba(20,58,162,.15);
  background: transparent;
  color: #4A5A72;
  cursor: pointer;
  transition: all .25s ease;
}
.topic-tab:hover {
  border-color: var(--torea);
  color: var(--torea);
}
.topic-tab.active {
  background: linear-gradient(135deg, var(--torea), var(--royal));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.topics-grid.hidden { display: none; }

.topic-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(20,58,162,.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #3B4A60;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease, border-color .25s ease, color .25s ease;
  cursor: default;
}
.topic-chip.visible {
  opacity: 1;
  transform: translateY(0);
}
.topic-chip i {
  color: var(--royal);
  font-size: 13px;
  flex-shrink: 0;
  opacity: .7;
}
.topic-chip:hover {
  border-color: rgba(20,58,162,.3);
  color: var(--torea);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20,58,162,.1);
}
.topic-chip:hover i { opacity: 1; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #25D366, #128C3E);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(37,211,102,.3);
  transition: all .25s ease;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37,211,102,.45);
}
.btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--torea);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border: 1.5px solid rgba(20,58,162,.25);
  border-radius: var(--radius-md);
  transition: all .25s ease;
}
.btn-mail:hover {
  background: rgba(20,58,162,.06);
  border-color: var(--torea);
  transform: translateY(-2px);
}

/* ── CONTACT STRIP ───────────────────────────────────────── */
.pg-contact-strip {
  background: linear-gradient(135deg, #0a1929 0%, #0d2847 100%);
  border-top: 1px solid rgba(211,212,215,.06);
  padding: 40px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.strip-text span {
  font-size: 14px;
  color: rgba(211,212,215,.6);
}
.strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* override btn-mail for dark bg */
.pg-contact-strip .btn-mail {
  color: rgba(211,212,215,.85);
  border-color: rgba(211,212,215,.2);
}
.pg-contact-strip .btn-mail:hover {
  background: rgba(211,212,215,.08);
  border-color: rgba(211,212,215,.4);
  color: var(--white);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.pg-footer {
  background: linear-gradient(135deg, #0a1929 0%, #0d2847 100%);
  border-top: 1px solid rgba(211,212,215,.06);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
  color: rgba(211,212,215,.35);
}
.pg-footer-tag {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(62,141,227,.6);
}

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1200;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #25D366, #128C3E);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  transition: all .25s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 38px rgba(37,211,102,.5);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .soon-section { padding: 40px 24px; }
  .strip-inner { flex-direction: column; align-items: flex-start; }
  .strip-actions { width: 100%; }
  .btn-wa, .btn-mail { width: 100%; justify-content: center; }
}

/* Mencegah teks dipilih/diblok */
body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 dan 11 */
  user-select: none; /* Standard syntax */
}
