:root {
  --mi-pink-main: #D5439D;
  --mi-pink-dark: #AD2579;
  --mi-purple-main: #484287;
  --mi-purple-soft: #544E92;
  --mi-dark: #0b0f1a;
  --mi-border: #e6e8f0;
}

/* ==============================
   ENTERPRISE TYPOGRAPHY SYSTEM
============================== */

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #0f172a;
}

/* Headings */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(30px, 3vw, 40px);
  margin-bottom: 12px;
}

h3 {
  font-size: 22px;
}

p {
  font-size: 15.5px;
  color: #475569;
}

/* ======================================================
   ROOT & GLOBAL
====================================================== */
:root {
  /* BRAND */
  --pink-primary: #D5439D;
  --pink-deep: #AD2579;

  /* NAVY */
  --navy-primary: #484287;
  --navy-secondary: #544E92;
  --navy-dark: #0B1220;

  /* TEXT */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #cbd5e1;

  /* BACKGROUND */
  --bg-soft: #f8fafc;
  --bg-dark: #0B1220;

  /* PRIMARY ACTION */
  --primary: var(--pink-primary);
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: #ffffff;
}

.section {
  padding: 96px 0;
}
@media (max-width: 1024px) { .section { padding: 72px 0; } }
@media (max-width: 640px)  { .section { padding: 56px 0; } }



/* ======================================================
   HERO SLIDER
====================================================== */
.pertamina-hero-slider {
  position: relative;
  min-height: 100vh;
  padding-top: 88px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .pertamina-hero-slider { padding-top: 72px; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #ffffff;
  padding: 0 32px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: clamp(24px, 6vw, 120px);
}

.hero-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 32px;
  max-width: 620px;
}

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

.btn-hero {
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-hero.primary {
  background: var(--primary);
  color: #fff;
}

.btn-hero.secondary {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
}

.btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11,94,215,.25);
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #ffffff;
}

/* ======================================================
   SOLUTIONS
====================================================== */
.pertamina-solutions {
  background: var(--bg-soft);
}

.solutions-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 32px;
}

.solutions-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: all .25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.solution-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

/* ======================================================
   CLIENTS
====================================================== */
.pertamina-clients {
  background: #ffffff;
}

.clients-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 32px;
}

.clients-marquee {
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 64px;

  width: max-content;          
  will-change: transform;
	
	animation: clients-marquee 350s linear infinite;

}

.clients-track img {
  height: 56px;
  filter: grayscale(100%);
  opacity: .7;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ======================================================
   STATS
====================================================== */
.pertamina-stats {
  background: var(--bg-soft);
}

.stats-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

/* ======================================================
   TESTIMONIAL
====================================================== */
.pertamina-testimonial {
  background: #ffffff;
  text-align: center;
}

.testimonial-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slider {
  max-width: 900px;
}

.testimonial-item { display: none; }
.testimonial-item.active { display: block; }

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}


/* ======================================================
   FOOTER FINAL FIX (COMPACT & PROFESSIONAL)
====================================================== */

.pertamina-footer {
  width: 100%;
  margin-top: 48px; /* lebih rapat */
  background: linear-gradient(180deg, #071a2e, #061425);
}

/* CONTAINER UTAMA */
.footer-container {
  max-width: 1320px;
  margin: auto;
  padding: 56px 32px 32px; /* DIPERKECIL */
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px; /* lebih rapat */
}

/* BRAND */
.footer-brand img {
  width: 150px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 340px;
}

/* TITLE */
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

/* LINKS */
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* SOCIAL */
.footer-social {
  margin-top: 12px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0; /* DIPERKECIL */
}

.footer-bottom .footer-bottom-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 32px;
  font-size: 12.5px;
  color: #94a3b8;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 48px 24px 28px;
  }
}
/* ================= FOOTER SOCIAL ICON ================= */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all .25s ease;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37,99,235,.4);
}
/* ==============================
   MINDSET INDONESIA – PAGE SECTIONS
================================= */

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

.mi-hero {
  background: #111827;
  color: #ffffff;
  padding: 120px 0;
}

.mi-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.mi-hero p {
  max-width: 720px;
}

.mi-cta {
  margin-top: 24px;
}

.mi-cta a {
  margin-right: 12px;
}

.btn-primary {
  background: #e11d48;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.mi-section {
  padding: 80px 0;
}

.mi-light {
  background: #f9fafb;
}

.mi-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mi-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mi-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mi-card,
.mi-program-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  text-decoration: none;
  color: #111111 !important;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.mi-program-card:hover {
  border-color: #e11d48;
  transform: translateY(-4px);
}

.mi-cta-section {
  background: #111827;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .mi-two-col,
  .mi-grid-3,
  .mi-grid-4 {
    grid-template-columns: 1fr;
  }
}
/* TEMP FIX NAVBAR */
body {
  overflow-x: hidden;
}

.mi-hero {
  margin-top: 0;
}

.mi-hero + * {
  position: relative;
  z-index: 1;
}
/* =====================================================
   NUCLEAR FIX – CORPORATE TRAINING (PAGELAYER SAFE)
===================================================== */

/* Jadikan wrapper PageLayer transparan */
.ctp-grid > div,
.ctp-grid > section {
  display: contents !important;
}

/* Grid hanya membaca card */
.ctp-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
}

/* Card */
.ctp-grid a.ctp-card {
  display: block !important;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #111;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: all .25s ease;
}

.ctp-grid a.ctp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border-color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ctp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .ctp-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =====================================================
   CORPORATE TRAINING PROGRAM – FINAL CLEAN FIX
===================================================== */

body.page-template-page-corporate-training main {
  width: 100%;
  overflow: hidden;
}

/* Container */
body.page-template-page-corporate-training .ctp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
body.page-template-page-corporate-training .ctp-hero {
  background: #0f172a;
  color: #ffffff;
  padding: 120px 0;
}

body.page-template-page-corporate-training .ctp-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

body.page-template-page-corporate-training .ctp-hero p {
  max-width: 720px;
  opacity: 0.9;
}

/* BUTTON */
body.page-template-page-corporate-training .ctp-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 12px;
}

body.page-template-page-corporate-training .ctp-btn.primary {
  background: #2563eb;
  color: #ffffff;
}

body.page-template-page-corporate-training .ctp-btn.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

/* SECTION */
body.page-template-page-corporate-training .ctp-section {
  padding: 96px 0;
}

body.page-template-page-corporate-training .ctp-light {
  background: #f8fafc;
}

/* GRID – FIX UTAMA */
body.page-template-page-corporate-training .ctp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* CARD */
body.page-template-page-corporate-training .ctp-card {
  display: block;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: all .25s ease;
}

body.page-template-page-corporate-training .ctp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border-color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  body.page-template-page-corporate-training .ctp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body.page-template-page-corporate-training .ctp-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   FIX FINAL – FOOTER TIDAK MENIMPA CONTENT
========================================= */

body {
  position: relative;
}

main {
  position: relative;
  z-index: 1;
  display: block;
  min-height: auto;
}

/* pastikan footer normal */
footer,
.pertamina-footer {
  position: relative !important;
  bottom: auto !important;
  z-index: 0;
}

