/* =========================================================
   pages/pet.css
   Halaman: asuransi-pet.php  (Asuransi Pet)
   Prefix class: apet-

   CSS khusus produk ini — tidak lagi menumpang kendaraan-v2.css.
   Memakai design token bersama dari product-detail.css
   (--pd-navy, --pd-blue, dst) supaya warna tetap konsisten
   dengan halaman produk lain. Section klaim/FAQ/CTA tetap
   memakai class mv- dari product-detail.css.

   Section di file ini:
   1. Hero kiri-kanan          (.apet-hero)
   2. Keunggulan / kartu       (.apet-addon)
   3. Judul section umum       (.apet-section-*)
   ========================================================= */

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

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

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

/* Label kecil di atas judul */
.apet-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;
}

/* Tagline / judul utama */
.apet-hero-title {
  color: var(--pd-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

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

/* Deskripsi di bawah tagline */
.apet-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 540px;
}

/* Tombol di hero */
.apet-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.apet-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);
}

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

.apet-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);
}

.apet-btn-ghost:hover { border-color: var(--pd-white); color: var(--pd-light); }

/* Gambar hero di kanan */
.apet-hero-image { text-align: center; }

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

/* =========================================================
   2. KEUNGGULAN / KARTU — grid kartu
   ========================================================= */
.apet-addon { background: var(--pd-gray); padding: var(--pd-section-pad); }

.apet-addon-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 kolom */
  gap: 20px;
  margin-top: 32px;
}

.apet-addon-card {
  background: var(--pd-white);
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 26px 24px;
  transition: var(--pd-transition);
}

.apet-addon-card:hover {
  border-color: var(--pd-blue);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px);
}

.apet-addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--pd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.apet-addon-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--pd-text);
  margin: 0 0 8px;
}

.apet-addon-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pd-muted);
  margin: 0;
}

/* =========================================================
   2b. PENGECUALIAN — daftar (bukan kartu)
   ========================================================= */
.apet-exclusion-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 kolom */
  gap: 2px;
}

.apet-exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 6px;
  border-bottom: 1px solid var(--pd-border);
  transition: var(--pd-transition);
}

.apet-exclusion-item:hover { background: rgba(239, 68, 68, 0.035); }

/* Penanda silang merah — menegaskan "tidak dijamin" */
.apet-exclusion-mark {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 1px;
}

.apet-exclusion-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--pd-text);
}

.apet-exclusion-text strong { font-weight: 700; }

/* =========================================================
   3. Judul section umum halaman ini
   ========================================================= */
.apet-section-head { text-align: center; }

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

.apet-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pd-text);
  margin: 0;
}

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

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

/* Responsive — laptop ke atas */
@media (min-width: 1024px) {
  .apet-hero-grid { grid-template-columns: 1.2fr 1fr; }
  .apet-hero-image img { max-width: 400px; }
  .apet-addon-grid { grid-template-columns: repeat(3, 1fr); }
  .apet-section-title { font-size: 32px; }
}
