/* ============================================================
   JAPRISE INDONESIA — MAIN STYLESHEET
   Colors: Navy #0A2440 | Gold #D4AF37
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0A2440;
  --gold:   #D4AF37;
  --light:  #f8f9fa;
  --white:  #ffffff;
  --text:   #2d3748;
  --muted:  #4a5568;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 0 #e2e8f0, 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img { height: 46px; }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(10,36,64,0.06);
  text-decoration: none;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}

.nav-cta:hover {
  background: #c9a227 !important;
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,36,64,0.90) 0%,
    rgba(10,36,64,0.75) 55%,
    rgba(10,36,64,0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  text-align: right;
}

.hero-text {
  max-width: 600px;
  margin-left: auto;
}

.hero-text h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 12px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.25);
}

.hero-text h1 span { color: var(--gold); }

.hero-brand {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 10px 0 6px;
  letter-spacing: 1px;
}

.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.hero-sub-under {
  color: rgba(255,255,255,0.68);
  font-size: 0.93rem;
  margin-bottom: 0;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: #c9a227;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
  text-decoration: none;
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.10);
  text-decoration: none;
  color: #fff;
}

/* ============================================================
   SECTIONS GENERAL
   ============================================================ */
.section { padding: 80px 24px; }
.section-light { background: var(--light); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  background: rgba(10,36,64,0.06);
  color: var(--navy);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.article-card .thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card .card-body {
  padding: 20px;
}

.article-card .category-tag {
  display: inline-block;
  background: rgba(10,36,64,0.08);
  color: var(--navy);
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.article-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card p {
  color: var(--muted);
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--light); }

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #fff;
  color: #374151;
  border-top: 1px solid #e5e7eb;
  padding: 56px 24px 0;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand img { height: 52px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  color: #111827;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #4b5563;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  max-width: 100%;
  margin: 0 -24px;
  padding: 20px 24px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #6b7280;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  padding: 60px 24px;
  text-align: center;
}

.page-header h1 { color: #fff; font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.page-header p  { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-label .req { color: #ef4444; margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,64,0.08);
}

.form-control.error { border-color: #ef4444; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-error { font-size: 0.8rem; color: #ef4444; margin-top: 4px; display: none; }

.alert {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.alert-error   { background: #fff5f5; color: #c53030; border: 1px solid #fc8181; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #93c5fd; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }

/* ============================================================
   JADWAL PAGE
   ============================================================ */
.session-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.session-date {
  background: var(--navy);
  color: var(--gold);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.session-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }

.session-quota {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================================
   ARTIKEL ARCHIVE
   ============================================================ */
.archive-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.article-list { display: flex; flex-direction: column; gap: 20px; }

.article-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.article-list-item:hover { transform: translateY(-2px); }

.article-list-item img {
  width: 200px;
  height: 140px;
  object-fit: cover;
}

.article-list-body { padding: 20px 20px 20px 0; }

.article-list-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.article-list-body p  { font-size: 0.875rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-widget h4 {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* ============================================================
   ARTICLE DETAIL
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.article-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.article-content h1, .article-content h2, .article-content h3,
.article-content h4, .article-content h5, .article-content h6 {
  color: var(--navy);
  margin: 1.8em 0 0.6em;
  font-weight: 700;
  line-height: 1.3;
}

.article-content h2 { font-size: 1.5rem; }
.article-content h3 { font-size: 1.25rem; }
.article-content p  { margin-bottom: 1.2em; }

.article-content a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.article-content a:hover { color: var(--gold); }

.article-content img {
  border-radius: 8px;
  margin: 24px 0;
  max-width: 100%;
}

.article-content ul, .article-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.article-content li { margin-bottom: 6px; }

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--light);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   UPLOAD BUKTI PAGE
   ============================================================ */
.upload-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.upload-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.upload-step::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.upload-step:last-child::after { display: none; }

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

.upload-step.active .step-num { background: var(--navy); color: #fff; }
.upload-step.done   .step-num { background: #10b981; color: #fff; }
.upload-step p { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   UPLOAD DROPZONE
   ============================================================ */
.dropzone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--light);
}

.dropzone:hover, .dropzone.drag-over {
  border-color: var(--navy);
  background: rgba(10,36,64,0.03);
}

.dropzone-icon { font-size: 2.5rem; margin-bottom: 12px; }
.dropzone p { color: var(--muted); font-size: 0.9rem; }
.dropzone p strong { color: var(--navy); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--navy);
  transition: all 0.2s;
}

.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); text-decoration: none; }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ============================================================
   RESPONSIVE — TABLET (≤968px)
   ============================================================ */
@media (max-width: 968px) {
  /* Hero */
  .hero { min-height: 560px; }
  .hero-content { padding: 64px 20px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Artikel */
  .archive-layout  { grid-template-columns: 1fr; }
  .article-layout  { grid-template-columns: 1fr; }
  .article-list-item { grid-template-columns: 160px 1fr; }
  .article-list-item img { width: 160px; height: 120px; }
  .article-list-body { padding: 14px 14px 14px 0; }

  /* Section spacing */
  .section { padding: 64px 20px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.9rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {

  /* ---- NAVBAR ---- */
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    flex-direction: column;
    padding: 8px 20px 20px;
    gap: 2px;
    z-index: 998;
  }
  .nav-links.open  { display: flex; }
  .nav-toggle      { display: block; }
  .nav-links li    { width: 100%; }
  .nav-links a {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 10px;
    border-bottom: 1px solid #f3f4f6;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 10px;
    text-align: center;
    display: block;
    padding: 14px 20px !important;
    border-bottom: none !important;
    border-radius: 10px !important;
  }

  /* ---- HERO ---- */
  .hero { min-height: 480px; }
  .hero-bg-image { background-position: left top; }
  .hero-content {
    padding: 52px 20px 48px;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.28;
    margin-bottom: 10px;
  }
  .hero-sub { font-size: 0.93rem; }
  .hero-brand { font-size: 1.05rem; }
  .hero-sub-under { font-size: 0.87rem; }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 0.95rem;
    padding: 13px 20px;
  }

  /* ---- SECTIONS ---- */
  .section         { padding: 48px 16px; }
  .section-light   { padding: 48px 16px; }
  .section-header  { margin-bottom: 28px; }
  .section-tag     { font-size: 0.72rem; }
  .section-header h2 { font-size: 1.6rem; line-height: 1.3; }
  .section-header p  { font-size: 0.9rem; }

  /* ---- GRIDS → 1 kolom ---- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 14px; }

  /* ---- FEATURE CARDS (homepage) ---- */
  .card { border-radius: 10px; }

  /* ---- SESSION CARDS ---- */
  .session-card { padding: 18px; }
  .session-card h3 { font-size: 1rem; }
  .session-date { font-size: 0.8rem; }
  .session-quota { font-size: 0.82rem; }

  /* ---- ARTICLE CARDS (homepage grid) — 2x2 ---- */
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .article-card .thumb { height: 130px; }
  .article-card .card-body { padding: 10px; }
  .article-card h3 { font-size: 0.82rem; line-height: 1.35; }
  .article-card p  { font-size: 0.78rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .article-card .card-footer { padding: 8px 10px; font-size: 0.72rem; }
  .category-tag { font-size: 0.68rem; padding: 2px 8px; }

  /* ---- ARTIKEL ARCHIVE LIST ---- */
  .article-list-item {
    grid-template-columns: 1fr;
  }
  .article-list-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .article-list-body { padding: 14px; }
  .article-list-body h3 { font-size: 0.97rem; }
  .article-list-body p  { font-size: 0.85rem; }

  /* ---- ARTIKEL DETAIL ---- */
  .article-layout { grid-template-columns: 1fr; gap: 24px; }
  .article-content { font-size: 0.97rem; line-height: 1.78; }
  .article-content h2 { font-size: 1.25rem; }
  .article-content h3 { font-size: 1.1rem; }
  .article-content blockquote { padding: 12px 16px; font-size: 0.9rem; }

  /* ---- SIDEBAR (artikel) ---- */
  .sidebar-widget { padding: 18px; }
  .sidebar-widget h4 { font-size: 0.82rem; }

  /* ---- BREADCRUMB ---- */
  .breadcrumb { font-size: 0.8rem; padding: 10px 16px; gap: 6px; }

  /* ---- PAGE HEADER ---- */
  .page-header { padding: 40px 16px; }
  .page-header h1 { font-size: 1.6rem; }
  .page-header p  { font-size: 0.9rem; }

  /* ---- FORM ---- */
  .form-card { padding: 20px 16px; border-radius: 10px; }
  .form-group { margin-bottom: 16px; }
  .form-label { font-size: 0.85rem; }
  .form-control { font-size: 0.9rem; padding: 10px 14px; }
  .form-hint { font-size: 0.78rem; }
  .btn-primary, .btn-outline {
    font-size: 0.93rem;
    padding: 12px 20px;
  }

  /* ---- UPLOAD BUKTI ---- */
  .upload-steps { display: none; }
  .dropzone { padding: 28px 20px; }
  .dropzone-icon { font-size: 2rem; }
  .dropzone p { font-size: 0.85rem; }

  /* ---- JADWAL PAGE ---- */
  .session-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ---- FAQ ---- */
  .faq-question { font-size: 0.93rem; padding: 16px 18px; }
  .faq-answer   { font-size: 0.9rem; padding: 0 18px 16px; }
  .faq-icon     { width: 22px; height: 22px; font-size: 0.9rem; }

  /* ---- CTA SECTION ---- */
  .cta-section { padding: 52px 16px; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-section p  { font-size: 0.9rem; }
  .cta-section .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* ---- FOOTER ---- */
  footer { padding: 40px 16px 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }
  .footer-brand p { font-size: 0.85rem; max-width: 100%; }
  .footer-brand img { height: 48px; }
  .footer-title { font-size: 0.82rem; margin-bottom: 12px; }
  .footer-links a { font-size: 0.85rem; }
  .footer-links li { margin-bottom: 8px; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 0.78rem;
  }

  /* ---- PAGINATION ---- */
  .pagination { gap: 6px; margin-top: 28px; }
  .pagination a, .pagination span { width: 36px; height: 36px; font-size: 0.85rem; }

  /* ---- ALERT ---- */
  .alert { font-size: 0.875rem; padding: 12px 16px; }
}
/* ============================================================
   TOM SELECT (searchable kota dropdown)
   ============================================================ */
.ts-wrapper.form-control { padding: 0; border: none; }
.ts-control {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
  box-shadow: none;
  background: #fff;
}
.ts-control:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,64,0.08);
}
.ts-dropdown {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.ts-dropdown .option.active,
.ts-dropdown .option:hover { background: rgba(10,36,64,0.06); color: var(--navy); }
.ts-dropdown .option.selected { background: var(--navy); color: #fff; }