/* khusus halaman corporate training */
body.page-template-page-corporate-training main {
  padding-bottom: 120px;
}
/* FIX LINK SOLUTION */
.mi-container a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.mi-container a:hover {
  color: #e11d48; /* warna brand */
}
.mi-solutions {
  padding: 80px 0;
}

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

.mi-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.mi-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.mi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mi-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.mi-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}
.mi-card i {
  font-size: 34px;
  color: #0b3c5d;
  margin-bottom: 16px;
  display: block;
}

.mi-card:hover i {
  color: #2563eb;
}
/* ===============================
   FULL HTML – SOLUTION & DETAIL
================================ */

.detail-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 120px 0 90px;
}

.detail-hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.detail-hero p {
  max-width: 720px;
  opacity: 0.9;
}

.detail-section {
  padding: 90px 0;
}

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

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.solution-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 32px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 20px 45px rgba(37,99,235,.15);
}

/* ICON */
.solution-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
}

.solution-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.solution-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   EXPERT PROFILE – LISTING
================================ */

.expert-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: all .25s ease;
  text-align: center;
}

.expert-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 18px 40px rgba(37,99,235,.15);
}

.expert-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
}

.expert-card h4 {
  margin-bottom: 4px;
}

.expert-card span {
  font-size: 13px;
  color: #2563eb;
  display: block;
  margin-bottom: 8px;
}

.expert-card p {
  font-size: 14px;
  color: #475569;
}
/* CLIENTS */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.client-logo {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  font-weight: 600;
  background: #fff;
}

/* TESTIMONIAL */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .clients-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .clients-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* VIDEO TESTIMONY */
.video-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}


/* ===============================
   PUBLIC CLASS SCHEDULE – TABLE
================================ */

.schedule-table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.schedule-table thead {
  background: #0f172a;
  color: #ffffff;
}

.schedule-table th,
.schedule-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.schedule-table th {
  font-weight: 600;
}

.schedule-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.schedule-table tbody tr:last-child {
  border-bottom: none;
}

.schedule-table tbody tr:hover {
  background: #f8fafc;
}

.schedule-table span {
  font-size: 13px;
  color: #64748b;
}

.schedule-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.schedule-btn:hover {
  background: #1d4ed8;
}
/* ===============================
   CONTACT PAGE – FORM & MAP
================================ */

.contact-form {
  margin-top: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-full {
  margin-bottom: 24px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* MAP */
.map-wrapper {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s ease;
}

.hero-dots .dot.active {
  background: #ffffff;
}
/* =================================================
   HERO SLIDER – ISOLATED RESET (FINAL)
================================================= */

.hero-slider-isolated {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

/* SLIDE */
.hero-slider-isolated .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

/* ACTIVE SLIDE */
.hero-slider-isolated .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* OVERLAY */
.hero-slider-isolated .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* CONTENT */
.hero-slider-isolated .hero-content {
  position: relative;
  z-index: 3;
}

/* DOTS */
.hero-slider-isolated .hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-slider-isolated .hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s ease;
}

.hero-slider-isolated .hero-dots .dot.active {
  background: #ffffff;
}
/* =========================
   HERO SLIDER RESET (MI)
========================= */
.mi-hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mi-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.mi-slide.active {
  opacity: 1;
  z-index: 1;
}

.mi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.3));
}

.mi-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  color: #fff;
  max-width: 620px;
  z-index: 2;
}

.mi-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.mi-content p {
  font-size: 18px;
  margin-bottom: 24px;
}

.mi-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
}

.mi-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.mi-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  cursor: pointer;
}

.mi-dots span.active {
  background: #fff;
}
/* ===========================
   HERO SLIDER – FINAL STABLE
=========================== */

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 32px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: clamp(24px, 6vw, 120px);
  color: #ffffff;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #ffffff;
}
.testimonial-item {
  opacity: 0;
  transition: opacity .6s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}
.section {
  padding: 100px 0;
}

.section + .section {
  padding-top: 0;
}
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,99,235,.3);
}
a, button {
  transition: all .25s ease;
}

/* ===============================
   FIX HERO MOBILE
================================ */

@media (max-width: 768px) {

  .hero-slider,
  .pertamina-hero-slider {
    min-height: auto;
    height: auto;
    padding-top: 72px; /* tinggi header */
  }

  .hero-content {
    position: relative;
    top: auto;
    transform: none;
    margin: 0;
    padding: 64px 20px;
  }

}
/* ===============================
   FIX SOLUSI GRID MOBILE
================================ */

@media (max-width: 768px) {

  .solutions-grid,
  .mi-card-grid,
  .video-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .solution-card,
  .mi-card,
  .video-card,
  .stat-item {
    width: 100%;
  }

}
/* ===============================
   FIX OVERFLOW MOBILE
================================ */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* =================================
   FIX FINAL HERO MOBILE SIZE
================================= */

@media (max-width: 768px) {

  .hero-slider,
  .pertamina-hero-slider,
  .hero-slider-isolated {
    position: relative;
    height: 70vh;          /* HERO JADI BESAR & NORMAL */
    min-height: 420px;
    padding-top: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
  }

  .hero-content {
    position: absolute;
    bottom: 80px;
    left: 20px;
    right: 20px;
    top: auto;
    transform: none;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
  }
}
/* =================================
   FIX FINAL HERO MOBILE SIZE
================================= */

@media (max-width: 768px) {

  .hero-slider,
  .pertamina-hero-slider,
  .hero-slider-isolated {
    position: relative;
    height: 70vh;          /* HERO JADI BESAR & NORMAL */
    min-height: 420px;
    padding-top: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
  }

  .hero-content {
    position: absolute;
    bottom: 80px;
    left: 20px;
    right: 20px;
    top: auto;
    transform: none;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
  }
}


/* ==============================
   VISION MISSION VALUES – FINAL
============================== */

.vmv-section {
  background: #f8fafc;
  padding: 100px 0;
}

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

.vmv-header h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 48px;
  line-height: 1.2;
}

.vmv-header .brand {
  color: #2563eb;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.vmv-block {
  margin-bottom: 56px;
}

.vmv-label {
  display: inline-block;
  background: linear-gradient(90deg, #a21caf, #ec4899);
  color: #fff;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}

.vmv-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.vmv-mission-box {
  background: #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  margin-top: 20px;
}

.vmv-mission-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vmv-mission-box li {
  font-size: 16px;
  padding-left: 28px;
  margin-bottom: 16px;
  position: relative;
}

.vmv-mission-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #a21caf;
  font-weight: bold;
}

.vmv-desc {
  max-width: 760px;
  font-size: 16px;
  color: #334155;
  margin-bottom: 36px;
}

.vmv-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.value-letter {
  font-size: 40px;
  font-weight: 800;
  color: #2563eb;
  display: block;
  margin-bottom: 8px;
}

.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vmv-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vmv-values {
    grid-template-columns: 1fr;
  }

  .vmv-header h1 {
    font-size: 28px;
  }
}

/* =====================================
   FIX HERO CLICK – FINAL (WAJIB)
===================================== */

