/* ─── PAGE HERO BANNER ───────────────────────────────── */
.page-hero {
  position: relative;
  height: 420px;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.page-hero.loaded::before {
  transform: scale(1);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.45) 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.page-hero-content .eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.breadcrumbs {
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--gold); }

.breadcrumbs .sep { color: var(--gold); }

.breadcrumbs .current { color: var(--gold); }

/* ─── TENTANG INTRO ──────────────────────────────────── */
.tentang-intro {
  background: var(--white);
  padding: 6rem 0 5rem;
}

.tentang-intro .lead-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 1.4rem;
}

/* ─── HIGHLIGHT CARDS ────────────────────────────────── */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.highlight-card {
  border: 1px solid #e8e4d8;
  border-radius: 4px;
  padding: 2.2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.highlight-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.08);
  color: inherit;
}

.highlight-card:hover::before { transform: scaleX(1); }

.highlight-card .card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.highlight-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.highlight-card p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ─── VISI MISI SECTION ──────────────────────────────── */
.visi-misi-section {
  background: var(--off-white);
  padding: 6rem 0;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .visi-misi-grid { grid-template-columns: 1fr; }
}

.vm-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2.2rem;
  border: 1px solid #e8e4d8;
  transition: box-shadow 0.3s;
}

.vm-card:hover {
  box-shadow: 0 12px 40px rgba(10,22,40,0.07);
}

.vm-card .vm-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.vm-card p,
.vm-card li {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.85;
}

.vm-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.vm-card ul li {
  padding: 0.45rem 0;
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 1px solid #f0ece3;
}

.vm-card ul li:last-child { border-bottom: none; }

.vm-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Komitmen full-width card */
.komitmen-card {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--white);
  border: none;
}

.komitmen-card .vm-num { color: rgba(201,168,76,0.2); }

.komitmen-card h3 { color: var(--white); }

.komitmen-card p { color: rgba(255,255,255,0.72); }