/* ==========================================================
   Jobs Core — Page Template: Shared Base (semua tema full-page)
   Prefix: jct- (Jobs Core Template layout)
          jcl- (Job card components — sama dengan landing.css
                tapi independen: perubahan di landing.css tidak
                mempengaruhi template ini, dan sebaliknya)
   Warna otomatis via CSS variables: --jc-primary, --jc-primary-2,
   --jc-accent, dll. yang di-inject oleh jobs_core_inject_color_vars().
   Tidak bergantung pada CSS tema atau landing.css — standalone.
   ========================================================== */

/* ── RESET & BASE ─────────────────────────────────────────── */
.jct-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  color: #1a1f36;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.jct-page *, .jct-page *::before, .jct-page *::after {
  box-sizing: border-box;
}
/* Hilangkan margin/padding bawaan WordPress pada template penuh */
body.jct-template-page {
  margin: 0 !important;
  padding: 0 !important;
}
body.jct-template-page .site,
body.jct-template-page #page,
body.jct-template-page #content,
body.jct-template-page .site-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.jct-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ───────────────────────────────────────────────── */
/* WordPress admin bar offset */
.admin-bar .jct-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .jct-header { top: 46px; }
}

.jct-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s;
}
.jct-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
}
.jct-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Logo */
.jct-logo {
  flex-shrink: 0;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  color: var(--jc-primary, #00566b) !important;
}
.jct-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.jct-logo-text {
  font-size: 21px;
  font-weight: 800;
  color: var(--jc-primary, #00566b) !important;
}
/* Nav */
.jct-nav {
  flex: 1;
}
.jct-nav > ul,
.jct-nav > div > ul,
.jct-nav-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.jct-nav > ul li,
.jct-nav > div > ul li,
.jct-nav-list li {
  list-style: none !important;
}
.jct-nav > ul li a,
.jct-nav > div > ul li a,
.jct-nav-list li a {
  font-size: 14.5px;
  font-weight: 500;
  color: #374151 !important;
  text-decoration: none !important;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  display: block;
}
.jct-nav > ul li a:hover,
.jct-nav > div > ul li a:hover,
.jct-nav-list li a:hover,
.jct-nav > ul li.current-menu-item > a,
.jct-nav > div > ul li.current-menu-item > a {
  color: var(--jc-primary, #00566b) !important;
  background: var(--jc-accent, #e0f4f8);
}

/* CTA di header */
.jct-header-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--jc-primary, #00566b);
  color: #fff !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.jct-header-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
/* Overlay gelap di belakang menu mobile */
.jct-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  -webkit-tap-highlight-color: transparent;
}
.jct-nav-overlay.is-open {
  display: block;
}
/* Tombol hamburger mobile */
/* Mobile Nav Overlay */
.jct-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0f172a;
  z-index: 1001;
  overflow-y: auto;
  padding: 80px 24px 40px;
}
.admin-bar .jct-mobile-nav {
  top: 46px;
}
.jct-mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.jct-mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.jct-mobile-nav-close:hover {
  background: rgba(255,255,255,0.18);
}
.jct-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jct-mobile-nav-list li a {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  padding: 16px 20px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.jct-mobile-nav-list li a:hover,
.jct-mobile-nav-list li.jct-nav-active a {
  color: #fff !important;
  background: rgba(255,255,255,0.09) !important;
}
.jct-mobile-nav-list li.jct-nav-active a {
  color: var(--jc-primary, #00566b) !important;
  background: rgba(255,255,255,0.05) !important;
}

.jct-mobile-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--jc-primary, #00566b);
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  color: var(--jc-primary, #00566b);
  padding: 7px 10px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.jct-mobile-toggle:hover,
.jct-mobile-toggle[aria-expanded="true"] {
  background: var(--jc-primary, #00566b);
  color: #fff;
}

/* ── HERO ─────────────────────────────────────────────────── */
.jct-hero {
  background: linear-gradient(
    140deg,
    var(--jc-primary, #00566b) 0%,
    var(--jc-primary-2, #006c86) 100%
  );
  position: relative;
  padding: 88px 0 140px;
  overflow: hidden;
}
/* Lingkaran dekoratif (background) */
.jct-hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.jct-hero-deco::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.jct-hero-deco::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
/* Gelombang lengkung di bawah hero */
.jct-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.jct-hero-wave svg {
  display: block;
  width: 100%;
  height: 72px;
}
/* Konten hero */
.jct-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.jct-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}
.jct-hero-badge i {
  color: #f59e0b;
  font-size: 12px;
}
.jct-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  max-width: 780px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.jct-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 36px;
  max-width: 540px;
}
/* Form pencarian hero — reuse jch- dari frontend.css */
.jct-hero .jch-form {
  max-width: 680px;
  margin: 0 auto 40px;
}
/* Stats di bawah search */
.jct-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.jct-hstat {
  text-align: center;
  padding: 0 40px;
}
.jct-hstat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.jct-hstat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jct-hstat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.jct-section {
  padding: 72px 0;
}
.jct-section-alt {
  background: #f8fafc;
}
.jct-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.jct-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--jc-primary, #00566b);
  margin-bottom: 10px;
  display: block;
}
.jct-section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1f36;
  margin: 0 0 12px;
  line-height: 1.2;
}
.jct-section-desc {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── SEARCH FORM (standalone — tidak bergantung frontend.css) */
.jct-search-form {
  max-width: 680px;
  margin: 0 auto 40px;
}
.jct-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  gap: 8px;
}
.jct-search-icon {
  color: #9ca3af;
  font-size: 16px;
  flex-shrink: 0;
}
.jct-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #1a1f36;
  background: transparent;
  min-width: 0;
  height: 44px;
  font-family: inherit;
}
.jct-search-input::placeholder {
  color: #9ca3af;
}
/* Tombol warna ikut --jc-primary dari settingan plugin */
.jct-search-btn {
  flex-shrink: 0;
  padding: 11px 26px;
  background: var(--jc-primary, #00566b);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.jct-search-btn:hover {
  opacity: 0.88;
}
@media (max-width: 560px) {
  .jct-search-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 10px;
    border-radius: 12px;
  }
  .jct-search-icon {
    display: none;
  }
  .jct-search-input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 12px;
  }
  .jct-search-btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
  }
}

/* ── JOB CARDS (standalone — tidak bergantung landing.css) ── */
/* Class jcl-* dipakai ulang supaya HTML template tidak perlu diubah.
   Definisi di sini independen dari landing.css — bisa berbeda sewaktu-waktu. */
.jcl-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 14px;
  overflow: visible;
  padding: 4px;
}
.jcl-job-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff !important;
  border: 1px solid var(--jc-border, #e5e7eb) !important;
  border-radius: 12px;
  padding: 16px 70px 16px 16px !important;
  text-decoration: none !important;
  color: var(--jc-text, #0f172a) !important;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box !important;
}
.jcl-job-card p,
.jcl-job-card span,
.jcl-job-card strong {
  background-color: transparent !important;
  text-decoration: none !important;
}
.jcl-job-card:hover {
  border-color: var(--jc-primary, #00566b) !important;
  box-shadow: 0 4px 16px rgba(0, 86, 107, 0.12) !important;
  transform: translateY(-2px);
  background: #fff !important;
  text-decoration: none !important;
}
.jcl-job-card.is-expired {
  opacity: 0.55;
}
.jcl-job-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--jc-border, #e5e7eb);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jc-bg-soft, #f8fafc);
  color: var(--jc-muted, #475569);
  font-size: 24px;
}
.jcl-job-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.jcl-job-body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.jcl-job-company {
  font-size: 12px;
  font-weight: 700;
  color: var(--jc-primary, #00566b) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent !important;
}
.jcl-job-posisi {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--jc-text, #0f172a) !important;
  margin: 0 0 9px;
  line-height: 1.4;
  max-width: 100%;
  background: transparent !important;
  -webkit-text-fill-color: var(--jc-text, #0f172a) !important;
  /* 1 baris, ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: white-space 0.1s;
}
/* Hover: tampilkan judul penuh */
.jcl-job-card:hover .jcl-job-posisi {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.jcl-job-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jcl-job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--jc-muted, #475569) !important;
  background: transparent !important;
}
.jcl-job-meta-item i {
  font-size: 12px;
  color: var(--jc-primary, #00566b) !important;
  flex-shrink: 0;
}
/* Lokasi: 1 baris, truncate jika panjang */
.jcl-job-meta-item.jcl-job-lokasi {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: flex;
}
.jcl-job-meta-item.jcl-job-lokasi span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.jcl-job-meta-item.is-expired {
  color: #ef4444 !important;
}
.jcl-job-meta-item.is-expired i {
  color: #ef4444 !important;
}
/* Status badge di meta */
.jcl-job-status {
  color: var(--jc-primary, #00566b) !important;
  font-weight: 600;
}
.jcl-job-status i {
  color: var(--jc-primary, #00566b) !important;
}
.jcl-job-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--jc-accent, #e0f4f8);
  color: var(--jc-primary, #00566b);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.jcl-job-badge.is-expired {
  background: #fee2e2;
  color: #ef4444;
}
.jcl-empty {
  text-align: center;
  color: var(--jc-muted, #475569);
  padding: 32px;
  background: var(--jc-bg-soft, #f8fafc);
  border-radius: 12px;
}
@media (max-width: 720px) {
  .jcl-jobs-grid {
    grid-template-columns: 1fr !important;
  }
  .jcl-job-card {
    padding: 14px 64px 14px 14px !important;
  }
  .jcl-job-logo {
    width: 48px !important;
    height: 48px !important;
  }
}

/* ── JOBS ─────────────────────────────────────────────────── */
.jct-jobs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.jct-jobs-heading {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1f36;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.jct-jobs-heading i {
  color: var(--jc-primary, #00566b);
  font-size: 1.2rem;
}
.jct-see-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--jc-primary, #00566b);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: gap 0.15s;
}
.jct-see-all:hover {
  gap: 9px;
  text-decoration: underline;
}
.jct-jobs-footer {
  margin-top: 36px;
  text-align: center;
}
.jct-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  border: 2px solid var(--jc-primary, #00566b);
  color: var(--jc-primary, #00566b) !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.jct-all-btn:hover {
  background: var(--jc-primary, #00566b);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── STEPS ────────────────────────────────────────────────── */
.jct-steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.jct-step {
  flex: 1;
  text-align: center;
  padding: 30px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}
.jct-step:hover {
  box-shadow: 0 4px 20px rgba(0, 86, 107, 0.1);
  transform: translateY(-3px);
}
.jct-step-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--jc-accent, #e0f4f8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--jc-primary, #00566b);
}
.jct-step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  background: var(--jc-primary, #00566b);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.jct-step-arrow {
  flex-shrink: 0;
  color: var(--jc-primary, #00566b);
  opacity: 0.35;
  font-size: 18px;
  padding-top: 54px;
  align-self: flex-start;
}
.jct-step-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0 0 8px;
}
.jct-step-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.jct-cta-wrap {
  padding: 0 0 72px;
}
.jct-cta-section {
  background: linear-gradient(
    135deg,
    var(--jc-primary, #00566b) 0%,
    var(--jc-primary-2, #006c86) 100%
  );
  border-radius: 20px;
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jct-cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.jct-cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.jct-cta-section > * {
  position: relative;
  z-index: 1;
}
.jct-cta-icon {
  font-size: 2.4rem;
  color: #f59e0b;
  margin-bottom: 16px;
  display: block;
}
.jct-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.jct-cta-desc {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 36px;
  max-width: 500px;
}
.jct-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 40px;
  background: #f59e0b;
  color: #fff !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.38);
}
.jct-cta-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.jct-footer {
  background: #0f172a;
  color: #94a3b8;
}
.jct-footer-top {
  padding: 64px 0 48px;
}
.jct-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
}
/* Kolom brand */
.jct-footer-logo {
  display: block;
  margin-bottom: 16px;
  text-decoration: none !important;
}
.jct-footer-logo img {
  height: 38px;
  width: auto;
  display: block;
  /* Balik logo gelap jadi putih di footer hitam */
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.jct-footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.jct-footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 24px;
  max-width: 280px;
}
.jct-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.jct-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.jct-footer-social a:hover {
  background: var(--jc-primary, #00566b);
  color: #fff;
  transform: translateY(-2px);
}
/* Kolom link */
.jct-footer-col-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #e2e8f0;
  margin: 0 0 20px;
}
.jct-footer-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.jct-footer-links li {
  list-style: none !important;
}
.jct-footer-links a {
  font-size: 13.5px;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.jct-footer-links a:hover {
  color: #cbd5e1 !important;
}
.jct-footer-links a i {
  font-size: 11px;
  opacity: 0.6;
  flex-shrink: 0;
}
/* Footer bottom bar */
.jct-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.jct-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.jct-footer-copy {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.jct-footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.jct-footer-legal a {
  font-size: 13px;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
.jct-footer-legal a:hover {
  color: #94a3b8 !important;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .jct-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .jct-footer-brand {
    grid-column: span 3;
  }
  .jct-footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  /* Header */
  .jct-nav,
  .jct-header-cta {
    display: none;
  }
  .jct-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 8px 16px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 1000;
  }
  .jct-nav.is-open ul,
  .jct-nav.is-open .jct-nav-list {
    flex-direction: column !important;
    gap: 2px;
  }
  .jct-nav.is-open ul li a,
  .jct-nav.is-open .jct-nav-list li a {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
    border-radius: 8px;
    background: none !important;
  }
  .jct-nav.is-open ul li a:hover,
  .jct-nav.is-open .jct-nav-list li a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.07) !important;
  }
  .jct-mobile-toggle {
    display: flex;
  }
  .jct-header-inner {
    position: relative;
  }
  /* Hero */
  .jct-hero {
    padding: 64px 0 120px;
  }
  .jct-hero-wave svg {
    height: 56px;
  }
  .jct-hstat-sep {
    width: 40px;
    height: 1px;
  }
  .jct-hero-stats {
    flex-direction: column;
    gap: 18px;
  }
  /* Sections */
  .jct-section {
    padding: 52px 0;
  }
  /* Steps */
  .jct-steps-grid {
    flex-direction: column;
    gap: 16px;
  }
  .jct-step-arrow {
    display: none;
  }
  /* CTA */
  .jct-cta-section {
    padding: 52px 24px;
    border-radius: 16px;
  }
  .jct-cta-btn {
    width: 100%;
    justify-content: center;
  }
  /* Footer */
  .jct-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .jct-footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .jct-footer-grid {
    grid-template-columns: 1fr;
  }
  .jct-footer-brand {
    grid-column: span 1;
  }
  .jct-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── WORDPRESS ADMIN BAR — MOBILE FIX ────────────────────── */
/* Paksa admin bar tetap fixed di mobile agar header sticky
   selalu berada tepat di bawah admin bar saat scroll. */
@media screen and (max-width: 782px) {
  html #wpadminbar {
    position: fixed;
  }
}

/* ── BANNER PERINGATAN ────────────────────────────────────── */
.jct-warning-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 13px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.5;
  z-index: 997;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
}
/* Beri ruang di bawah konten agar tidak tertutup banner */
.jct-page:has(+ .jct-warning-banner),
body:has(.jct-warning-banner) .jct-footer {
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .jct-warning-banner {
    font-size: 12px;
    padding: 11px 16px;
  }
}