/* HERO & SLIDE BOLEH DIKLIK */
.hero-slider,
.hero-slide {
  pointer-events: auto !important;
}

/* OVERLAY JANGAN NANGKAP KLIK */
.hero-overlay {
  pointer-events: none !important;
}

/* KONTEN HERO SELALU DI ATAS */
.hero-content {
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}

/* TOMBOL HERO PASTI AKTIF */
.hero-content a,
.hero-content button {
  pointer-events: auto !important;
}



/* =============================
   MATIKAN OFFSET LAMA
============================= */
body {
  padding-top: 0 !important;
}

/* =============================
   HERO LANGSUNG NEMPEL HEADER
============================= */
.hero-slider,
.pertamina-hero-slider {
  margin-top: 0 !important;
}

/* ================= CLIENT GRID ================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  align-items: center;
}

.client-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-item img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.client-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
/* ================= CLIENT LOGO EFFECT ================= */

/* Default: grayscale */
.pertamina-clients img {
  filter: grayscale(100%);
  opacity: 0.75;
  transition: 
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* Hover: full color */
.pertamina-clients img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Grid khusus (lebih stabil) */
.clients-grid .client-item img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
}

/* Slider khusus (biar hover tetap halus walau jalan) */
.clients-marquee img {
  pointer-events: auto;
}

.clients-grid img,
.clients-marquee img,
.client-item img,
.client-logo img {
  filter: none !important;
  opacity: 1 !important;
}

}
/* =====================================
   CLIENT LOGO – CORPORATE CLEAN SYSTEM
===================================== */

/* GRID & SLIDER CONTAINER */
.clients-grid .client-item,
.clients-marquee img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GRID ITEM */
.clients-grid .client-item {
  height: 110px;              /* TINGGI SERAGAM */
  padding: 20px;
  background: #ffffff;
}

/* LOGO IMAGE – GLOBAL */
.clients-grid img,
.clients-marquee img {
  max-height: 60px;           /* KUNCI UTAMA TINGGI LOGO */
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* HOVER – PROFESSIONAL */
.clients-grid img:hover,
.clients-marquee img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* SLIDER SPACING */
.clients-marquee .clients-track {
  align-items: center;
}
.clients-marquee {
  overflow: hidden;
  position: relative;
}

.clients-track {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
/* ===============================
   VIDEO TESTIMONIAL – EMBED CARD
================================ */

.video-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.embed-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}

.video-embed {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .video-embed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-embed-grid {
    grid-template-columns: 1fr;
  }
}

.month-title {
  font-size: 24px;
  font-weight: 700;
  margin: 56px 0 20px;
  color: #0b2a52;
}

.monthly-schedule {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  margin-bottom: 32px;
}

.monthly-schedule td {
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.monthly-schedule tr:last-child td {
  border-bottom: none;
}

.monthly-schedule .date {
  width: 110px;
  font-weight: 700;
  color: #0b2a52;
}

@media (max-width: 768px) {
  .monthly-schedule td {
    display: block;
  }
}
/* ================================
   ENTERPRISE PUBLIC CLASS SCHEDULE
================================ */

/* Judul Bulan */
.month-title {
  font-size: 26px;
  font-weight: 700;
  margin: 64px 0 24px;
  color: #0b2a52;
  letter-spacing: .3px;
}

/* Table Card */
.monthly-schedule {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  margin-bottom: 32px;
}

/* Row */
.monthly-schedule tr {
  transition: background .25s ease;
}

.monthly-schedule tr:hover {
  background: #f7f9fc;
}

/* Cell */
.monthly-schedule td {
  padding: 18px 22px;
  border-bottom: 1px solid #eef1f5;
  vertical-align: middle;
  font-size: 15px;
  color: #333;
}

.monthly-schedule tr:last-child td {
  border-bottom: none;
}

/* Date Column */
.monthly-schedule .date {
  width: 110px;
  font-weight: 700;
  color: #0b2a52;
  white-space: nowrap;
}

/* Program Title */
.monthly-schedule td:nth-child(2) {
  font-weight: 600;
}

/* Method */
.monthly-schedule td:nth-child(3) {
  color: #666;
  font-size: 14px;
}

/* Button */
.monthly-schedule .schedule-btn {
  background: #2563eb;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, transform .2s ease;
}

.monthly-schedule .schedule-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

/* ================================
   MOBILE ENTERPRISE
================================ */
@media (max-width: 768px) {
  .monthly-schedule {
    border-radius: 14px;
  }

  .monthly-schedule tr {
    display: block;
    padding: 16px;
  }

  .monthly-schedule td {
    display: block;
    padding: 6px 0;
    border: none;
  }

  .monthly-schedule .date {
    margin-bottom: 4px;
  }

  .monthly-schedule td:last-child {
    margin-top: 10px;
  }
}
/* ================= BADGE ENTERPRISE ================= */

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* Onsite */
.badge-onsite {
  background: rgba(37,99,235,.12);
  color: #1e40af;
}

/* Hybrid */
.badge-hybrid {
  background: rgba(16,185,129,.18);
  color: #047857;
}

/* Online */
.badge-online {
  background: rgba(245,158,11,.18);
  color: #92400e;
}

.mi-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.mi-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.mi-card-link i {
  font-size: 28px;
  margin-bottom: 14px;
  color: #1f4fd8;
}
.contact-info-grid {
  margin-top: 32px;
}

.contact-card {
  padding: 28px;
  border-radius: 14px;
}

.contact-card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.enterprise-form input,
.enterprise-form textarea {
  border-radius: 8px;
  border: 1px solid #e2e6ef;
}

.enterprise-form input:focus,
.enterprise-form textarea:focus {
  border-color: #1f4fd8;
  outline: none;
}

.enterprise-map iframe {
  border-radius: 14px;
}
.form-alert {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
}

.form-alert.error {
  background: #fdecea;
  color: #b42318;
  border: 1px solid #f5c2c0;
}
<style>
.mi-card-icon img{
  width:24px;
  height:24px;
  display:block;
}
</style>
<style>
.mi-card-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#eef2ff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.mi-card-icon img{
  width:26px;
  height:26px;
  filter:brightness(0) saturate(100%) invert(22%) sepia(8%) saturate(380%) hue-rotate(202deg);
}
</style>


/* ===============================
   GLOBAL BRAND BUTTON OVERRIDE
================================ */

.btn-primary,
.btn-hero.primary,
.ctp-btn.primary,
.schedule-btn {
  background: var(--pink-primary) !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-hero.primary:hover,
.ctp-btn.primary:hover,
.schedule-btn:hover {
  background: var(--pink-deep) !important;
}
a,
.solution-link,
.mi-container a:hover {
  color: var(--pink-primary);
}

.solution-link:hover {
  color: var(--pink-deep);
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(11,18,32,0.85),
    rgba(11,18,32,0.55),
    rgba(11,18,32,0.25)
  );
}

.detail-hero,
.mi-hero,
.ctp-hero {
  background: var(--navy-dark) !important;
}
.mi-card-icon,
.solution-card .icon {
  background: linear-gradient(
    135deg,
    var(--pink-primary),
    var(--navy-primary)
  ) !important;

  box-shadow: 0 10px 24px rgba(72,66,135,.35);
}

.mi-card-icon img,
.solution-card .icon img {
  filter: brightness(0) invert(1) !important;
}

/* =====================================================
   ENTERPRISE COLOR OVERRIDE (GLOBAL SAFE)
   Authoritative Layer – DO NOT EDIT ABOVE
===================================================== */

:root {
  --brand-primary: #D5439D;
  --brand-primary-dark: #AD2579;
  --brand-navy: #0B1220;
  --brand-navy-soft: #070D18;
  --brand-accent: #484287;

  --text-main: #0F172A;
  --text-muted: #64748B;
  --bg-soft: #F8FAFC;
}

/* ===== BUTTON ===== */
.btn-primary,
button.primary,
a.btn-primary {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
  border: none;
}

.btn-primary:hover {
  background: var(--brand-primary-dark) !important;
}

/* ===== LINKS ===== */
a:hover {
  color: var(--brand-primary);
}


/* ===== FOOTER ===== */
.pertamina-footer {
  background: linear-gradient(180deg, var(--brand-navy), var(--brand-navy-soft));
}

.pertamina-footer a:hover {
  color: var(--brand-primary);
}

/* ===== CTA SECTION ===== */
.detail-cta,
.mi-cta-section {
  background: linear-gradient(135deg, var(--brand-navy), #020617);
}

/* ===== ICON BACKGROUND ===== */
.solution-card .icon,
.mi-card-icon {
  background: rgba(213,67,157,.12);
}

.solution-card:hover .icon {
  background: var(--brand-primary);
}

/* ================= TESTIMONIAL ================= */
.pertamina-testimonial {
  position: relative;
  padding: 120px 0;

  background:
    linear-gradient(
      rgba(92, 84, 187, 0.78),
      rgba(92, 84, 187, 0.78)
    ),
    url("../images/bg-testimonial.jpg");

  background-size: 100% auto;          /* KUNCI: gambar UTUH */
  background-position: center top;   /* aman untuk gambar panjang */
  background-repeat: no-repeat;

  min-height: 700px;                 /* penting supaya gambar kelihatan */
}
/* ================= TESTIMONIAL CARD ================= */
.testimonial-slider {
  max-width: 820px;
  margin: 40px auto 0;
}

.testimonial-item {
  background: #ffffff;
  padding: 40px 48px;
  border-radius: 16px;
  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: none;
}

.testimonial-item.active {
  display: block;
}
.testimonial-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.testimonial-item span {
  font-size: 14px;
  color: #6b7280;
}
.testimonial-dots {
  margin-top: 24px;
  text-align: center;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: #ffffff;
}
/* ================= FOOTER BACKGROUND ================= */
.pertamina-footer {
  position: relative;
  color: #ffffff;

 background:
  linear-gradient(
    rgba(92, 84, 187, 0.92),
    rgba(92, 84, 187, 0.92)
  ),
  url("/images/solutions-bg.jpg");


  background-size: 100% auto;   /* gambar utuh, tidak kepotong */
  background-position: center bottom;
  background-repeat: no-repeat;
}
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}
.pertamina-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.pertamina-footer p,
.pertamina-footer li,
.pertamina-footer a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.pertamina-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.footer-social a {
  color: #ffffff;
  margin-right: 12px;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.7;
}
.pertamina-footer {
  background:
    linear-gradient(
      rgba(92, 84, 187, 0.92),
      rgba(92, 84, 187, 0.92)
    ),
    url("/images/solutions-bg.jpg") !important;
}
/* ===============================
   FOOTER – IMAGE BACKGROUND FIX (FINAL & SAFE)
================================ */

.pertamina-footer {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  background: none !important;
}

/* BACKGROUND IMAGE */
.pertamina-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("/images/solutions-bg.jpg");
  background-size: contain;        /* GAMBAR UTUH */
  background-position: center bottom;
  background-repeat: no-repeat;

  z-index: 0;
}

