/* =========================================================
   pages/health.css
   Halaman: asuransi-health.php  (Asuransi Kesehatan / IntraHealth)
   Prefix class: hlt-

   CSS khusus produk ini — TIDAK menumpang travel.css.
   Memakai design token bersama dari product-detail.css
   (--pd-navy, --pd-blue, dst) agar warna konsisten dengan
   halaman produk lain. Komponen umum (steps, accordion,
   checklist, contact card, judul section) tetap memakai
   class mv- dari product-detail.css.

   Section di file ini:
   1. Hero kiri-kanan            (.hlt-hero)
   2. Tab switcher Kumpulan/Individu (.hlt-tab-*)
   3. Blok konten di dalam tab   (.hlt-block, .hlt-desc)
   4. Tabel manfaat & perbandingan (.hlt-table)
   ========================================================= */

/* ---------- Container umum halaman ini ---------- */
.hlt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   1. HERO — teks di kiri, gambar di kanan (shared, tanpa tab)
   ========================================================= */
.hlt-hero {
  background: linear-gradient(135deg, var(--pd-blue) 0%, var(--pd-blue-pale) 100%);
  padding: 56px 0 48px;
  overflow: hidden;
}

.hlt-hero-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: menumpuk ke bawah */
  gap: 32px;
  align-items: center;
}

.hlt-hero-label {
  display: inline-block;
  background: rgba(14, 165, 233, 0.15);
  color: var(--pd-white);
  border: 1px solid rgba(250, 251, 252, 0.804);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hlt-hero-title {
  color: var(--pd-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

.hlt-hero-title span { color: var(--pd-navy); }

.hlt-hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 540px;
}

.hlt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hlt-btn-primary {
  display: inline-block;
  background: var(--pd-navy);
  color: var(--pd-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--pd-transition);
}

.hlt-btn-primary:hover { background: var(--pd-white); color: var(--pd-navy); }

.hlt-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--pd-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--pd-transition);
}

.hlt-btn-ghost:hover { border-color: var(--pd-white); background: rgba(255,255,255,0.12); }

.hlt-hero-image { text-align: center; }

.hlt-hero-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* =========================================================
   2. TAB SWITCHER — Kumpulan / Individu
   ========================================================= */
.hlt-section { padding: var(--pd-section-pad); background: var(--pd-white); }
.hlt-section--gray { background: var(--pd-gray); }

.hlt-section-head { text-align: center; margin-bottom: 32px; }

.hlt-section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pd-blue);
  margin-bottom: 8px;
}

.hlt-section-sub {
  font-size: 15px;
  color: var(--pd-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.hlt-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hlt-tab-group {
  display: inline-flex;
  gap: 6px;
  background: var(--pd-gray);
  border: 1px solid var(--pd-border);
  border-radius: 999px;
  padding: 6px;
}

.hlt-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--pd-muted);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--pd-transition);
  white-space: nowrap;
}

.hlt-tab-btn i { font-size: 15px; }

.hlt-tab-btn:hover:not(.hlt-tab-btn--active) { color: var(--pd-text); }

.hlt-tab-btn--active {
  background: var(--pd-blue);
  color: var(--pd-white);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.28);
}

.hlt-tab-panel        { display: none; }
.hlt-tab-panel--active { display: block; }

/* =========================================================
   3. BLOK KONTEN di dalam tiap tab
   ========================================================= */
.hlt-block { margin-top: 40px; }
.hlt-block:first-child { margin-top: 0; }

.hlt-block-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--pd-text);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hlt-block-title i { color: var(--pd-blue); font-size: 18px; }

.hlt-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pd-muted);
  max-width: 820px;
  margin: 0 auto 8px;
  text-align: center;
}

/* Kartu pembungkus agar konten tab rapi */
.hlt-card {
  background: var(--pd-white);
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* Daftar keunggulan (centang) */
.hlt-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hlt-benefits-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--pd-text);
}

.hlt-benefits-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--pd-blue);
  font-size: 15px;
}

/* Grup dokumen 2 kolom (Individu: HCP + Meninggal Dunia) */
.hlt-doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* =========================================================
   4. TABEL manfaat & perbandingan (dibuat ulang dari image)
   ========================================================= */
.hlt-table-wrap {
  width: 100%;
  overflow-x: auto;              /* mobile: geser horizontal bila sempit */
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
}

.hlt-table {
  width: 100%;
  min-width: 560px;             /* jaga keterbacaan kolom di layar kecil */
  border-collapse: collapse;
  font-size: 14px;
  background: var(--pd-white);
}

.hlt-table thead th {
  background: var(--pd-navy);
  color: var(--pd-white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Kolom paling kiri = label manfaat */
.hlt-table thead th:first-child { background: var(--pd-navy-mid); }

.hlt-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--pd-text);
  background: var(--pd-gray);
  padding: 14px 16px;
  border: 1px solid var(--pd-border);
  vertical-align: top;
  width: 34%;
}

.hlt-table tbody td {
  padding: 14px 16px;
  border: 1px solid var(--pd-border);
  color: var(--pd-muted);
  vertical-align: top;
  text-align: center;
}

.hlt-table tbody tr:nth-child(even) td { background: #FbFcFe; }

.hlt-table .hlt-price {
  font-weight: 800;
  color: var(--pd-blue);
  font-size: 16px;
}

.hlt-table .hlt-yes { color: #059669; font-weight: 700; }
.hlt-table .hlt-no  { color: #94A3B8; }

.hlt-table ul {
  margin: 6px 0 0;
  padding-left: 18px;
  text-align: left;
  line-height: 1.55;
}

.hlt-table .hlt-cell-title {
  display: block;
  font-weight: 700;
  color: var(--pd-text);
  margin-bottom: 4px;
}

/* Catatan kecil di bawah tabel */
.hlt-table-note {
  font-size: 13px;
  color: var(--pd-muted);
  margin: 12px 2px 0;
  line-height: 1.6;
}

/* =========================================================
   Responsive — tablet ke atas
   ========================================================= */
@media (min-width: 768px) {
  .hlt-hero { padding: 72px 0 64px; }
  .hlt-hero-title { font-size: 40px; }
  .hlt-benefits-list { grid-template-columns: repeat(2, 1fr); }
  .hlt-doc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive — laptop ke atas */
@media (min-width: 1024px) {
  .hlt-hero-grid { grid-template-columns: 1.2fr 1fr; }
  .hlt-hero-image img { max-width: 400px; }
}
