:root {
  --siap-brand: #0b1633;
  --siap-accent: #0d6efd;
  --accent: #0ea5e9;
  --accent-light: #7dd3fc;
  --accent-dark: #0369a1;
  --gold: #facc15;
  --gold-light: #fef08a;
  --white: #ffffff;
  --bg-light: #f0f9ff;
  --text-primary: #075985;
  --text-muted: #64748b;
  --border: #e0f2fe;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
  --shadow-lg: 0 20px 50px rgba(14, 165, 233, 0.15);
}

.btn-getdaftar {
  color: #0dcaf0;
  background: #fff;
  font-size: 14px;
  padding: 10px 30px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  position: sticky;
  top: 85px;
  left: 0;
  right: 0;
  z-index: 996;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #7c2d12;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.marquee-strip a {
  color: #7c2d12;
  font-weight: 700;
  text-decoration: underline;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 20px;
}

.page-hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

.page-hero-breadcrumb {
  margin-top: 20px;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover {
  color: var(--gold);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section-wrap {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.modern-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}

.modern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.card-icon.gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.card-icon.green {
  background: linear-gradient(135deg, var(--green), #059669);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.card-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.modern-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.modern-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== NOTICE BOX ===== */
.notice-box {
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.notice-box h6 {
  color: #92400e;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.notice-box ol {
  color: #78350f;
  margin: 0;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.9;
}

.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-offline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}
.btn-icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s;
}
.btn-icon-action.doc {
  background: #eff6ff;
  color: var(--accent);
}
.btn-icon-action.doc:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}
.btn-icon-action.pdf {
  background: #fef2f2;
  color: #dc2626;
}
.btn-icon-action.pdf:hover {
  background: #dc2626;
  color: #fff;
  transform: scale(1.1);
}

/* ===== SEARCH FORM ===== */
.search-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.search-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
}
.search-input {
  height: 56px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-size: 1rem;
  padding: 0 20px;
  width: 100%;
  margin-bottom: 16px;
  transition: all 0.3s;
  outline: none;
  background: var(--bg-light);
}
.search-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}
.btn-search {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
}
.search-steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.search-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1;
  min-width: 150px;
}
.search-step .step-num {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.search-step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ===== SOP CARDS ===== */
.sop-doc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  height: 100%;
}
.sop-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}
.sop-doc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.sop-doc-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.sop-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s;
}
.sop-doc-btn:hover {
  transform: scale(1.05);
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

/* ===== PDF VIEWER ===== */
.pdf-viewer-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.pdf-fallback {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 16px;
  border: 1px solid var(--border);
}

.siap-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.925rem;
}

.siap-topbar a {
  color: rgba(33, 37, 41, 0.72);
  text-decoration: none;
}

.siap-topbar a:hover {
  color: rgba(33, 37, 41, 0.92);
  text-decoration: underline;
}

.siap-announcement {
  background: linear-gradient(
    90deg,
    rgba(13, 110, 253, 0.12),
    rgba(13, 110, 253, 0.04)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.siap-announcement .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.6rem;
  --bs-btn-font-size: 0.875rem;
}

.siap-section-note {
  border-left: 4px solid var(--siap-accent);
  background: rgba(13, 110, 253, 0.06);
  padding: 12px 14px;
  border-radius: 10px;
}

.siap-stat {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 18px;
  height: 100%;
}

.siap-stat .value {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--siap-brand);
  line-height: 1.1;
}

.siap-stat .label {
  color: rgba(33, 37, 41, 0.7);
  margin-top: 4px;
}

.siap-floating-wa {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 999;
}

.siap-floating-wa a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.siap-floating-wa a:hover {
  filter: brightness(0.95);
  color: #fff;
}