/* OVERLAY (BIAR TEKS TERBACA) */
.pertamina-footer::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(92, 84, 187, 0.9);
  z-index: 1;
}

/* ISI FOOTER DI ATAS BACKGROUND */
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}
/* =========================================
   FOOTER – ENTERPRISE CLEAN & BALANCED
========================================= */

.pertamina-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #5c54bb; /* warna dasar aman */
}

/* GAMBAR GEDUNG */
.pertamina-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/solutions-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;              /* isi penuh */
  background-position: center bottom;  /* GEDUNG NEMPEL BAWAH */

  transform: scale(1.02);              /* biar gak ada garis pinggir */
  z-index: 0;
}

/* OVERLAY GRADIENT (BIAR RAPI & DALAM) */
.pertamina-footer::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(92, 84, 187, 0.98) 0%,
    rgba(92, 84, 187, 0.94) 30%,
    rgba(92, 84, 187, 0.85) 55%,
    rgba(92, 84, 187, 0.70) 75%,
    rgba(92, 84, 187, 0.55) 100%
  );

  z-index: 1;
}




/* ISI FOOTER */
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}
.footer-container {
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .footer-container {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .pertamina-footer {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .pertamina-footer::before {
    background-position: center;
  }
}
.pertamina-footer {
  min-height: 520px;          /* KUNCI UTAMA */
  padding-top: 120px;
  padding-bottom: 80px;
}
.footer-col h4 {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0.95;
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.footer-social a {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
  .pertamina-footer {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .footer-container {
    row-gap: 40px;
  }
}
/* =========================================
   FOOTER – ENTERPRISE FINAL (RAPIH & PROPORSIONAL)
========================================= */

.pertamina-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;

  /* PROPORSI BARU (LEBIH MASUK AKAL) */
  min-height: 420px;
  padding: 72px 0 48px;

  background: #5c54bb;
}

/* ===============================
   BACKGROUND IMAGE GEDUNG
================================ */

.pertamina-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/solutions-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 120%; /* gedung turun dikit */

  transform: scale(1.02);
  z-index: 0;
}

/* ===============================
   OVERLAY (LEBIH RINGAN & RAPI)
================================ */

.pertamina-footer::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(92, 84, 187, 0.96) 0%,
    rgba(92, 84, 187, 0.88) 35%,
    rgba(92, 84, 187, 0.75) 65%,
    rgba(92, 84, 187, 0.60) 100%
  );

  z-index: 1;
}

/* ===============================
   CONTENT WRAPPER
================================ */

.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-container {
  align-items: flex-start;
}

/* ===============================
   TITLE STYLE
================================ */

.footer-col h4 {
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
  opacity: 0.95;
}

/* ===============================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

/* ===============================
   SOCIAL ICON
================================ */

.footer-social a {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  transition: all .25s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-3px);
}

/* ===============================
   RESPONSIVE – TABLET
================================ */

@media (max-width: 1024px) {
  .pertamina-footer {
    min-height: auto;
    padding: 64px 0 40px;
  }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */

@media (max-width: 768px) {
  .pertamina-footer {
    padding: 56px 0 36px;
  }

  .footer-container {
    row-gap: 32px;
  }

  .pertamina-footer::before {
    background-position: center bottom;
  }
}
.solution-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.solution-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.solution-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #7c3aed;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.solution-link:hover .solution-btn {
  background: #6d28d9;
}
/* ===============================
   FIX CONTACT FORM – FORCE SHOW
================================ */

.contact-form,
.contact-form * {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Grid tetap grid */
.contact-form .form-grid {
  display: grid !important;
}

/* Honeypot tetap disembunyikan */
.contact-form input[name="website"] {
  display: none !important;
}
.contact-enterprise {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-enterprise-info h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-enterprise-info .lead {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.contact-points {
  list-style: none;
  padding: 0;
}

.contact-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-enterprise-form {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-full {
  margin-top: 20px;
}

.contact-enterprise-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-enterprise-form input,
.contact-enterprise-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-enterprise-form input:focus,
.contact-enterprise-form textarea:focus {
  border-color: #b84fa6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,79,166,0.15);
}

.btn-full {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-enterprise {
    grid-template-columns: 1fr;
  }
}
/* GRID */
.video-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* CARD */
.video-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

/* THUMBNAIL */
.video-media button {
  all: unset;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.video-media img {
  width: 100%;
  display: block;
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,.6);
  border-radius: 50%;
}

.play-icon::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 18px;
  border-style: solid;
  border-width: 14px 0 14px 20px;
  border-color: transparent transparent transparent #fff;
}

/* INFO */
.video-info {
  padding: 20px 24px;
}

.video-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
  margin-bottom: 14px;
}

.video-meta {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 10px;
}

.video-meta span {
  color: #64748b;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
/* FORCE ENTERPRISE RATIO */
.video-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* PENTING */
}

.video-info {
  padding: 18px 20px;
  background: #ffffff;
}

.video-heading {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}

.video-meta strong {
  display: block;
  font-weight: 600;
  color: #0f172a;
}

.program-badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
}
/* ===== VIDEO MODAL ENTERPRISE FIX ===== */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1100px;
  max-height: 90vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 INI KUNCI UTAMANYA */
.video-modal iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

/* CLOSE BUTTON */
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.video-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 18px 20px;
}

.video-text {
  font-size: 14px;
  line-height: 1.6;
  color: #0f172a;
  margin-bottom: 12px;
}

.video-meta {
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}

.video-meta strong {
  display: block;
  font-weight: 600;
}

.program-badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
}
.video-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.video-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.video-media {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 16px 18px 18px;
}

.video-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px;
}

.video-meta {
  font-size: 13px;
  color: #475569;
  margin-bottom: 8px;
}

.program-badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
}
/* ==============================
   CLIENTS – GROUPED BY INDUSTRY
============================== */

.client-industry {
  margin-bottom: 64px;
}

.industry-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #0f172a;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 32px;
  align-items: center;
}

.client-item img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: .85;
  transition: all .3s ease;
}

.client-item img:hover {
  filter: none;
  opacity: 1;
}
/* =========================
   CLIENTS – ENTERPRISE
========================= */

.clients-grouped {
  padding: 80px 0;
}

.client-industry {
  margin-bottom: 72px;
}

.industry-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.industry-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.industry-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, #7c3aed, #a855f7);
  border-radius: 4px;
}

.industry-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}

.client-item img {
  max-height: 56px;
  width: auto;
  margin: auto;
  filter: grayscale(100%);
  opacity: .85;
  transition: all .3s ease;
}

.client-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* =====================================================
   ARTICLES & INSIGHTS – ENTERPRISE FINAL SYSTEM
   REPLACE ALL OLD ARTICLE / CARD CSS WITH THIS
===================================================== */

/* ================= HERO ================= */
.detail-hero {
  background: linear-gradient(135deg, #020617, #020617);
  padding: 120px 0 100px;
  color: #ffffff;
}

.detail-hero h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.detail-hero p {
  margin-top: 14px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: #c7d2fe;
}

/* ================= CONTAINER ================= */
.mi-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ================= SECTION ================= */
.detail-section {
  padding: 90px 0 110px;
  background: #ffffff;
}

/* ================= GRID ================= */
.mi-card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 24px;
}

/* ================= CARD ================= */
.mi-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.mi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.12);
}

/* ================= IMAGE ================= */
.mi-card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mi-card-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mi-card:hover .mi-card-image img {
  transform: scale(1.08);
}

/* ================= CATEGORY BADGE ================= */
.mi-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(2, 6, 23, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ================= CONTENT ================= */
.mi-card-content {
  padding: 18px 20px 22px;
  flex: 1;
}

.mi-card-content h4 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #020617;
}

.mi-card-content p {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
}

/* ================= PAGINATION ================= */
.mi-pagination {
  margin-top: 56px;
  text-align: center;
}

.mi-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #020617;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mi-pagination .page-numbers:hover {
  background: #020617;
  color: #ffffff;
}

.mi-pagination .current {
  background: #020617;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .detail-hero {
    padding: 100px 0 80px;
  }

  .detail-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding: 80px 0 70px;
  }

  .detail-hero h1 {
    font-size: 30px;
  }

  .detail-section {
    padding: 70px 0 90px;
  }
}

/* REMOVE BLUE ACCENT */
.article-cta a {
  background: #ffffff !important;
  color: #020617 !important;
  border: 1px solid #e5e7eb;
}

.article-cta a:hover {
  background: #f8fafc;
}
.article-cta {
  background: linear-gradient(180deg, #020617 0%, #020617 100%);
}

.article-cta h3 {
  color: #ffffff;
}

.article-cta p {
  color: #e5e7eb;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.article-hero-wrapper {
  background: radial-gradient(
    80% 80% at 50% 20%,
    #111827 0%,
    #020617 60%
  );
}
/* ===============================
   REMOVE HERO / DARK BG ON POSTS
=============================== */
.single-post .hero-slider,
.single-post .home-hero,
.single-post .article-hero-wrapper,
.single-post .page-hero,
.single-post .featured-hero {
  display: none !important;
}

/* reset background post */
.single-post body,
.single-post main {
  background: #ffffff !important;
}
/* HERO (biar mirip DC) */
.detail-hero {
  background: #06b6b6;
  padding: 60px 0;
}

.detail-hero h1 {
  font-size: 36px;
  font-weight: 600;
}

/* FILTER */
.dc-filter {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.dc-filter button {
  border: 1px solid #000;
  background: transparent;
  padding: 8px 16px;
  font-weight: 600;
}

.dc-filter button.active {
  background: #000;
  color: #fff;
}

/* GRID */
.dc-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.dc-card {
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
}

.dc-card-head {
  padding: 24px;
  text-align: center;
  color: #fff;
}

.dc-card-head h3 {
  font-size: 32px;
  margin-top: 10px;
}

.dc-brand {
  font-size: 14px;
  font-weight: 600;
}

/* WARNA */
.dc-card.blue .dc-card-head { background: #1e95cf; }
.dc-card.orange .dc-card-head { background: #f7941d; }
.dc-card.yellow .dc-card-head { background: #ffc400; }

/* BODY */
.dc-card-body {
  padding: 20px;
}

.dc-card-body h4 {
  font-size: 16px;
  font-weight: 600;
}

.dc-card-body a {
  color: #000;
  text-decoration: none;
}

.dc-category {
  font-size: 12px;
  color: #1e95cf;
  display: block;
  margin-bottom: 10px;
}

/* PAGINATION */
.dc-pagination {
  text-align: center;
  margin: 50px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dc-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dc-article-grid {
    grid-template-columns: 1fr;
  }
}
/* SEBELUMNYA: biru/oranye/kuning */
/* SEKARANG: brand Mindset Indonesia */

/* PRIMARY */
.dc-card.blue .dc-card-head {
  background: linear-gradient(
    135deg,
    var(--mi-purple-main),
    var(--mi-purple-soft)
  );
}

/* SECONDARY */
.dc-card.orange .dc-card-head {
  background: linear-gradient(
    135deg,
    var(--mi-pink-dark),
    var(--mi-pink-main)
  );
}

/* TERTIARY */
.dc-card.yellow .dc-card-head {
  background: linear-gradient(
    135deg,
    var(--mi-purple-soft),
    var(--mi-purple-main)
  );
}
.dc-card {
  background: #fff;
  border: 1px solid var(--mi-border);
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.dc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11,15,26,.12);
}
.dc-filter button {
  border: 1px solid var(--mi-purple-soft);
  background: transparent;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s ease;
}

.dc-filter button:hover {
  background: var(--mi-purple-soft);
  color: #fff;
}

.dc-filter button.active {
  background: var(--mi-pink-main);
  border-color: var(--mi-pink-main);
  color: #fff;
}
.dc-pagination span,
.dc-pagination a {
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.dc-pagination .current {
  background: var(--mi-pink-main);
  color: #fff;
}
.mi-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* lebih rapat dari sebelumnya */
  margin-top: 40px;
}
.mi-card {
  display: block;
  background: #ffffff;
  border: 1px solid #2e2e2e;
  border-radius: 2px; /* hampir kotak */
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.mi-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mi-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mi-card-content {
  padding: 14px 16px 18px;
}
.mi-card-brand {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}
.mi-card-content h4 {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000000;
}
.mi-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}
@media (max-width: 1024px) {
  .mi-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .mi-card-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   SINGLE ARTICLE HERO – PREMIUM EDITORIAL
========================================= */

.single-post .mck-hero {
  position: relative;
  height: 44vh;
  min-height: 340px;
  max-height: 480px;
  overflow: hidden;
}

/* Background lebih soft + blur subtle */
.single-post .mck-hero-bg {
  transform: scale(1.04);
  filter: brightness(0.85) contrast(1.05);
}

/* Overlay lebih premium & depth */
.single-post .mck-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0.10) 0%,
    rgba(2,6,23,0.55) 65%,
    rgba(2,6,23,0.85) 100%
  );
}

/* Content spacing */
.single-post .mck-hero-content {
  padding-bottom: 40px;
}

/* Title – lebih elite */
.single-post .mck-title {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 0.80;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 760px;
  margin-bottom: 10px;
}

/* Meta lebih subtle */
.single-post .mck-meta {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* =========================================
   BODY SPACING – PREMIUM FLOW
========================================= */

.single-post .mck-body {
  padding-top: 72px;
  padding-bottom: 110px;
}

/* Paragraph rhythm lebih consulting style */
.single-post .mck-content p {
  font-size: 17px;
  line-height: 0.50;
  margin-bottom: 18px;
}

/* Heading rhythm */
.single-post .mck-content h2 {
  margin-top: 56px;
  line-height: 0.50;
  margin-bottom: 16px;
}

.single-post .mck-content h3 {
  margin-top: 36px;
  line-height: 0.50;
  margin-bottom: 12px;
}

/* =========================================
   MOBILE – Clean & Compact
========================================= */

@media (max-width: 768px) {

  .single-post .mck-hero {
    height: 38vh;
    min-height: 260px;
  }

  .single-post .mck-title {
    font-size: 22px;
    line-height: 1.65;
  }

  .single-post .mck-body {
    padding-top: 48px;
  }

  .single-post .mck-content p {
    font-size: 16px;
    line-height: 0.80;
  }
}

/* =========================================================
   ARTICLE ARCHIVE – DALE STYLE (THEME COLOR VERSION)
========================================================= */

.dc-article-grid {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.dc-card {
  border: 1px solid #E5E7EB;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.dc-card-header {
  padding: 22px 20px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}

/* THEME COLORS */
.dc-pink .dc-card-header {
  background: #D5439D;
}

.dc-magenta .dc-card-header {
  background: #AD2579;
}

.dc-indigo .dc-card-header {
  background: #484287;
}

/* IMAGE */
.dc-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BODY */
.dc-card-body {
  padding: 20px;
}

.dc-card h4 {
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
}

.dc-card h4 a {
  color: #0F172A;
  text-decoration: none;
}

.dc-card h4 a:hover {
  text-decoration: underline;
}

/* CATEGORY */
.dc-category {
  font-size: 12px;
  color: #AD2579;
  display: inline-block;
  margin-bottom: 10px;
}

/* EXCERPT */
.dc-excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
}

/* PAGINATION */
.dc-pagination {
  text-align: center;
  margin-bottom: 120px;
}

.dc-pagination .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  border: 1px solid #CBD5E1;
  font-size: 14px;
  color: #0F172A;
  text-decoration: none;
}

.dc-pagination .current {
  background: #484287;
  color: #ffffff;
  border-color: #484287;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dc-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .dc-article-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   EDITORIAL HERO IMAGE (IMAGE ONLY)
========================================= */

.mck-hero-image {
  width: 100%;
  height: 55vh;
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
}

.mck-hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* =========================================
   TITLE BLOCK BELOW HERO
========================================= */

.mck-title-block {
  padding: 64px 0 40px;
  background: #ffffff;
}

.mck-title {
  font-size: 42px;
  line-height: 1.50;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 18px;
}

.mck-meta {
  font-size: 14px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 768px) {

  .mck-hero-image {
    height: 38vh;
    min-height: 260px;
  }

  .mck-title {
    font-size: 26px;
  }

  .mck-title-block {
    padding: 40px 0 28px;
  }
}
/* ===============================
   TITLE CENTERED – ENTERPRISE
================================ */

.mck-title-block {
  padding: 80px 0 56px;
  background: #ffffff;
  text-align: center; /* ⬅️ INI KUNCI */
}

.mck-title {
  font-size: 48px;
  line-height: 1.50;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 20px; /* ⬅️ CENTER */
}

.mck-meta {
  font-size: 14px;
  color: #64748b;
}
/* =========================================
   PREMIUM ENTERPRISE HERO
========================================= */

.mck-hero-image {
  position: relative;
  width: 100%;
  height: 70vh;        /* lebih besar */
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

.mck-hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease, opacity .8s ease;
}

/* GRADIENT FADE BAWAH */
.mck-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.1) 0%,
    rgba(2,6,23,0.3) 50%,
    rgba(2,6,23,0.75) 100%
  );
}
@media (max-width: 768px) {

  .mck-hero-image {
    height: 50vh;
    min-height: 340px;
  }

  .mck-title {
    font-size: 28px;
  }
}
/* =========================================
   ENTERPRISE HERO – POLISHED
========================================= */

.mck-hero-image {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.mck-hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.4s ease, opacity .9s ease;
}

/* Depth overlay refined */
.mck-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.05) 0%,
    rgba(2,6,23,0.25) 45%,
    rgba(2,6,23,0.65) 100%
  );
}

/* Smooth fade into white */
.mck-hero-image::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}
/* =========================================
   TITLE BLOCK – ENTERPRISE POLISH
========================================= */

.mck-title-block {
  padding: 96px 0 64px;
  text-align: center;
  background: #ffffff;
}


/* Elegant divider */
.mck-title-block::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1e293b;
  margin: 28px auto 0;
  opacity: 0.15;
}

.mck-meta {
  font-size: 14px;
  color: #64748b;
  letter-spacing: 0.04em;
}
/* =========================================
   BODY RHYTHM – POLISHED
========================================= */



.mck-content p {
  font-size: 18px;
  line-height: 1.00;
  margin-bottom: 22px;
  color: #1e293b;
}

.mck-content h2 {
  font-size: 30px;
  line-height: 1.25;
  margin-top: 72px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.mck-content h3 {
  font-size: 22px;
  margin-top: 42px;
  margin-bottom: 14px;
}

.mck-content ul,
.mck-content ol {
  margin-bottom: 24px;
}
.mck-body {
  padding-bottom: 140px;
}

footer {
  margin-top: -40px;
}


.mck-hero-bg {
  filter: contrast(1.05) brightness(0.9);
}

.mck-title {
  font-weight: 650;
}
.mck-meta {
  opacity: 0.7;
}
.mck-content p {
  color: #0f172a;
}

.mck-content h2 {
  font-weight: 600;
}
.mck-body {
  padding-bottom: 160px;
}
/* ===============================
   EDITORIAL TYPOGRAPHY FIX FINAL
=============================== */

.mck-title {
  line-height: 1.2;
}

.mck-content p {
  line-height: 1.7;
}

.mck-content h2 {
  line-height: 1.3;
}

.mck-content h3 {
  line-height: 1.35;
}
/* =====================================================
   NAVBAR PRODUCTION CLEAN – FINAL STABLE
===================================================== */

/* ================= HEADER ================= */
.pertamina-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #ffffff;
  z-index: 9999;
  border-bottom: 1px solid #e5e7eb;
}

.pertamina-container {
  max-width: 1200px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BODY OFFSET */
body {
  padding-top: 64px;
}

/* ================= LOGO ================= */
.pertamina-logo img {
  height: 36px;
  display: block;
}

/* ================= MENU DESKTOP ================= */
.pertamina-nav {
  display: flex;
}

.pertamina-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pertamina-menu > li {
  position: relative;
}

.pertamina-menu > li > a {
  display: flex;
  align-items: center;
  height: 64px;
  font-size: 14.5px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
}

/* ================= DROPDOWN LEVEL 1 ================= */
@media (min-width: 1025px) {

  .pertamina-menu > li > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    display: none;
    z-index: 9999;
  }

  .pertamina-menu > li:hover > ul.sub-menu {
    display: block;
  }

  .pertamina-menu > li > ul.sub-menu > li {
    position: relative;
  }

  .pertamina-menu > li > ul.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #111827;
    white-space: nowrap;
  }

  .pertamina-menu > li > ul.sub-menu li a:hover {
    background: #f1f5f9;
  }

  /* ================= DROPDOWN LEVEL 2 (INI FIX UTAMA) ================= */
  .pertamina-menu > li > ul.sub-menu > li > ul.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;   /* ⬅️ INI YANG BIKIN MUNCUL KE SAMPING */
    min-width: 260px;
    background: #ffffff;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    display: none;
  }

  .pertamina-menu > li > ul.sub-menu > li:hover > ul.sub-menu {
    display: block;
  }
}

/* ================= BURGER ================= */
.pertamina-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.pertamina-toggle span {
  width: 24px;
  height: 2px;
  background: #111827;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {

  .pertamina-toggle {
    display: flex;
  }

  .pertamina-nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    transform: translateY(-120%);
    transition: transform .3s ease;
  }

  .pertamina-nav.active {
    transform: translateY(0);
  }

  .pertamina-menu {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .pertamina-menu ul {
    position: static;
    display: none;
    padding-left: 16px;
  }

  .pertamina-menu li.open > ul {
    display: block;
  }
}
/* ==================================
   REMOVE SUBMENU INDICATOR DOT
================================== */

/* Hapus bullet bawaan */
.pertamina-menu li {
  list-style: none !important;
}

/* Hapus pseudo element (kalau ada) */
.pertamina-menu li::after,
.pertamina-menu li::before {
  content: none !important;
}

/* Hapus marker khusus submenu */
.pertamina-menu .sub-menu li::after,
.pertamina-menu .sub-menu li::before {
  content: none !important;
}

.square-related {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--mi-border);
}

.square-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #0b1220;
}

.single-post .square-grid {
  display: flex;
  justify-content: center; /* ⬅️ ini kunci */
  gap: 40px;
}


.square-card {
  width: 200px;   /* sekitar 10cm visual */
  text-decoration: none;
  transition: all 0.3s ease;
}

.square-image {
  width: 200px;
  height: 200px;  /* bikin benar-benar kotak kecil */
  overflow: hidden;
  border-radius: 14px;
}

.square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.square-heading {
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.4;
  color: #111827;
}
.mck-content {
   width: 100%;
   max-width: 100%;
   padding: 0 6%;
}

.mck-title-block .mck-container {
   max-width: 100%;
   padding: 0 6%;
}
.mck-container-fluid {
   width: 100%;
   padding: 0 6%;
}
.single-post .mck-content {
  max-width: 1200px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}
/* =========================================
   SINGLE POST – ENTERPRISE FINAL SYSTEM
========================================= */

/* ===== HERO ===== */
.single-post .mck-hero-image {
  height: 70vh;
  min-height: 520px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
}

.single-post .mck-hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.92);
}

/* ===== TITLE BLOCK ===== */
.single-post .mck-title-block {
  padding: 96px 6% 48px 6%;
  background: #ffffff;
  text-align: left;
}

.single-post .mck-title {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 100%;
}

.single-post .mck-meta {
  font-size: 14px;
  color: #64748b;
  opacity: .85;
}

/* ===== BODY ===== */
.single-post .mck-body {
  padding: 0 6% 140px 6%;
}

.single-post .mck-content {
  width: 100%;
  max-width: 100%;
}

.single-post .mck-content p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 22px;
  color: #0f172a;
}

.single-post .mck-content h2 {
  font-size: 30px;
  margin-top: 72px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.single-post .mck-content h3 {
  font-size: 22px;
  margin-top: 42px;
  margin-bottom: 14px;
}

.single-post .mck-content ul,
.single-post .mck-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

/* ===== RELATED POST ===== */
.single-post .square-related {
  padding: 80px 6%;
  border-top: 1px solid #e5e7eb;
}

.single-post .square-title {
  font-size: 22px;
  margin-bottom: 40px;
}

.single-post .square-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.single-post .square-card {
  width: 220px;
}

.single-post .square-image {
  width: 220px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

.single-post .square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post .square-heading {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.45;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .single-post .mck-body,
  .single-post .mck-title-block,
  .single-post .square-related {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 768px) {

  .single-post .mck-hero-image {
    height: 45vh;
    min-height: 300px;
  }

  .single-post .mck-title {
    font-size: 26px;
  }

  .single-post .mck-content p {
    font-size: 16px;
  }

  .single-post .square-card {
    width: 160px;
  }

  .single-post .square-image {
    width: 160px;
    height: 160px;
  }
}
/* ==========================================================
   MINDSET INDONESIA – ENTERPRISE LUXURY MASTER SYSTEM
   Global Consulting Grade
   Paste at the VERY BOTTOM of style.css
========================================================== */

/* =========================
   GLOBAL RESET CLEAN
========================= */

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* =========================
   NAVBAR – LUXURY CLEAN
========================= */

.pertamina-header {
  height: 72px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.03);
}

.pertamina-container {
  height: 72px;
  max-width: 1200px;
}

.pertamina-menu > li > a {
  height: 72px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #0f172a;
  position: relative;
}

.pertamina-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D5439D;
  transition: width .25s ease;
}

.pertamina-menu > li > a:hover::after {
  width: 100%;
}

/* =========================
   HERO IMAGE – EDITORIAL
========================= */

.single-post .mck-hero-image {
  height: 72vh;
  min-height: 540px;
  max-height: 880px;
}

.single-post .mck-hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(.92);
}

/* =========================
   TITLE BLOCK – PREMIUM
========================= */

.single-post .mck-title-block {
  padding: 110px 8% 64px;
  text-align: left;
}

.single-post .mck-title {
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  max-width: 1000px;
  margin-bottom: 18px;
}

.single-post .mck-meta {
  font-size: 13px;
  letter-spacing: .05em;
  color: #64748b;
}

/* =========================
   ARTICLE BODY – LUXURY FLOW
========================= */

.single-post .mck-body {
  padding: 0 8% 160px;
}

.single-post .mck-content {
  max-width: 960px;
}

.single-post .mck-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #111827;
  margin-bottom: 26px;
}

.single-post .mck-content h2 {
  font-size: 30px;
  margin-top: 80px;
  margin-bottom: 24px;
  line-height: 1.25;
}

.single-post .mck-content h3 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 16px;
}

/* =========================
   RELATED – MINIMAL LUXURY
========================= */

.single-post .square-related {
  padding: 100px 8%;
  border-top: 1px solid rgba(0,0,0,.08);
}

.single-post .square-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 48px;
}

.single-post .square-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.single-post .square-card {
  width: 220px;
}

.single-post .square-image {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.single-post .square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.single-post .square-card:hover img {
  transform: scale(1.05);
}

.single-post .square-heading {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}


/* =========================
   BUTTON – CONFIDENT
========================= */

.btn-primary,
.schedule-btn,
.ctp-btn.primary {
  background: #D5439D !important;
  font-weight: 600;
  letter-spacing: .02em;
}

.btn-primary:hover {
  background: #AD2579 !important;
}

/* =========================================
   RELATED ARTICLES – ENTERPRISE (4 GRID)
========================================= */

.square-related {
  padding: 100px 6% 120px;
  background: #ffffff;
  position: relative;
}

/* Subtle Divider */
.square-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(15,23,42,0.15),
    transparent
  );
}

/* Editorial Headline */
.square-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  color: #0f172a;
}

/* GRID 4 */
.square-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.square-card {
  text-decoration: none;
  display: block;
  transition: transform .35s ease;
}

/* IMAGE */
.square-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #f1f5f9;
}

.square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* TITLE */
.square-heading {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 18px;
  color: #0f172a;
  transition: color .25s ease;
}

/* MICRO HOVER */
.square-card:hover {
  transform: translateY(-6px);
}

.square-card:hover .square-image img {
  transform: scale(1.08);
}

.square-card:hover .square-heading {
  color: #D5439D;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .square-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .square-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== WHATSAPP ENTERPRISE BUTTON ===== */

.mi-wa-button{
position:fixed;
bottom:28px;
right:28px;
width:60px;
height:60px;
background:linear-gradient(135deg,#25D366,#1da851);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 12px 30px rgba(0,0,0,0.25);
z-index:9999;
transition:all .35s ease;
}

/* Hover effect */

.mi-wa-button:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

/* Pulse animation */

.mi-wa-button::after{
content:"";
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:rgba(37,211,102,0.5);
animation:mi-wa-pulse 2s infinite;
z-index:-1;
}

@keyframes mi-wa-pulse{
0%{transform:scale(1);opacity:.6}
70%{transform:scale(1.6);opacity:0}
100%{opacity:0}
}

/* Tooltip */

.mi-wa-tooltip{
position:absolute;
right:75px;
background:#111827;
color:#fff;
font-size:13px;
padding:8px 14px;
border-radius:6px;
white-space:nowrap;
opacity:0;
transform:translateX(10px);
transition:all .3s ease;
}

.mi-wa-button:hover .mi-wa-tooltip{
opacity:1;
transform:translateX(0);
}

.mi-articles-filter{
margin-bottom:30px;
}

.mi-category-select{
padding:10px 14px;
border-radius:6px;
border:1px solid #ddd;
font-size:14px;
background:#fff;
min-width:200px;
cursor:pointer;
}

.mi-category-select:focus{
outline:none;
border-color:#6a4bc6;
}


.mi-articles-filter{
margin:40px 0;
display:flex;
flex-direction:column;
gap:8px;
max-width:280px;
}

.mi-filter-label{
font-size:14px;
font-weight:600;
color:#333;
}

.mi-category-select{
appearance:none;
padding:12px 16px;
border-radius:6px;
border:1px solid #ddd;
font-size:14px;
background:#fff url("data:image/svg+xml;utf8,<svg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
background-size:16px;
cursor:pointer;
}

.mi-category-select:focus{
outline:none;
border-color:#6a4bc6;
}

.mi-events-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.mi-event-card{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.mi-event-card img{
width:100%;
height:auto;
display:block;
}

.mi-event-content{
padding:20px;
}

.mi-event-content h3{
font-size:18px;
margin-bottom:10px;
}

.mi-event-content p{
font-size:14px;
color:#666;
}

.wa-floating {
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


.home-articles {
    padding: 80px 0;
    background: #f9fafc;
    text-align: center;
}

.home-articles h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center; /* INI YANG BIKIN KE TENGAH */
    gap: 25px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.article-card:hover {
    transform: translateY(-6px);
}

.thumb {
    width: 100%;
    aspect-ratio: 16/9; /* sama kayak video */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 16px;
    text-align: left;
}

.content h3 {
    font-size: 15px;
    line-height: 1.4;
    min-height: 42px; /* biar rata */
}

.content p {
    font-size: 13px;
    color: #666;
}