@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Ubuntu:wght@400;500;700&display=swap");

body,
p {
  font-family: "Inter", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Ubuntu", sans-serif !important;
}

/* ==========================================
   1. PPIC HERO SECTION
   ========================================== */
/* Container Utama */
.ppic-hero-section {
  background-color: #12283a; /* Biru gelap PPI */
  width: 100%;
  padding: 180px 0 120px;
}
/* =========================================================================
   GLOBAL HERO TOP SPACING
   ========================================================================= */
.ppic-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Sisi Teks (Kiri) */
.ppic-hero-text {
  flex: 1;
  color: #ffffff;
}

.ppic-hero-text h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ppic-hero-text p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Tombol */
.ppic-btn-primary {
  display: inline-block;
  background-color: #f8b425; /* Kuning PPI */
  color: #12283a;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ppic-btn-primary:hover {
  background-color: #e09f1d;
  transform: translateY(-2px);
  color: #12283a;
}

/* Sisi Gambar (Kanan) */
.ppic-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ppic-hero-slider {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.ppic-hero-slider-viewport {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.ppic-hero-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.ppic-hero-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
}

.ppic-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppic-hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(18, 40, 58, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.ppic-hero-slider-arrow:hover {
  background-color: rgba(248, 180, 37, 0.95);
  color: #12283a;
}

.ppic-hero-slider-arrow.is-prev {
  left: 16px;
}

.ppic-hero-slider-arrow.is-next {
  right: 16px;
}

.ppic-hero-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.ppic-hero-slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.ppic-hero-slider-dot.is-active {
  background-color: #f8b425;
  transform: scale(1.15);
}

.ppic-hero-slider.is-single .ppic-hero-slider-dots,
.ppic-hero-slider.is-single .ppic-hero-slider-arrow {
  display: none;
}

/* Responsif untuk HP / Tablet */
@media (max-width: 991px) {
  .ppic-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .ppic-hero-text h2 {
    font-size: clamp(1.8rem, 7vw, 2rem);
  }

  .ppic-hero-image {
    justify-content: center;
    margin-top: 20px;
  }

  .ppic-hero-slider {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .ppic-hero-section {
    padding-top: 140px;
  }

  .ppic-hero-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .ppic-hero-slider-arrow.is-prev {
    left: 10px;
  }

  .ppic-hero-slider-arrow.is-next {
    right: 10px;
  }
}

/* ==========================================
   2. PPIC STATS SECTION
   ========================================== */
.ppic-stats-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  padding: 56px 0;
  width: 100%;
}

.ppic-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ppic-stat-item {
  text-align: center;
  padding: 12px 16px;
}

.ppic-stat-item h3 {
  margin: 0 0 10px;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  color: #003b73;
}

.ppic-stat-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #284b6d;
}

@media (max-width: 991px) {
  .ppic-stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .ppic-stat-item h3 {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .ppic-stats-section {
    padding: 44px 0;
  }

  .ppic-stats-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ppic-stat-item h3 {
    font-size: 38px;
  }

  .ppic-stat-item p {
    font-size: 16px;
  }
}

/* ==========================================
   3. PPIC ACCREDITATION SECTION
   ========================================== */
.ppic-accreditation-section {
  background-color: #eef3f9;
  padding: 72px 0 76px;
  width: 100%;
}

.ppic-accreditation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-accreditation-title {
  margin: 0;
  text-align: center;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: #003b73;
}

.ppic-accreditation-subtitle {
  max-width: 680px;
  margin: 22px auto 48px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #4d6480;
}

.ppic-accreditation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.ppic-accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ppic-accreditation-item:hover {
  transform: translateY(-6px);
}

.ppic-accreditation-logo {
  width: 100%;
  max-width: 92px;
  height: 92px;
  object-fit: contain;
}

.ppic-accreditation-item span {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0d233a;
}

@media (max-width: 991px) {
  .ppic-accreditation-title {
    font-size: 40px;
  }

  .ppic-accreditation-subtitle {
    margin-bottom: 36px;
    font-size: 18px;
  }

  .ppic-accreditation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 575px) {
  .ppic-accreditation-section {
    padding: 56px 0 60px;
  }

  .ppic-accreditation-title {
    font-size: 31px;
  }

  .ppic-accreditation-subtitle {
    margin: 18px auto 30px;
    font-size: 16px;
  }

  .ppic-accreditation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .ppic-accreditation-logo {
    max-width: 78px;
    height: 78px;
  }

  .ppic-accreditation-item span {
    font-size: 14px;
  }
}

/* ==========================================
   4. PPIC DIRECTOR GREETING SECTION
   ========================================== */
.ppic-director-greeting-section {
  background-color: #ffffff;
  padding: 180px 0 40px;
  width: 100%;
}

.ppic-director-greeting-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.ppic-director-greeting-image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(13, 35, 58, 0.12);
}

.ppic-director-greeting-content h3 {
  margin: 0 0 26px;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #003b73;
}

.ppic-director-greeting-quote {
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.72;
  color: #425f7f;
}

.ppic-director-greeting-meta {
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.6;
  color: #36516e;
}

.ppic-director-greeting-meta strong {
  color: #0d233a;
}

.ppic-director-greeting-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8b425;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ppic-director-greeting-link a:hover {
  color: #d99718;
  transform: translateX(2px);
}

@media (max-width: 991px) {
  .ppic-director-greeting-section {
    padding: 60px 0 68px;
  }

  .ppic-director-greeting-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ppic-director-greeting-image {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .ppic-director-greeting-content {
    text-align: center;
  }

  .ppic-director-greeting-content h3 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .ppic-director-greeting-quote {
    font-size: 19px;
    margin-bottom: 24px;
  }

  .ppic-director-greeting-meta {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .ppic-director-greeting-link a {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ppic-director-greeting-section {
    padding: 48px 0 56px;
  }

  .ppic-director-greeting-image img {
    height: auto;
  }

  .ppic-director-greeting-content h3 {
    font-size: 32px;
  }

  .ppic-director-greeting-quote {
    font-size: 17px;
  }

  .ppic-director-greeting-meta {
    font-size: 16px;
  }

  .ppic-director-greeting-link a {
    font-size: 16px;
  }
}

/* ==========================================
   5. PPIC FEATURED PROGRAMS SECTION
   ========================================== */
.ppic-featured-programs-section {
  background-color: #ffffff;
  padding: 74px 0 86px;
  width: 100%;
}

.ppic-featured-programs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-featured-programs-title {
  margin: 0;
  text-align: center;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  color: #003b73;
}

.ppic-featured-programs-subtitle {
  max-width: 760px;
  margin: 20px auto 52px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #5a7089;
}

.ppic-featured-programs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ppic-featured-program-card {
  min-height: 210px;
  padding: 24px 20px 28px;
  border: 1px solid #e8edf3;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 40, 58, 0.04);
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.ppic-featured-program-card:hover {
  transform: translateY(-8px);
  border-color: #dbe5f0;
  box-shadow: 0 20px 38px rgba(18, 40, 58, 0.12);
}

.ppic-featured-program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  background-color: #003b73;
  color: #ffffff;
  font-size: 28px;
}

.ppic-featured-program-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  color: #0d3458;
}

.ppic-featured-program-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #61748b;
}

@media (max-width: 1199px) {
  .ppic-featured-programs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ppic-featured-programs-section {
    padding: 60px 0 70px;
  }

  .ppic-featured-programs-title {
    font-size: 42px;
  }

  .ppic-featured-programs-subtitle {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .ppic-featured-programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .ppic-featured-programs-section {
    padding: 48px 0 56px;
  }

  .ppic-featured-programs-title {
    font-size: 32px;
  }

  .ppic-featured-programs-subtitle {
    margin: 18px auto 30px;
    font-size: 16px;
  }

  .ppic-featured-programs-grid {
    grid-template-columns: 1fr;
  }

  .ppic-featured-program-card {
    min-height: auto;
    padding: 22px 18px 24px;
  }
}

/* ==========================================
   6. PPIC INSTAGRAM SECTION
   ========================================== */
.ppic-instagram-section {
  background-color: #ffffff;
  padding: 52px 0 28px;
  width: 100%;
}

.ppic-instagram-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.ppic-instagram-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #003b73;
}

.ppic-instagram-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid #003b73;
  border-radius: 999px;
  color: #003b73;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.ppic-instagram-header a:hover {
  background-color: #003b73;
  color: #ffffff;
}

.ppic-instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ppic-instagram-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 26px rgba(18, 40, 58, 0.1);
  isolation: isolate;

  /* Tambahan untuk memaksa gambar selalu di tengah */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f5f9; /* Abu-abu muda jika gambar transparan/belum meload */
}

.ppic-instagram-card.is-embed {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.ppic-instagram-card.is-embed .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.ppic-instagram-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Memaksa titik fokus potongan/crop selalu di tengah */
  transition: transform 0.35s ease;
}

.ppic-instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 36, 64, 0.12) 0%,
    rgba(8, 36, 64, 0.78) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.ppic-instagram-card.is-embed::after {
  display: none;
}

.ppic-instagram-card:hover img {
  transform: scale(1.05);
}

.ppic-instagram-card:hover::after {
  opacity: 1;
}

.ppic-instagram-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
  pointer-events: none;
}

.ppic-instagram-card:hover .ppic-instagram-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.22);
}

.ppic-instagram-card.is-embed .ppic-instagram-icon {
  display: none;
}

@media (max-width: 991px) {
  .ppic-instagram-section {
    padding: 46px 0 24px;
  }

  .ppic-instagram-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppic-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .ppic-instagram-header h2 {
    font-size: 24px;
  }

  .ppic-instagram-header a {
    font-size: 13px;
  }

  .ppic-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================
   7. PPIC WHY HOME SECTION
   ========================================== */
.why-home-ppic {
  background-color: #fafbfe; /* Warna background abu-abu sangat muda/putih salju */
  padding: 80px 0;
  width: 100%;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ppic-why-home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Bagian Gambar Kiri */
.why-home-image {
  flex: 1;
}

.why-home-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Efek melayang */
  object-fit: cover;
}

/* Bagian Konten Kanan */
.why-home-content {
  flex: 1.2;
  color: #333333;
}

.why-home-content h2 {
  font-size: 36px;
  color: #0d233a; /* Biru PPI */
  font-weight: 800;
  margin-bottom: 15px;
}

.why-home-content .punchline {
  font-size: 20px;
  color: #f8b425; /* Kuning PPI */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.why-home-content .lead {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* List Centang */
.why-home-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.why-home-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
}

.why-home-list li i {
  color: #f8b425; /* Warna icon check kuning */
  font-size: 18px;
  margin-top: 3px;
}

.why-home-list li strong {
  color: #0d233a; /* Teks tebal biru gelap */
}

/* Teks Bawah (Micro CTA) */
.micro-cta-home {
  border-left: 4px solid #f8b425;
  padding-left: 16px;
  font-size: 15px;
  color: #333333;
  font-weight: 500;
  line-height: 1.6;
}

.micro-cta-home a {
  color: #0f4c81;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.micro-cta-home a:hover {
  color: #f8b425;
}

/* Responsive Mobile & Tablet */
@media (max-width: 991px) {
  .ppic-why-home-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-home-content h2 {
    font-size: 28px;
  }

  .why-home-content .punchline {
    font-size: 18px;
  }
}

/* =========================================================================
   8. ELEMENT: PPIC NEWS GRID (FULL & RESPONSIVE)
   ========================================================================= */

.ppic-news-section {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f8f9fc; /* Background abu-abu muda */
  box-sizing: border-box;
}

/* --- Header & Deskripsi --- */
.ppic-news-header {
  text-align: center;
  margin-bottom: 50px;
}

.ppic-news-main-title {
  color: #0f2a4a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ppic-news-sub-title {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

/* --- Row & Columns (Grid Kustom Anti-Bentrok) --- */
.ppic-news-row {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.ppic-news-slider {
  position: relative;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.ppic-news-slider__viewport {
  overflow: hidden;
  padding: 4px 2px 6px;
}

.ppic-news-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ppic-news-col {
  display: contents;
}

/* --- Card Container --- */
.ppic-news-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column; /* Bikin elemen numpuk ke bawah */
  flex: 0 0 calc((100% - 40px) / 3);
  width: 100%;
  max-width: 320px;
  min-width: 0;
  height: 100%; /* Paksa kotak memenuhi tinggi kolom */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ppic-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.ppic-news-slider__arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.88);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.ppic-news-slider__arrow:hover,
.ppic-news-slider__arrow:focus-visible {
  background: #0d5ea8;
}

.ppic-news-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.ppic-news-slider__arrow.is-prev {
  left: -18px;
}

.ppic-news-slider__arrow.is-next {
  right: -18px;
}

.ppic-news-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ppic-news-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.18);
  cursor: pointer;
}

.ppic-news-slider__dot.is-active {
  background: #0d5ea8;
}

.ppic-news-slider.is-single .ppic-news-slider__arrow,
.ppic-news-slider.is-single .ppic-news-slider__dots {
  display: none;
}

/* --- Image Wrapper --- */
.ppic-news-img-wrap {
  width: 100%;
  height: 220px; /* Tinggi gambar rata semua */
  flex-shrink: 0; /* Gambar gak boleh mengecil */
  overflow: hidden;
}

.ppic-news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Content & Typography --- */
.ppic-news-content {
  display: flex;
  flex-direction: column;
  padding: 25px;
  flex-grow: 1; /* Area konten ini bakal melar ngisi ruang kosong */
}

.ppic-news-content h4 {
  font-size: 18px;
  color: #0f2a4a;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;

  /* JURUS POTONG JUDUL KEPANJANGAN (Maksimal 3 Baris) */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Standar properti */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ppic-news-content p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;

  /* JURUS POTONG DESKRIPSI (Maksimal 3 Baris) */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Standar properti */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Link Selengkapnya --- */
.ppic-news-readmore {
  font-size: 15px;
  font-weight: 700;
  color: #0f2a4a;
  text-decoration: none;
  margin-top: auto; /* Dorong tombol terus ke dasar kotak */
  align-self: flex-start;
  transition: color 0.3s ease;
}

.ppic-news-readmore:hover {
  color: #f0a500; /* Warna kuning emas pas di-hover */
  text-decoration: none;
}

/* =========================================================================
   RESPONSIVE LAYOUT (Tablet & Mobile)
   ========================================================================= */

/* Untuk Layar Tablet (Lebar max 992px) -> Jadi 2 Kolom */
@media (max-width: 992px) {
  .ppic-news-card {
    flex-basis: calc((100% - 20px) / 2);
    max-width: none;
  }

  .ppic-news-slider__arrow.is-prev {
    left: -10px;
  }

  .ppic-news-slider__arrow.is-next {
    right: -10px;
  }
}

/* Untuk Layar HP (Lebar max 768px) -> Jadi 1 Kolom Full */
@media (max-width: 768px) {
  .ppic-news-section {
    padding: 40px 15px;
  }

  .ppic-news-main-title {
    font-size: 26px;
  }

  .ppic-news-slider__track {
    gap: 12px;
  }

  .ppic-news-card {
    flex-basis: 100%;
    max-width: none;
  }

  .ppic-news-img-wrap {
    height: 200px;
  }

  .ppic-news-slider__arrow {
    top: 34%;
    width: 34px;
    height: 34px;
  }

  .ppic-news-slider__arrow.is-prev {
    left: -6px;
  }

  .ppic-news-slider__arrow.is-next {
    right: -6px;
  }
}

/* =========================================================================
   9. ELEMENT: PPIC EXPLORE PROGRAMS
   ========================================================================= */

.ppic-explore-wrapper {
  background-color: #0d263c;
  padding: 180px 0 120px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.ppic-explore-content {
  max-width: 900px;
  margin: 0 auto;
}

.ppic-explore-title {
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.ppic-explore-desc {
  color: #f8f9fa;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 35px auto;
  max-width: 780px;
}

/* --- Tombol "Kembali ke Beranda" --- */
.ppic-explore-btn {
  display: inline-block;
  background-color: #053b6a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ppic-explore-btn:hover {
  background-color: #f0a500; /* Warna kuning emas PPI saat di-hover */
  color: #0d263c; /* Teks berubah jadi gelap biar kontras */
  border-color: #f0a500;
  text-decoration: none;
}

/* =========================================================================
   RESPONSIVE LAYOUT (Tablet & Mobile)
   ========================================================================= */

@media (max-width: 768px) {
  .ppic-explore-wrapper {
    padding: 60px 15px;
  }

  .ppic-explore-title {
    font-size: 32px;
  }

  .ppic-explore-desc {
    font-size: 14.5px;
    margin-bottom: 25px;
  }

  .ppic-explore-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* =========================================================================
   10. ELEMENT: PPIC RPL PROGRAMS 
   ========================================================================= */

.ppic-rpl-section {
  background-color: #f8fafc !important;
  background-image: none !important;
  padding: 120px 0 40px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.ppic-rpl-header {
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.ppic-rpl-header h2 {
  font-size: 32px;
  color: #0f2a4a !important;
  margin-bottom: 15px;
}

.ppic-rpl-header p {
  color: #666 !important;
  max-width: 600px;
  margin: 0 auto;
}

.ppic-rpl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.ppic-rpl-card {
  padding: 20px;
}

.ppic-rpl-card i {
  font-size: 40px;
  color: #f8b400;
  margin-bottom: 20px;
  display: block;
}

.ppic-rpl-card h4 {
  color: #0f2a4a !important;
  font-weight: 700;
  margin-bottom: 15px;
}

.ppic-rpl-card p {
  font-size: 14px;
  color: #444 !important;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .ppic-rpl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ppic-rpl-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ppic-rpl-header h2 {
    font-size: 26px;
  }
}

.ppic-rpl-btn {
  display: inline-block;
  background: #f8b400;
  color: #0f2a4a;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ppic-rpl-btn:hover {
  background: #e0a200;
  color: #ffffff;
}

/* =========================================================================
   11. ELEMENT: PPIC About
   ========================================================================= */
/* --- Wrapper Utama --- */
.ppic-about-wrapper {
  padding: 180px 0 40px; /* Atas 180px, Kiri-Kanan 0px, Bawah 40px */
  background-color: #0f2133; /* Warna biru gelap */
  text-align: center;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ppic-about-content {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Judul --- */
.ppic-about-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ppic-about-title .text-yellow {
  color: #e8a81f; /* Warna kuning/emas sesuai gambar */
}

/* --- Deskripsi --- */
.ppic-about-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Tombol --- */
.ppic-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00365a; /* Biru pekat untuk tombol */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px; /* Bentuk pil bulat */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.ppic-about-btn .btn-icon {
  margin-right: 8px;
  font-weight: bold;
}

.ppic-about-btn:hover {
  background-color: #004d80;
  color: #ffffff;
  text-decoration: none;
}

/* --- Responsif untuk HP --- */
@media (max-width: 768px) {
  .ppic-about-title {
    font-size: 32px;
  }
  .ppic-about-desc {
    font-size: 15px;
    padding: 0 15px;
  }
}

/* =========================================================================
   12. ELEMENT: PPIC TIMELINE
   ========================================================================= */

/* --- Wrapper & Header --- */
.ppic-timeline-wrapper {
  padding: 180px 0 40px; /* Atas 180px, Kiri-Kanan 0px, Bawah 40px */
  background-color: #f4f6f9; /* Warna abu-abu kebiruan sangat terang */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #44546a; /* Warna teks kebiruan redup */
}

.ppic-timeline-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.ppic-timeline-title {
  font-size: 36px;
  font-weight: 700;
  color: #00365a;
  margin-bottom: 16px;
}

.ppic-timeline-title .text-yellow {
  color: #f7a800; /* Kuning emas */
}

.ppic-timeline-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #607080;
}

/* --- Timeline Container --- */
.ppic-timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Garis tengah */
.ppic-timeline-container::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #c99321;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

/* --- Timeline Items --- */
.timeline-item {
  padding: 15px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

/* Penempatan Kiri & Kanan */
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}

/* --- Konten Kotak --- */
.timeline-content {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 49, 83, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 49, 83, 0.1);
  border-color: #f5b01b;
}

.timeline-year {
  font-size: 24px;
  font-weight: 700;
  color: #f7a800;
  margin: 0 0 10px 0;
}

.timeline-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #00365a;
  margin: 0 0 10px 0;
}

.timeline-item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #607080;
  margin: 0;
}

/* --- Titik pada Garis --- */
.timeline-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #f7a800;
  border: 4px solid #f4f6f9; /* Simulasi border putih/transparan */
  border-radius: 50%;
  top: 45px;
  z-index: 2;
  box-shadow: 0 0 0 1px #c99321;
  box-sizing: content-box !important; /* Kunci ukuran agar tidak terpengaruh tema */
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: 0;
  transform: translateX(50%);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 0;
  transform: translateX(-50%);
}

/* --- Responsif untuk HP (Max Width 768px) --- */
@media screen and (max-width: 768px) {
  /* Geser garis tengah ke kiri */
  .ppic-timeline-container::after {
    left: 31px;
  }

  /* Lebarkan item ke 100% */
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }

  /* Kembalikan posisi yang genap */
  .timeline-item:nth-child(even) {
    left: 0;
  }

  /* Sesuaikan posisi titik (semuanya di sebelah kiri) */
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
    right: auto;
    transform: none !important; /* Reset transform di tampilan HP */
  }
}

/* =========================================================================
   13. ELEMENT: PPIC VISI MISI
   ========================================================================= */

/* --- Wrapper Utama --- */
.ppic-vm-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 0 40px; /* Atas 180px, Kiri-Kanan 0px, Bawah 40px */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px; /* Jarak antara Visi dan Misi */
}

/* --- Styling Kartu --- */
.ppic-vm-card {
  background-color: #f8f9fa; /* Abu-abu sangat terang mendekati putih */
  border-radius: 16px;
  padding: 35px 40px;
  border-left: 6px solid #f7a800; /* Garis kuning di sebelah kiri */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Bayangan tipis agar elegan */
}

/* --- Header Kartu (Ikon & Judul) --- */
.ppic-vm-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.ppic-vm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppic-vm-title {
  font-size: 26px;
  font-weight: 700;
  color: #00365a; /* Biru gelap khas PPI */
  margin: 0;
}

/* --- Body Kartu (Teks Visi) --- */
.ppic-vm-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155; /* Warna teks abu-abu gelap */
  margin: 0;
}

/* --- Daftar Misi --- */
.ppic-misi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppic-misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
}

.ppic-misi-list li:last-child {
  margin-bottom: 0;
}

.misi-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; /* Penyesuaian agar ikon panah sejajar dengan teks */
}

/* --- Responsif untuk HP --- */
@media screen and (max-width: 768px) {
  .ppic-vm-card {
    padding: 25px 20px;
  }

  .ppic-vm-title {
    font-size: 22px;
  }

  .ppic-vm-body p,
  .ppic-misi-list li {
    font-size: 15px;
  }
}

/* =========================================================================
   14. ELEMENT: PPIC EXCELLENCE
   ========================================================================= */
/* --- Wrapper & Header --- */
.ppic-exc-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 0 40px; /* Atas 180px, Kiri-Kanan 0px, Bawah 40px */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ppic-exc-header {
  text-align: center;
  margin-bottom: 50px;
}

.ppic-exc-title {
  font-size: 32px;
  font-weight: 700;
  color: #00365a;
  margin-bottom: 12px;
}

.ppic-exc-title .text-yellow {
  color: #f7a800; /* Kuning emas PPI */
}

.ppic-exc-subtitle {
  font-size: 16px;
  color: #607080;
  margin: 0;
}

/* --- CSS Grid untuk Kotak --- */
.ppic-exc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Otomatis 3 kolom sejajar */
  gap: 20px; /* Jarak antar kotak */
}

/* --- Styling Kartu --- */
.exc-card {
  background-color: #ffffff;
  border: 1px solid #eaedf1;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 49, 83, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.exc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 49, 83, 0.12);
  border-color: var(--secondary, #f5b01b);
}

/* --- Kotak Huruf (Ikon) --- */
.exc-icon-box {
  background-color: #00365a; /* Biru pekat */
  color: #f7a800; /* Kuning teks */
  font-size: 24px;
  font-weight: 700;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0; /* Mencegah kotak huruf mengecil */
}

/* --- Teks Konten --- */
.exc-content {
  display: flex;
  flex-direction: column;
}

.exc-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #001f3f;
  margin: 0 0 6px 0;
}

.exc-item-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* --- Responsif --- */
/* Untuk Tablet: Ubah jadi 2 kolom */
@media screen and (max-width: 992px) {
  .ppic-exc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Untuk HP: Ubah jadi 1 kolom */
@media screen and (max-width: 768px) {
  .ppic-exc-title {
    font-size: 26px;
  }
  .ppic-exc-grid {
    grid-template-columns: 1fr;
  }
  .exc-card {
    padding: 20px;
  }
}

/* =========================================================================
   15. ELEMENT: PPIC AKADEMIK GRID HOME
   ========================================================================= */
.ppic-akademik-grid-home {
  background: #ffffff;
  padding: 72px 0;
}

.ppic-akademik-grid-home__container {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-akademik-grid-home__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.ppic-akademik-grid-home__title {
  margin: 0 0 14px;
  color: #00365a;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
}

.ppic-akademik-grid-home__subtitle {
  margin: 0;
  color: #607080;
  font-size: 17px;
  line-height: 1.7;
}

.ppic-akademik-grid-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(13, 35, 58, 0.1);
}

.ppic-akademik-grid-home__item {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(44, 41, 112, 0.72) 0%,
    rgba(56, 42, 129, 0.82) 100%
  );
  --ppic-akademik-button-bg: rgba(255, 255, 255, 0.18);
  --ppic-akademik-button-color: #ffffff;
  position: relative;
  min-height: 528px;
}

.ppic-akademik-grid-home__item.is-navy {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(44, 57, 131, 0.7) 0%,
    rgba(65, 52, 136, 0.82) 100%
  );
  --ppic-akademik-button-bg: linear-gradient(135deg, #59b6ff 0%, #3f91f0 100%);
}

.ppic-akademik-grid-home__item.is-magenta {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(198, 76, 169, 0.72) 0%,
    rgba(162, 65, 145, 0.84) 100%
  );
  --ppic-akademik-button-bg: linear-gradient(135deg, #ef80c9 0%, #d85cac 100%);
}

.ppic-akademik-grid-home__item.is-indigo {
  --ppic-akademik-overlay: linear-gradient(
    180deg,
    rgba(72, 76, 157, 0.72) 0%,
    rgba(67, 57, 135, 0.84) 100%
  );
  --ppic-akademik-button-bg: linear-gradient(135deg, #7c85ff 0%, #626ce4 100%);
}

.ppic-akademik-grid-home__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 528px;
  padding: 48px 28px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.ppic-akademik-grid-home__media,
.ppic-akademik-grid-home__overlay {
  position: absolute;
  inset: 0;
}

.ppic-akademik-grid-home__media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.ppic-akademik-grid-home__item.has-no-image .ppic-akademik-grid-home__media {
  background-image: linear-gradient(
    135deg,
    rgba(5, 28, 51, 0.88) 0%,
    rgba(24, 77, 133, 0.92) 100%
  ) !important;
}

.ppic-akademik-grid-home__overlay {
  background: var(--ppic-akademik-overlay);
  transition: opacity 0.35s ease;
}

.ppic-akademik-grid-home__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 320px;
  text-align: center;
}

.ppic-akademik-grid-home__name {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 28px rgba(6, 16, 34, 0.22);
}

.ppic-akademik-grid-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--ppic-akademik-button-bg);
  color: var(--ppic-akademik-button-color);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(16, 31, 65, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ppic-akademik-grid-home__link:hover,
.ppic-akademik-grid-home__link:focus-visible {
  text-decoration: none;
}

.ppic-akademik-grid-home__link:hover .ppic-akademik-grid-home__media,
.ppic-akademik-grid-home__link:focus-visible .ppic-akademik-grid-home__media {
  transform: scale(1.06);
}

.ppic-akademik-grid-home__link:hover .ppic-akademik-grid-home__overlay,
.ppic-akademik-grid-home__link:focus-visible .ppic-akademik-grid-home__overlay {
  opacity: 0.9;
}

.ppic-akademik-grid-home__link:hover .ppic-akademik-grid-home__button,
.ppic-akademik-grid-home__link:focus-visible .ppic-akademik-grid-home__button {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 31, 65, 0.28);
  filter: brightness(1.04);
}

@media (max-width: 1199px) {
  .ppic-akademik-grid-home__item,
  .ppic-akademik-grid-home__link {
    min-height: 460px;
  }

  .ppic-akademik-grid-home__button {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .ppic-akademik-grid-home {
    padding: 60px 0;
  }

  .ppic-akademik-grid-home__grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 22px;
  }

  .ppic-akademik-grid-home__item,
  .ppic-akademik-grid-home__link {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  .ppic-akademik-grid-home__container {
    padding: 0 16px;
  }

  .ppic-akademik-grid-home__title {
    font-size: 29px;
  }

  .ppic-akademik-grid-home__subtitle {
    font-size: 15px;
  }

  .ppic-akademik-grid-home__link {
    padding: 40px 20px;
  }

  .ppic-akademik-grid-home__name {
    font-size: clamp(26px, 9vw, 38px);
  }

  .ppic-akademik-grid-home__button {
    min-height: 52px;
    padding: 12px 22px;
    font-size: 17px;
  }
}

/* =========================================================================
   16. ELEMENT: PPIC COURSES
   ========================================================================= */
.ppic-courses-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 76px 0 84px;
}

.ppic-courses-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-courses-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.ppic-courses-title {
  margin: 0;
  color: #0d233a;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
}

.ppic-courses-subtitle {
  margin: 0;
  color: #607080;
  font-size: 20px;
  line-height: 1.65;
}

.ppic-courses-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d5ea8 0%, #1a88e5 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(13, 94, 168, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.ppic-courses-button:hover,
.ppic-courses-button:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 94, 168, 0.3);
  filter: brightness(1.03);
}

.ppic-courses-slider {
  position: relative;
}

.ppic-courses-slider__viewport {
  overflow: hidden;
  padding: 4px 2px 6px;
}

.ppic-courses-slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ppic-course-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
}

.ppic-course-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(13, 35, 58, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 35, 58, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.ppic-course-card__link:hover,
.ppic-course-card__link:focus-visible {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(245, 176, 27, 0.55);
  box-shadow: 0 14px 26px rgba(13, 35, 58, 0.09);
}

.ppic-course-card__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
  background: #eaf1f8;
}

.ppic-course-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ppic-course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 16px;
}

.ppic-course-card__label {
  color: #98a7b8;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ppic-course-card__title {
  margin: 0;
  color: #0d233a;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.ppic-course-card__excerpt {
  margin: 0;
  color: #607080;
  font-size: 13px;
  line-height: 1.5;
}

.ppic-courses-slider__arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.88);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.ppic-courses-slider__arrow:hover,
.ppic-courses-slider__arrow:focus-visible {
  background: #0d5ea8;
}

.ppic-courses-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.ppic-courses-slider__arrow.is-prev {
  left: -18px;
}

.ppic-courses-slider__arrow.is-next {
  right: -18px;
}

.ppic-courses-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ppic-courses-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 35, 58, 0.18);
  cursor: pointer;
}

.ppic-courses-slider__dot.is-active {
  background: #0d5ea8;
}

.ppic-courses-slider.is-single .ppic-courses-slider__arrow,
.ppic-courses-slider.is-single .ppic-courses-slider__dots {
  display: none;
}

.ppic-courses-empty {
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  color: #607080;
  box-shadow: 0 14px 32px rgba(13, 35, 58, 0.08);
}

@media (max-width: 1199px) {
  .ppic-courses-title {
    font-size: 42px;
  }

  .ppic-course-card {
    flex-basis: calc((100% - 48px) / 4);
  }

  .ppic-course-card__title {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .ppic-courses-section {
    padding: 64px 0 72px;
  }

  .ppic-courses-slider__track {
    gap: 14px;
  }

  .ppic-course-card {
    flex-basis: calc((100% - 28px) / 3);
  }

  .ppic-courses-title {
    font-size: 36px;
  }

  .ppic-courses-subtitle {
    font-size: 18px;
  }

  .ppic-courses-slider__arrow.is-prev {
    left: -10px;
  }

  .ppic-courses-slider__arrow.is-next {
    right: -10px;
  }
}

@media (max-width: 575px) {
  .ppic-courses-container {
    padding: 0 16px;
  }

  .ppic-courses-slider__track {
    gap: 12px;
  }

  .ppic-course-card {
    flex-basis: 100%;
  }

  .ppic-courses-title {
    font-size: 30px;
  }

  .ppic-courses-subtitle {
    font-size: 16px;
  }

  .ppic-course-card__title {
    font-size: 20px;
  }

  .ppic-courses-slider__arrow {
    top: 34%;
    width: 34px;
    height: 34px;
  }

  .ppic-courses-slider__arrow.is-prev {
    left: -6px;
  }

  .ppic-courses-slider__arrow.is-next {
    right: -6px;
  }
}

/* =========================================================================
   17. ELEMENT: PPIC DOSEN HERO
   ========================================================================= */
.ppic-dosen-hero-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  background: #12293d;
}

.ppic-dosen-hero__container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-dosen-hero__content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.ppic-dosen-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ppic-dosen-hero__title span {
  display: inline;
  color: #ffbc1f;
}

.ppic-dosen-hero__description {
  max-width: 1080px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.6vw, 27px);
  line-height: 1.55;
  font-weight: 500;
}

.ppic-dosen-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
  min-height: 74px;
  padding: 18px 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-size: 23px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.ppic-dosen-hero__button:hover,
.ppic-dosen-hero__button:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 30px rgba(0, 0, 0, 0.16);
  background-color: rgba(255, 255, 255, 0.14);
}

/* =========================================================================
   18. ELEMENT: PPIC DOSEN DIRECTORY
   ========================================================================= */
.ppic-dosen-directory-section {
  padding: 38px 0 84px;
  background: #ffffff;
}

.ppic-dosen-directory__container {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(330px, 420px) minmax(0, 1fr);
  gap: 54px;
}

.ppic-dosen-directory__sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ppic-dosen-directory__search {
  position: relative;
}

.ppic-dosen-directory__search i {
  position: absolute;
  top: 50%;
  left: 26px;
  color: #4f6074;
  font-size: 18px;
  transform: translateY(-50%);
}

.ppic-dosen-directory__search-input {
  width: 100%;
  min-height: 58px;
  padding: 14px 24px 14px 58px;
  border: 1px solid #d8e2ec;
  border-radius: 999px;
  color: #21364e;
  font-size: 16px;
  background: #ffffff;
}

.ppic-dosen-directory__search-input:focus {
  outline: none;
  border-color: rgba(13, 94, 168, 0.48);
  box-shadow: 0 0 0 4px rgba(13, 94, 168, 0.08);
}

.ppic-dosen-filter-group {
  padding-bottom: 26px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e5ebf1;
  background: transparent;
}

.ppic-dosen-filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  color: #003b73;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.ppic-dosen-filter-toggle i {
  color: #f6a90d;
  transition: transform 0.2s ease;
}

.ppic-dosen-filter-group.is-open .ppic-dosen-filter-toggle i {
  transform: rotate(180deg);
}

.ppic-dosen-filter-options {
  display: none;
  max-height: 410px;
  overflow-y: auto;
  padding: 0 10px 0 0;
}

.ppic-dosen-filter-group.is-open .ppic-dosen-filter-options {
  display: grid;
  gap: 16px;
}

.ppic-dosen-filter-options label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #54657a;
  font-size: 18px;
  line-height: 1.35;
  cursor: pointer;
}

.ppic-dosen-filter-options input {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  accent-color: #0d5ea8;
}

.ppic-dosen-directory__results {
  min-width: 0;
}

.ppic-dosen-directory__results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf1f5;
}

.ppic-dosen-directory__count {
  color: #35506f;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.ppic-dosen-directory__sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #173454;
  font-size: 16px;
}

.ppic-dosen-directory__sort {
  min-height: 54px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d8e2ec;
  background: #ffffff;
  color: #0d233a;
  font-size: 16px;
}

.ppic-dosen-directory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.ppic-dosen-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px 30px 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e6edf3;
  box-shadow: 0 8px 22px rgba(18, 40, 58, 0.05);
  /* Tambahan transisi hover */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Efek Hover Pada Kartu */
.ppic-dosen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(18, 40, 58, 0.12);
  border-color: #ffb517;
}

.ppic-dosen-card__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.ppic-dosen-card__avatar {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef5fb 0%, #dce8f3 100%);
  color: #0d5ea8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ppic-dosen-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppic-dosen-card__headcopy {
  min-width: 0;
}

.ppic-dosen-card__name {
  margin: 0;
  color: #003b73;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
}

.ppic-dosen-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.ppic-dosen-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.ppic-dosen-card__badge.is-title {
  background: #fff4dd;
  color: #efae12;
}

.ppic-dosen-card__badge.is-dept {
  padding-left: 0;
  background: transparent;
  color: #425a75;
}

.ppic-dosen-card__bio {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #ffb517;
  color: #38516e;
  font-size: 16px;
  line-height: 1.55;
}

.ppic-dosen-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.ppic-dosen-card__detail,
.ppic-dosen-card__expertise {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.ppic-dosen-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #003b73;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ppic-dosen-card__label i {
  color: #ffb517;
}

.ppic-dosen-card__value {
  display: block;
  color: #132f4b;
  font-size: 15px;
  line-height: 1.6;
}

.ppic-dosen-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ppic-dosen-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef3f9;
  color: #003b73;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.ppic-dosen-card__tag.is-education {
  background: #eef3f9;
  color: #003b73;
}

.ppic-dosen-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #edf1f5;
}

.ppic-dosen-card__footer-primary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ppic-dosen-card__academic-links,
.ppic-dosen-card__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ppic-dosen-card__academic-links a,
.ppic-dosen-card__academic-links span,
.ppic-dosen-card__contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f4965;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e2e8ef;
  transition: all 0.2s ease;
}

.ppic-dosen-card__contact-links a:hover,
.ppic-dosen-card__academic-links a:hover,
.ppic-dosen-card__contact-links a:focus-visible,
.ppic-dosen-card__academic-links a:focus-visible {
  text-decoration: none;
  color: #0d5ea8;
  background: #edf5ff;
}

.ppic-dosen-card__certification {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  /* Warna hijau untuk Bersertifikasi Pendidik */
  background: #e6f7e6;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 800;
}

.ppic-dosen-card__certification.is-pending {
  background: rgba(13, 94, 168, 0.1);
  color: #0d5ea8;
}

.ppic-dosen-directory__empty {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  color: #55687a;
  font-weight: 700;
  border: 1px dashed rgba(13, 35, 58, 0.16);
}

@media (max-width: 1199px) {
  .ppic-dosen-directory__container {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 28px;
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .ppic-dosen-hero-section {
    padding: 76px 0 70px;
  }

  .ppic-dosen-directory__container {
    grid-template-columns: 1fr;
  }

  .ppic-dosen-directory__sidebar {
    position: static;
  }

  .ppic-dosen-directory__results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppic-dosen-card__details {
    grid-template-columns: 1fr;
  }

  .ppic-dosen-card {
    padding: 24px 22px;
  }
}

@media (max-width: 575px) {
  .ppic-dosen-hero__container,
  .ppic-dosen-directory__container {
    padding: 0 16px;
  }

  .ppic-dosen-hero__description {
    font-size: 16px;
  }

  .ppic-dosen-hero__button {
    min-height: 58px;
    padding: 14px 24px;
    font-size: 18px;
  }

  .ppic-dosen-card {
    padding: 20px;
  }

  .ppic-dosen-card__header {
    flex-direction: column;
  }

  .ppic-dosen-card__name {
    font-size: 24px;
  }

  .ppic-dosen-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppic-dosen-filter-toggle {
    font-size: 17px;
  }

  .ppic-dosen-filter-options label,
  .ppic-dosen-directory__count,
  .ppic-dosen-directory__sort,
  .ppic-dosen-directory__sort-wrap {
    font-size: 15px;
  }

  .ppic-dosen-card__bio,
  .ppic-dosen-card__value,
  .ppic-dosen-card__tag,
  .ppic-dosen-card__academic-links a,
  .ppic-dosen-card__academic-links span,
  .ppic-dosen-card__contact-links a {
    font-size: 14px;
  }
}

/* =========================================================================
   19. ELEMENT: PPIC TRAINING CATALOG HERO
   ========================================================================= */
.ppic-training-hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background: #102b44;
}

.ppic-training-hero__container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-training-hero__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.ppic-training-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ppic-training-hero__description {
  max-width: 820px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.4vw, 28px);
  line-height: 1.6;
  font-weight: 500;
}

/* =========================================================================
   20. ELEMENT: PPIC TRAINING CATALOG
   ========================================================================= */
.ppic-training-catalog-section {
  padding: 38px 0 84px;
  background: #f7f7f8;
}

.ppic-training-catalog__container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(250px, 270px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.ppic-training-catalog__sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e7edf3;
  box-shadow: 0 18px 38px rgba(17, 39, 59, 0.08);
}

.ppic-training-catalog__sidebar-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #123a61;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ppic-training-catalog__sidebar-title i {
  color: #0d3659;
}

.ppic-training-catalog__search {
  position: relative;
  margin-bottom: 20px;
}

.ppic-training-catalog__search i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #133d63;
  font-size: 16px;
  transform: translateY(-50%);
}

.ppic-training-catalog__search-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px 10px 46px;
  border-radius: 999px;
  border: 1px solid #e6ebf1;
  background: #f4f7fb;
  color: #3c536c;
  font-size: 15px;
}

.ppic-training-catalog__search-input:focus {
  outline: none;
  border-color: rgba(13, 94, 168, 0.4);
  box-shadow: 0 0 0 4px rgba(13, 94, 168, 0.08);
  background: #ffffff;
}

.ppic-training-catalog__categories {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f5;
}

.ppic-training-catalog__categories label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #425970;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ppic-training-catalog__categories label:hover {
  color: #123a61;
}

.ppic-training-catalog__categories label.is-active {
  color: #123a61;
}

.ppic-training-catalog__categories input {
  margin: 4px 0 0;
  accent-color: #f7b21a;
}

.ppic-training-catalog__category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  color: #526273;
}

.ppic-training-catalog__stats {
  padding-top: 14px;
  color: #68788b;
  font-size: 14px;
  line-height: 1.5;
}

.ppic-training-catalog__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Base Grid (Di atas 1400px menggunakan 3 Kolom) */
.ppic-training-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ppic-training-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 20px 22px 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e8edf2;
  box-shadow: 0 10px 28px rgba(14, 38, 60, 0.06);
  /* Tambahan transisi untuk efek hover */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Efek Hover Pada Kartu */
.ppic-training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(14, 38, 60, 0.12);
  border-color: #ffb517; /* Garis tepi kuning */
}

.ppic-training-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eaf1f8;
  color: #003b73;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.ppic-training-card__badge i {
  color: #f3aa16;
}

.ppic-training-card__title {
  margin: 0;
  color: #003b73;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.ppic-training-card__cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #56697b;
  font-size: 15px;
  line-height: 1.45;
}

.ppic-training-card__cert i {
  color: #ffb517;
}

.ppic-training-card__desc {
  color: #39516a;
  font-size: 15px;
  line-height: 1.65;
}

.ppic-training-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 6px;
  border-bottom: 2px solid #ffb517;
  color: #003b73;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none;
}

.ppic-training-card__link:hover,
.ppic-training-card__link:focus-visible {
  color: #0d5ea8;
  text-decoration: none;
}

.ppic-training-card__link i {
  transition: transform 0.2s ease;
}

.ppic-training-card__link:hover i,
.ppic-training-card__link:focus-visible i {
  transform: translateX(3px);
}

.contact-missing {
  padding: 44px 32px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, #f6f9fd 0%, #f3f7fc 100%);
  border: 1px solid #e3ebf3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-align: center;
}

.contact-missing h3 {
  margin: 0;
  color: #0f2748;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.contact-missing p {
  max-width: 900px;
  margin: 14px auto 0;
  color: #1f3b5a;
  font-size: 17px;
  line-height: 1.65;
}

.contact-missing .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  min-height: 58px;
  min-width: min(100%, 448px);
  padding: 14px 28px;
  border-radius: 999px;
  background: #ffb517;
  color: #003b73;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(255, 181, 23, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.contact-missing .btn-contact i {
  font-size: 23px;
}

.contact-missing .btn-contact:hover,
.contact-missing .btn-contact:focus-visible {
  color: #003b73;
  text-decoration: none;
  background: #f2ac14;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(255, 181, 23, 0.34);
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */

/* Transisi ke 2 Kolom saat ukuran layar <= 1400px */
@media (max-width: 1400px) {
  .ppic-training-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Pengecilan gap & kolom sidebar di 1199px */
@media (max-width: 1199px) {
  .ppic-training-catalog__container {
    grid-template-columns: minmax(230px, 250px) minmax(0, 1fr);
    gap: 24px;
  }
}

/* Sidebar pindah ke atas pada mode Tablet */
@media (max-width: 991px) {
  .ppic-training-catalog-section {
    padding: 40px 0 68px; /* Disesuaikan agar tidak terlalu renggang di atas */
  }

  .ppic-training-catalog__container {
    grid-template-columns: 1fr;
  }

  .ppic-training-catalog__sidebar {
    position: static;
  }
}

/* Transisi ke 1 Kolom saat ukuran Mobile / Smartphone */
@media (max-width: 767px) {
  .ppic-training-catalog__grid {
    grid-template-columns: 1fr;
  }
}

/* Optimasi font dan spasi untuk layar yang sangat kecil */
@media (max-width: 575px) {
  .ppic-training-catalog__container {
    padding: 0 16px;
  }

  .ppic-training-card,
  .ppic-training-catalog__sidebar,
  .contact-missing {
    border-radius: 20px;
  }

  .ppic-training-card__title {
    font-size: 18px;
  }

  .ppic-training-card__desc,
  .ppic-training-card__cert,
  .ppic-training-card__link,
  .contact-missing p,
  .ppic-training-catalog__stats,
  .ppic-training-catalog__categories label {
    font-size: 14px;
  }

  .contact-missing {
    padding: 30px 20px;
  }

  .contact-missing h3 {
    font-size: 22px;
  }

  .contact-missing .btn-contact {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* =========================================================================
   21. ELEMENT: PPIC GALLERY HERO
   ========================================================================= */
.ppic-gallery-hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: #f8f9fa; /* Warna background abu-abu sangat terang menyerupai gambar */
}

.ppic-gallery-hero__container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

.ppic-gallery-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ppic-gallery-hero__title {
  margin: 0;
  color: #00365b; /* Warna biru gelap sesuai gambar */
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.ppic-gallery-hero__title span {
  display: inline;
  color: #f6a711; /* Warna kuning/oranye sesuai gambar */
}

.ppic-gallery-hero__description {
  max-width: 700px;
  margin: 20px auto 0;
  color: #5c6873; /* Warna abu-abu teks deksripsi */
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  font-weight: 400;
}

/* =========================================================================
   22. ELEMENT: PPIC GALLERY MAIN GRID
   ========================================================================= */
.ppic-gallery-section {
  padding: 40px 0 80px;
  background-color: #ffffff;
}

.ppic-gallery-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 20px;
}

/* Filter Bar */
.ppic-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 24px;
  background: #f4f6f8;
  border: 1px solid #e1e5ea;
  border-radius: 99px;
  color: #4a5568;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: #00365b; /* Biru Gelap PPI Curug */
  border-color: #00365b;
  color: #ffffff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

/* Card & Hover Effects */
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gallery-card .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3; /* Memastikan semua gambar seragam */
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overlay-caption {
  position: absolute;
  inset: 0;
  background: rgba(0, 54, 91, 0.85); /* Overlay biru dark/transparan */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-card:hover .overlay-caption {
  opacity: 1;
}

.caption-title {
  color: #f6a711; /* Kuning highlight */
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.caption-desc {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transform: translateY(15px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-card:hover .caption-title,
.gallery-card:hover .caption-desc {
  transform: translateY(0);
}

.caption-title i,
.caption-desc i {
  margin-right: 6px;
}

/* Bottom Stats */
.stats-minimal {
  text-align: center;
  color: #718096;
  font-size: 15px;
  font-weight: 500;
  padding-top: 20px;
  border-top: 1px solid #edf2f7;
}

.stats-minimal i {
  color: #a0aec0;
  margin-right: 6px;
}

/* =======================================================
   23. ELEMENT: PPIC KEPEMIMPINAN & STRUKTUR
======================================================= */
.ppic-leadership-section {
  padding: 180px 0 40px;
  background-color: #f4f7f9; /* Background luar abu-abu sangat muda/kebiruan */
}

.ppic-leadership-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 8px;
}

/* =========================================================================
   GLOBAL HERO TOP SPACING
   ========================================================================= */
.ppic-hero-section,
.ppic-dosen-hero-section,
.ppic-training-hero-section,
.ppic-gallery-hero-section,
.ppic-sipencatar-hero {
  padding: 180px 0 120px; /* Spacing atas yang konsisten untuk semua hero */
}

/* Tambahkan baris ini untuk mewarnai teks "Struktur Organisasi" */
.ppic-leadership-section .section-title span {
  color: #f2ae17 !important;
}

.ppic-leadership-section .section-sub {
  text-align: center;
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

/* Accordion Container (White Box with Shadow) */
.ppic-leadership-section .accordion-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(11, 31, 56, 0.06); /* Bayangan lembut */
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

/* Accordion Item & Header */
.ppic-leadership-section .accordion-item {
  border-bottom: 1px solid #eef2f6; /* Garis pemisah antar akordion */
}
.ppic-leadership-section .accordion-item:last-child {
  border-bottom: none;
}

.ppic-leadership-section .accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 24px 32px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b1f38;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.ppic-leadership-section .accordion-header:hover {
  background: #fafbfc;
}

.ppic-leadership-section .accordion-header i {
  color: #f2ae17; /* Chevron kuning */
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

/* Accordion Content */
.ppic-leadership-section .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 32px;
}

.ppic-leadership-section .accordion-item.active .accordion-content {
  padding: 0 32px 32px 32px;
}

/* 1. Zoom Wrapper (Struktur Organisasi) */
.ppic-leadership-section .zoom-wrapper {
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  margin-top: 10px;
  cursor: zoom-in;
  text-align: center;
  background: #fff;
  padding: 10px;
}
.ppic-leadership-section .zoom-wrapper img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.ppic-leadership-section .zoom-wrapper:hover img {
  transform: scale(1.3);
  transform-origin: top center;
}
.ppic-leadership-section .zoom-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
  color: #888;
}

/* 2. Photo Grid (Khusus Pimpinan / Direktur) */
.ppic-leadership-section .photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.ppic-leadership-section .photo-card {
  background: #ffffff;
  border: 1px solid #eef2f6; /* Garis tepi abu-abu tipis saat normal */
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

/* Efek Hover Photo Card sesuai Mockup */
.ppic-leadership-section .photo-card:hover {
  border-color: #f2ae17; /* Berubah oranye/kuning */
  box-shadow: 0 8px 25px rgba(242, 174, 23, 0.15); /* Bayangan oranye/kuning */
  transform: translateY(-3px);
}

.ppic-leadership-section .photo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  /* Hilangkan border tebal, biarkan gambar bersih */
  background: #f1f3f5;
}

.ppic-leadership-section .photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppic-leadership-section .photo-card .name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ppic-leadership-section .photo-card .title {
  font-size: 0.75rem;
  color: #f2ae17; /* Warna kuning mockup */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3. Compact Grid (Dewan Pengawas, Senat, dsb) */
.ppic-leadership-section .compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.ppic-leadership-section .compact-card {
  background: #f8f9fc; /* Abu-abu sangat muda */
  border-left: 4px solid #f2ae17; /* Border kiri kuning */
  border-radius: 8px;
  padding: 18px 24px;
  transition: transform 0.2s ease;
}

.ppic-leadership-section .compact-card:hover {
  transform: translateX(4px);
}

.ppic-leadership-section .compact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #f2ae17; /* Label atas kuning */
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.ppic-leadership-section .compact-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1f38;
  line-height: 1.3;
}

/* 4. Tugas Badge (Keterangan Kuning Bawah) */
.ppic-leadership-section .tugas-badge {
  background: #fffaf0; /* Kuning sangat pucat/lembut */
  border-left: 4px solid #f2ae17;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #0b1f38;
  line-height: 1.6;
}

.ppic-leadership-section .tugas-badge .badge-icon {
  color: #f2ae17;
  font-size: 1.1rem;
  margin-top: 3px;
}

.ppic-leadership-section .tugas-badge .badge-text {
  flex: 1;
}

.ppic-leadership-section .tugas-badge .toggle-link {
  color: #f2ae17;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
}

.ppic-leadership-section .tugas-badge .toggle-link:hover {
  color: #d19510;
}

.mt-2 {
  margin-top: 10px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .ppic-leadership-section .section-title {
    font-size: 1.8rem;
  }
  .ppic-leadership-section .accordion-container {
    border-radius: 12px;
    margin: 0 16px;
  }
  .ppic-leadership-section .accordion-header {
    padding: 16px 20px;
    font-size: 1rem;
  }
  .ppic-leadership-section .accordion-content,
  .ppic-leadership-section .accordion-item.active .accordion-content {
    padding: 0 20px 20px;
  }
}

/* =======================================================
   24. ELEMEN: PPIC FUNGSI UTAMA / MAIN FUNCTIONS
======================================================= */
.tugasfungsi-section {
  padding: 180px 0 40px;
  background-color: #ffffff;
}

.tugasfungsi-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 8px;
}

.tugasfungsi-section .section-title span {
  color: #f2ae17 !important; /* Warna kuning oranye PPI */
}

.tugasfungsi-section .section-sub {
  text-align: center;
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

/* Grid Layout */
.tugasfungsi-section .fungsi-grid {
  display: grid;
  /* Menggunakan auto-fit agar responsif, min lebar kotak 320px */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.tugasfungsi-section .fungsi-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(11, 31, 56, 0.02);
  transition: all 0.3s ease;
}

.tugasfungsi-section .fungsi-card:hover {
  border-color: #f2ae17;
  box-shadow: 0 8px 25px rgba(242, 174, 23, 0.12);
  transform: translateY(-3px);
}

/* Kotak Ikon Biru Gelap */
.tugasfungsi-section .fungsi-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: #0b1f38;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tugasfungsi-section .fungsi-card:hover .fungsi-icon {
  transform: scale(1.05); /* Ikon sedikit membesar saat hover */
}

.tugasfungsi-section .fungsi-icon i {
  color: #f2ae17; /* Ikon kuning */
  font-size: 1.3rem;
}

/* Teks Konten */
.tugasfungsi-section .fungsi-text {
  flex: 1;
}

.tugasfungsi-section .fungsi-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b1f38;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.tugasfungsi-section .fungsi-text p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Responsiveness Mobile */
@media (max-width: 768px) {
  .tugasfungsi-section .section-title {
    font-size: 1.8rem;
  }
  .tugasfungsi-section .fungsi-grid {
    grid-template-columns: 1fr; /* Jadi 1 kolom bersusun ke bawah */
    padding: 0 16px;
  }
}

/* =======================================================
   25. ELEMEN: PPIC RAIH MASA DEPAN (KEUNGGULAN)
======================================================= */
.raih-masa-depan-section {
  padding: 180px 0 40px; /* Atas 180px, Kiri-Kanan 0, Bawah 80px */
  background: linear-gradient(105deg, #ffffff 0%, #fef7e8 100%);
  border-top: 2px solid rgba(245, 176, 27, 0.2);
  border-bottom: 2px solid rgba(245, 176, 27, 0.2);
}

/* Kotak Putih Raksasa */
.raih-masa-depan-section .rmd-inner-box {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 50px 60px;
  box-shadow: 0 15px 50px rgba(11, 31, 56, 0.05); /* Shadow lembut besar */
}

/* Icon Kutip Atas */
.raih-masa-depan-section .rmd-quote-icon {
  text-align: center;
  color: #f2ae17; /* Oranye/Kuning PPI */
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0.6; /* Dibuat sedikit transparan agar tidak terlalu mencolok */
}

/* Header Text */
.raih-masa-depan-section .rmd-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.raih-masa-depan-section .rmd-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 16px;
}

.raih-masa-depan-section .rmd-header h2 span {
  color: #f2ae17;
}

.raih-masa-depan-section .rmd-subtitle {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Grid Layout */
.raih-masa-depan-section .rmd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Kotak Keunggulan Kecil */
.raih-masa-depan-section .rmd-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.raih-masa-depan-section .rmd-card:hover {
  border-color: #f2ae17;
  box-shadow: 0 8px 25px rgba(242, 174, 23, 0.12);
  transform: translateY(-3px);
}

/* Kotak Ikon Biru */
.raih-masa-depan-section .rmd-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #0b1f38;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raih-masa-depan-section .rmd-icon i {
  color: #f2ae17;
  font-size: 1.25rem;
}

/* Teks Dalam Kotak */
.raih-masa-depan-section .rmd-text {
  flex: 1;
}

.raih-masa-depan-section .rmd-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b1f38;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.raih-masa-depan-section .rmd-text p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Call to Action Button */
.raih-masa-depan-section .rmd-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.raih-masa-depan-section .rmd-cta-btn {
  display: inline-block;
  background-color: #f2ae17;
  color: #0b1f38;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 99px; /* Bentuk pil */
  text-decoration: none;
  transition: all 0.3s ease;
}

.raih-masa-depan-section .rmd-cta-btn:hover {
  background-color: #d19510;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 174, 23, 0.3);
}

.raih-masa-depan-section .rmd-info-text {
  font-size: 0.85rem;
  color: #888;
  margin-top: 16px;
}

.raih-masa-depan-section .rmd-info-text i {
  margin-right: 4px;
}

/* Responsiveness */
@media (max-width: 991px) {
  .raih-masa-depan-section .rmd-inner-box {
    padding: 40px 30px;
  }
  .raih-masa-depan-section .rmd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .raih-masa-depan-section .rmd-inner-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .raih-masa-depan-section .rmd-header h2 {
    font-size: 1.8rem;
  }
  .raih-masa-depan-section .rmd-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   26. ELEMEN: PPIC SIPENCATAR HERO
======================================================= */
.ppic-sipencatar-hero {
  position: relative;
  padding: 180px 0 120px;
  background-color: #0b1f38; /* Warna fallback biru gelap PPI */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.ppic-sipencatar-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px; /* Lebar maksimal teks agar mudah dibaca */
  margin: 0 auto;
}

.ppic-sipencatar-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ppic-sipencatar-hero h1 span {
  color: #f2ae17; /* Oranye/Kuning PPI */
}

.ppic-sipencatar-hero p {
  font-size: 1.15rem;
  color: #e0e6ed; /* Putih sedikit abu agar tidak menyilaukan */
  margin: 0 auto 40px;
  line-height: 1.7;
  max-width: 800px;
}

/* Kumpulan Tombol */
.ppic-sipencatar-hero .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Tombol 1: Transparan Outline */
.ppic-sipencatar-hero .btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 99px; /* Bentuk kapsul/pil */
  text-decoration: none;
  transition: all 0.3s ease;
}

.ppic-sipencatar-hero .btn-back-home:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Tombol 2: Primary Solid Oranye */
.ppic-sipencatar-hero .btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f2ae17;
  color: #0b1f38;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 99px; /* Bentuk kapsul/pil */
  text-decoration: none;
  border: 1px solid #f2ae17;
  transition: all 0.3s ease;
}

.ppic-sipencatar-hero .btn-primary-cta:hover {
  background-color: #d19510;
  border-color: #d19510;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 174, 23, 0.3);
}

/* Responsiveness Mobile & Tablet */
@media (max-width: 768px) {
  .ppic-sipencatar-hero {
    padding: 140px 0 80px;
  }
  .ppic-sipencatar-hero h1 {
    font-size: 2.2rem;
  }
  .ppic-sipencatar-hero p {
    font-size: 1rem;
    padding: 0 16px;
  }
  .ppic-sipencatar-hero .hero-buttons {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }
  .ppic-sipencatar-hero .btn-back-home,
  .ppic-sipencatar-hero .btn-primary-cta {
    width: 100%;
    justify-content: center; /* Tombol memenuhi lebar layar di HP */
  }
}

/* =======================================================
   27. ELEMEN: PPIC JALUR SIPENCATAR
======================================================= */
.ppic-jalur-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Sesuai mockup, background putih */
}

.ppic-jalur-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 12px;
}

.ppic-jalur-section .section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Pembagi 2 */
.ppic-jalur-section .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kotak Card */
.ppic-jalur-section .info-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 31, 56, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Card yang di Highlight (Garis Oranye seperti di mockup) */
.ppic-jalur-section .info-card.highlight {
  border-color: #f2ae17;
  box-shadow: 0 15px 40px rgba(242, 174, 23, 0.08);
}

.ppic-jalur-section .info-card:hover {
  transform: translateY(-5px);
  border-color: #f2ae17;
}

/* Ikon dengan Box Kuning Soft */
.ppic-jalur-section .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(242, 174, 23, 0.15); /* Soft yellow/orange */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ppic-jalur-section .card-icon i {
  font-size: 1.6rem;
  color: #f2ae17;
}

/* Typografi Dalam Kotak */
.ppic-jalur-section .info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 16px;
}

.ppic-jalur-section .info-card p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Daftar Keuntungan (Bullet points) */
.ppic-jalur-section .info-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 32px 0;
  flex-grow: 1; /* Mendorong badge agar selalu berada di bawah */
}

.ppic-jalur-section .info-list li {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Badge Tanggal di Bawah */
.ppic-jalur-section .badge-wrapper {
  margin-top: auto; /* Memastikan badge ada di paling bawah card */
}

.ppic-jalur-section .badge-info {
  display: inline-block;
  background: #fff8e1; /* Very soft yellow background */
  color: #0b1f38;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

/* Responsiveness Mobile */
@media (max-width: 768px) {
  .ppic-jalur-section .section-title {
    font-size: 1.8rem;
  }
  .ppic-jalur-section .grid-2 {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .ppic-jalur-section .info-card {
    padding: 30px 24px;
  }
}

/* =======================================================
   28. ELEMEN: PPIC PERSYARATAN UMUM SIPENCATAR
======================================================= */
.ppic-persyaratan-section {
  padding: 120px 0 40px;
  background-color: #f4f7f9; /* Background luar abu-abu sangat muda (seragam dengan section lain) */
}

.ppic-persyaratan-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 12px;
}

.ppic-persyaratan-section .section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Pembagi 3 */
.ppic-persyaratan-section .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kotak Card */
.ppic-persyaratan-section .requirement-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 31, 56, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ppic-persyaratan-section .requirement-card:hover {
  transform: translateY(-5px);
  border-color: #f2ae17; /* Garis tepi kuning saat hover */
  box-shadow: 0 15px 40px rgba(242, 174, 23, 0.08);
}

/* Ikon dengan Box Kuning Soft */
.ppic-persyaratan-section .card-icon {
  width: 54px;
  height: 54px;
  background: rgba(242, 174, 23, 0.15); /* Soft yellow/orange */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ppic-persyaratan-section .card-icon i {
  font-size: 1.5rem;
  color: #f2ae17;
}

/* Typografi Dalam Kotak */
.ppic-persyaratan-section .requirement-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 20px;
}

/* Daftar Syarat (Bullet points) */
.ppic-persyaratan-section .requirement-list {
  list-style: disc; /* Bullet point bulat bawaan */
  padding-left: 20px;
  margin: 0;
}

.ppic-persyaratan-section .requirement-list li {
  font-size: 0.95rem;
  color: #555b61; /* Warna abu-abu teks */
  margin-bottom: 12px;
  line-height: 1.6;
}

.ppic-persyaratan-section .requirement-list li:last-child {
  margin-bottom: 0;
}

/* Badge Catatan di Bawah */
.ppic-persyaratan-section .persyaratan-bottom-note {
  text-align: center;
  margin-top: 40px;
}

.ppic-persyaratan-section .badge-info {
  display: inline-block;
  background: #f2ae17; /* Solid Yellow PPI */
  color: #0b1f38; /* Dark Blue Text */
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 99px; /* Bentuk pil */
  box-shadow: 0 6px 15px rgba(242, 174, 23, 0.2);
}

/* Responsiveness Mobile & Tablet */
@media (max-width: 991px) {
  .ppic-persyaratan-section .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppic-persyaratan-section .section-title {
    font-size: 1.8rem;
  }
  .ppic-persyaratan-section .grid-3 {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .ppic-persyaratan-section .requirement-card {
    padding: 30px 24px;
  }
}

/* =======================================================
   29. ELEMEN: PPIC CARA PENDAFTARAN SIPENCATAR
======================================================= */
.ppic-pendaftaran-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Sesuai mockup, background putih bersih */
}

.ppic-pendaftaran-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 12px;
}

.ppic-pendaftaran-section .section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Pembagi 3 */
.ppic-pendaftaran-section .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kotak Card */
.ppic-pendaftaran-section .info-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 31, 56, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ppic-pendaftaran-section .info-card:hover {
  transform: translateY(-5px);
  border-color: #f2ae17; /* Garis kuning lembut saat hover */
  box-shadow: 0 15px 40px rgba(242, 174, 23, 0.08);
}

/* Ikon dengan Box Kuning Soft */
.ppic-pendaftaran-section .card-icon {
  width: 54px;
  height: 54px;
  background: rgba(242, 174, 23, 0.15); /* Soft yellow/orange */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ppic-pendaftaran-section .card-icon i {
  font-size: 1.4rem;
  color: #f2ae17;
}

/* Typografi Dalam Kotak */
.ppic-pendaftaran-section .info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ppic-pendaftaran-section .info-card p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1; /* Mendorong badge agar selalu berada di bawah */
}

.ppic-pendaftaran-section .info-card p strong {
  color: #0b1f38; /* Membuat link/teks bold lebih gelap */
}

/* Badge Tanggal di Bawah */
.ppic-pendaftaran-section .badge-wrapper {
  margin-top: auto; /* Memastikan badge ada di paling bawah card */
}

.ppic-pendaftaran-section .badge-info {
  display: inline-block;
  background: #fff8e1; /* Very soft yellow background */
  color: #0b1f38;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

/* Responsiveness Mobile & Tablet */
@media (max-width: 991px) {
  .ppic-pendaftaran-section .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppic-pendaftaran-section .section-title {
    font-size: 1.8rem;
  }
  .ppic-pendaftaran-section .grid-3 {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .ppic-pendaftaran-section .info-card {
    padding: 30px 24px;
  }
}

/* =======================================================
   30. ELEMEN: PPIC BIAYA PENDIDIKAN SIPENCATAR
======================================================= */
.ppic-biaya-section {
  padding: 120px 0 40px;
  background-color: #f4f7f9; /* Background abu-abu muda (f9fafc di mockup) */
}

.ppic-biaya-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 12px;
}

.ppic-biaya-section .section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Pembagi 2 */
.ppic-biaya-section .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kotak Card */
.ppic-biaya-section .info-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 31, 56, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Card yang di Highlight (Garis Oranye seperti di mockup) */
.ppic-biaya-section .info-card.highlight {
  border-color: #f2ae17;
  box-shadow: 0 15px 40px rgba(242, 174, 23, 0.08);
}

.ppic-biaya-section .info-card:hover {
  transform: translateY(-5px);
  border-color: #f2ae17;
}

/* Ikon dengan Box Kuning Soft */
.ppic-biaya-section .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(242, 174, 23, 0.15); /* Soft yellow/orange */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ppic-biaya-section .card-icon i {
  font-size: 1.6rem;
  color: #f2ae17;
}

/* Typografi Dalam Kotak */
.ppic-biaya-section .info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 20px;
}

/* Daftar Rincian (Bullet points) */
.ppic-biaya-section .info-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 32px 0;
  flex-grow: 1; /* Mendorong badge agar selalu berada di bawah */
}

.ppic-biaya-section .info-list li {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 12px;
  line-height: 1.6;
}

.ppic-biaya-section .info-list li strong {
  color: #0b1f38; /* Membuat teks tebal lebih dominan */
}

/* Badge Catatan di Bawah */
.ppic-biaya-section .badge-wrapper {
  margin-top: auto;
}

.ppic-biaya-section .badge-info {
  display: inline-block;
  background: #fff8e1; /* Very soft yellow background */
  color: #0b1f38;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

/* Responsiveness Mobile */
@media (max-width: 768px) {
  .ppic-biaya-section .section-title {
    font-size: 1.8rem;
  }
  .ppic-biaya-section .grid-2 {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .ppic-biaya-section .info-card {
    padding: 30px 24px;
  }
}

/* =======================================================
   31. ELEMEN: PPIC FAQ SIPENCATAR
======================================================= */
.ppic-faq-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Background putih sesuai mockup */
}

.ppic-faq-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1f38; /* Biru gelap PPI */
  margin-bottom: 12px;
}

.ppic-faq-section .section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Pembagi 2 (Lebih rapat) */
.ppic-faq-section .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kotak Card FAQ */
.ppic-faq-section .faq-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(11, 31, 56, 0.02);
  transition: all 0.3s ease;
}

.ppic-faq-section .faq-card:hover {
  border-color: #f2ae17; /* Garis tepi kuning saat hover */
  box-shadow: 0 8px 25px rgba(242, 174, 23, 0.08);
  transform: translateY(-2px);
}

/* Typografi Pertanyaan (H3) */
.ppic-faq-section .faq-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b1f38;
  margin-bottom: 14px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Ikon Pertanyaan (Oranye/Kuning) */
.ppic-faq-section .faq-card h3 i {
  color: #f2ae17;
  font-size: 1.25rem;
  margin-top: 3px; /* Penyesuaian sejajar dengan teks baris pertama */
}

/* Teks Jawaban (Sejajar dengan teks judul, padding-left ditambah) */
.ppic-faq-section .faq-card p {
  font-size: 0.95rem;
  color: #555b61;
  line-height: 1.7;
  margin: 0;
  padding-left: 32px; /* Diberi ruang sebesar ikon agar sejajar dengan huruf pertama judul */
}

/* Jika admin memakai tag HTML bold/strong di editor */
.ppic-faq-section .faq-card p strong {
  color: #0b1f38;
}

/* Responsiveness Mobile */
@media (max-width: 991px) {
  .ppic-faq-section .grid-2 {
    gap: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .ppic-faq-section .section-title {
    font-size: 1.8rem;
  }
  .ppic-faq-section .grid-2 {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .ppic-faq-section .faq-card {
    padding: 24px;
  }
}

/* =======================================================
   32. ELEMEN: PPIC EXPLORE PROGRAM STUDI
======================================================= */

/* Container Utama */
.ppic-study-programs-section {
  padding: 120px 0 40px;
  background-color: #fafbfc; /* Warna latar sangat terang (opsional) */
  font-family:
    "Inter", sans-serif; /* Ganti jika tema Anda punya font utama lain */
}

.ppic-sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografi Header */
.ppic-sp-title {
  text-align: center;
  color: #00305b; /* Biru gelap khas penerbangan */
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.ppic-sp-subtitle {
  text-align: center;
  color: #555;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Grid Layout */
.ppic-sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Kartu Program */
.ppic-sp-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease; /* Transisi untuk hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Efek Hover Pada Kartu */
.ppic-sp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #fdbb11; /* Border kuning saat di-hover (referensi image) */
}

/* Badge (DIV - PNB dll) */
.ppic-sp-badge {
  display: inline-block;
  background: #00305b; /* Biru gelap */
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  align-self: flex-start;
}

/* Judul & Deskripsi Program */
.ppic-sp-card h3 {
  color: #00305b;
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.ppic-sp-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1; /* Membuat tombol detail selalu sejajar di bawah */
}

/* Area Credentials (Ijazah, Serkom, dll) */
.ppic-sp-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.cred-pill {
  background: #f8f9fa;
  border: 1px solid #eeeeee;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cred-pill i {
  color: #fdbb11; /* Warna ikon kuning emas */
  font-size: 13px;
}

/* Tombol / Link Detail Program */
.ppic-sp-btn {
  color: #00305b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #fdbb11; /* Garis bawah kuning */
  padding-bottom: 2px;
  align-self: flex-start;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.ppic-sp-btn:hover {
  color: #fdbb11;
  gap: 10px; /* Panah bergerak ke kanan saat dihover */
}

/* Responsif untuk Tablet & Mobile */
@media (max-width: 992px) {
  .ppic-sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppic-sp-grid {
    grid-template-columns: 1fr;
  }
  .ppic-sp-title {
    font-size: 28px;
  }
}

/* =======================================================
   32. ELEMEN: PPIC EXPLORE GLOBAL TRAINING
======================================================= */

/* Container Utama */
.ppic-gt-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-gt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografi Header */
.ppic-gt-title {
  text-align: center;
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.ppic-gt-subtitle {
  text-align: center;
  color: #555;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Grid Layout */
.ppic-gt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Kartu Pelatihan */
.ppic-gt-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ppic-gt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #fdbb11;
}

/* Badge (ICAO, ASTC, dll) */
.ppic-gt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00305b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  align-self: flex-start;
}

/* Judul & Deskripsi */
.ppic-gt-card h3 {
  color: #00305b;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.ppic-gt-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Area Credentials / Label Kuning */
.ppic-gt-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.gt-cred-pill {
  background: #f8f9fa;
  border: 1px solid #eeeeee;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gt-cred-pill i {
  color: #fdbb11;
  font-size: 13px;
}

/* Tombol Link dalam Kartu */
.ppic-gt-btn {
  color: #00305b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #fdbb11;
  padding-bottom: 2px;
  align-self: flex-start;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.ppic-gt-btn:hover {
  color: #fdbb11;
  gap: 10px;
}

/* CTA Wrapper Bawah */
.ppic-gt-cta-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* Tombol CTA Utama */
.ppic-gt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fdbb11;
  color: #00305b;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(253, 187, 17, 0.3);
}

.ppic-gt-cta-btn:hover {
  background-color: #e5a80f;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.4);
  color: #00305b;
}

/* Responsif */
@media (max-width: 992px) {
  .ppic-gt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppic-gt-grid {
    grid-template-columns: 1fr;
  }
  .ppic-gt-title {
    font-size: 28px;
  }
}

/* =========================================================================
   33. PPIC PPID HERO CAROUSEL
   ========================================================================= */
.ppic-ppid-hero {
  position: relative;
  width: 100%;
  /* Gunakan min-height, jangan height statis agar tidak memotong teks panjang */
  min-height: 85vh;
  overflow: hidden;
  background-color: #0d233a;
  font-family: "Inter", sans-serif;
  padding: 80px 0 20px;
}

.ppic-ppid-hero-slides {
  display: flex;
  width: 100%;
  /* height 100% otomatis mengikuti parent */
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Individual Slide */
.ppic-ppid-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 85vh; /* Menyesuaikan min-height hero */
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Padding dipindah ke dalam slide untuk mencegah tabrakan dengan menu atas & dots bawah */
  padding: 140px 20px 100px;
  box-sizing: border-box;
}

/* Overlay Gelap Untuk Kontras Teks (Sesuai Gambar) */
.ppic-ppid-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 38, 60, 0.65); /* Biru gelap transparan khas PPI */
  z-index: 1;
}

/* Container Teks */
.ppic-ppid-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.ppic-ppid-hero-container h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.ppic-ppid-hero-container p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f5f9;
}

/* Area Tombol */
.ppic-ppid-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.ppic-ppid-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 220px; /* Memberi batas minimal agar rapi */
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Tombol 1: Kuning / Orange */
.ppic-ppid-hero-btn-primary {
  background-color: #fdbb11;
  color: #0f2748; /* Teks gelap agar kontras */
  border: 2px solid #fdbb11;
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.2);
}

.ppic-ppid-hero-btn-primary:hover {
  background-color: #e5a80f;
  border-color: #e5a80f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 187, 17, 0.3);
  color: #0f2748;
}

/* Tombol 2: Transparan Outline Putih */
.ppic-ppid-hero-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ppic-ppid-hero-btn-secondary:hover {
  background-color: #ffffff;
  color: #0f2748;
  transform: translateY(-2px);
}

/* Panah Navigasi Kiri / Kanan */
.ppic-ppid-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppic-ppid-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.ppic-ppid-hero-arrow-left {
  left: 20px;
}
.ppic-ppid-hero-arrow-right {
  right: 20px;
}

/* Titik Bawah (Dots) */
.ppic-ppid-hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.ppic-ppid-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ppic-ppid-hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.ppic-ppid-hero-dot.is-active {
  background: #fdbb11; /* Warna orange aktif */
  transform: scale(1.2);
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 768px) {
  .ppic-ppid-hero,
  .ppic-ppid-hero-slide {
    min-height: 100vh; /* Agar tinggi cukup lega di layar HP */
    height: auto; /* Teks yang memanjang otomatis akan mendorong frame, tak akan overflow */
  }

  .ppic-ppid-hero-slide {
    /* Padding ekstra atas untuk menghindari menu navbar yang tertutup transparan */
    padding: 160px 24px 100px;
  }

  .ppic-ppid-hero-container h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .ppic-ppid-hero-container p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  /* Susun tombol ke bawah dan atur lebarnya */
  .ppic-ppid-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .ppic-ppid-hero-btn {
    width: auto; /* Menghilangkan width 100% yang sebelumnya bikin panjang */
    min-width: 260px; /* Panjang ideal untuk menampung teks tanpa mentok layar */
    max-width: 100%;
  }

  /* Atur panah agak mengecil dan masuk ke pinggir */
  .ppic-ppid-hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .ppic-ppid-hero-arrow-left {
    left: 10px;
  }

  .ppic-ppid-hero-arrow-right {
    right: 10px;
  }
}

/* =========================================================================
   34. PPIC PPID MENGENAL (TWO COLUMN SECTION)
   ========================================================================= */
.ppic-ppid-mengenal-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-ppid-mengenal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center; /* Membuat teks dan gambar rata tengah secara vertikal */
}

/* Bagian Konten Teks */
.ppic-ppid-mengenal-content {
  max-width: 100%;
}

.ppic-ppid-mengenal-title {
  color: #00305b; /* Biru gelap PPIC */
  font-size: 36px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ppic-ppid-mengenal-subtitle {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ppic-ppid-mengenal-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Bagian Quick Links */
.ppic-ppid-mengenal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px; /* Jarak antar link */
}

.ppic-ppid-mengenal-links li {
  margin: 0;
  padding: 0;
}

.ppic-ppid-mengenal-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #00305b;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ppic-ppid-mengenal-links a i {
  color: #fdbb11; /* Warna kuning khas icon */
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Efek Hover pada Link */
.ppic-ppid-mengenal-links a:hover {
  color: #0d5ea8;
}

.ppic-ppid-mengenal-links a:hover i {
  transform: translateX(4px); /* Panah bergerak sedikit ke kanan */
}

/* Bagian Gambar */
.ppic-ppid-mengenal-image-wrapper {
  width: 100%;
}

.ppic-ppid-mengenal-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(14, 38, 60, 0.08); /* Bayangan lembut seperti di referensi */
  object-fit: cover;
}

/* Responsif untuk Tablet & Mobile */
@media (max-width: 991px) {
  .ppic-ppid-mengenal-container {
    grid-template-columns: 1fr; /* Berubah menjadi 1 kolom */
    gap: 40px;
  }

  .ppic-ppid-mengenal-title {
    font-size: 32px;
  }

  /* Mengubah urutan agar gambar muncul di atas teks di mobile (opsional) */
  /* Jika ingin gambar tetap di bawah teks, hapus flex order di bawah ini */
  .ppic-ppid-mengenal-section .ppic-ppid-mengenal-container {
    display: flex;
    flex-direction: column-reverse; /* Mengatur urutan: teks di atas, gambar di bawah (sesuai HTML) */
  }
}

@media (max-width: 575px) {
  .ppic-ppid-mengenal-section {
    padding: 50px 0;
  }

  .ppic-ppid-mengenal-title {
    font-size: 28px;
  }

  .ppic-ppid-mengenal-subtitle,
  .ppic-ppid-mengenal-desc,
  .ppic-ppid-mengenal-links a {
    font-size: 15px;
  }
}

/* =========================================================================
   35. PPIC PPID LAYANAN INFORMASI
   ========================================================================= */
.ppic-ppid-layanan-section {
  padding: 120px 0 40px;
  background-color: #f7f9fa; /* Background abu-abu sangat terang */
  font-family: "Inter", sans-serif;
}

.ppic-ppid-layanan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Text (Rata Kiri sesuai referensi gambar) */
.ppic-ppid-layanan-header {
  max-width: 800px;
  margin-bottom: 40px;
}

.ppic-ppid-layanan-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ppic-ppid-layanan-subtitle {
  color: #55687a;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout */
.ppic-ppid-layanan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Style Kartu */
.ppic-ppid-layanan-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(14, 38, 60, 0.04); /* Shadow dasar yang sangat tipis */
  transition: box-shadow 0.3s ease; /* Transisi hanya untuk shadow */
  display: flex;
  flex-direction: column;
}

/* Efek Hover (Shadow Saja) */
.ppic-ppid-layanan-card:hover {
  box-shadow: 0 20px 40px rgba(14, 38, 60, 0.12); /* Shadow membesar saat hover */
}

/* Ikon Kartu */
.ppic-ppid-layanan-icon {
  margin-bottom: 20px;
}

.ppic-ppid-layanan-icon i {
  color: #fdbb11; /* Warna ikon kuning khas */
  font-size: 28px;
}

/* Judul dalam Kartu */
.ppic-ppid-layanan-card h3 {
  color: #00305b;
  font-size: 22px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 24px;
}

/* Konten Jadwal (Card 1) */
.ppic-ppid-layanan-content {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.7;
}

.ppic-ppid-layanan-content p {
  margin-bottom: 0;
}

.ppic-ppid-layanan-content strong {
  color: #1a2f44;
  font-weight: 700;
}

/* Tautan Pranala (Card 2) */
.ppic-ppid-layanan-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1; /* Mendorong tombol ke bawah */
}

.ppic-ppid-layanan-links li {
  margin: 0;
  padding: 0;
}

.ppic-ppid-layanan-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #00305b;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ppic-ppid-layanan-links a i {
  color: #fdbb11;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.ppic-ppid-layanan-links a:hover {
  color: #0d5ea8;
}

.ppic-ppid-layanan-links a:hover i {
  transform: translateX(4px);
}

/* Tombol CTA (Card 2) */
.ppic-ppid-layanan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.ppic-ppid-layanan-btn:hover {
  background-color: #e5a80f;
  color: #00305b;
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.3);
}

/* Responsif */
@media (max-width: 991px) {
  .ppic-ppid-layanan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .ppic-ppid-layanan-title {
    font-size: 26px;
  }

  .ppic-ppid-layanan-card {
    padding: 30px 25px;
  }

  .ppic-ppid-layanan-card h3 {
    font-size: 20px;
  }

  .ppic-ppid-layanan-btn {
    width: 100%;
  }
}

/* =========================================================================
   36. PPIC PPID DAFTAR INFORMASI
   ========================================================================= */
.ppic-ppid-daftar-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-ppid-daftar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Text (Rata Kiri) */
.ppic-ppid-daftar-header {
  max-width: 800px;
  margin-bottom: 40px;
  text-align: left;
}

.ppic-ppid-daftar-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ppic-ppid-daftar-subtitle {
  color: #55687a;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout 3 Kolom */
.ppic-ppid-daftar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Style Kartu */
.ppic-ppid-daftar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 6px 18px rgba(14, 38, 60, 0.05); /* Shadow dasar */
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f2f5f8;
}

/* Efek Hover Pada Kartu */
.ppic-ppid-daftar-card:hover {
  box-shadow: 0 15px 35px rgba(14, 38, 60, 0.1); /* Shadow membesar */
  transform: translateY(-5px); /* Kartu sedikit terangkat */
}

/* Ikon Kartu */
.ppic-ppid-daftar-icon {
  margin-bottom: 20px;
}

.ppic-ppid-daftar-icon i {
  color: #fdbb11;
  font-size: 26px;
}

/* Teks dalam Kartu */
.ppic-ppid-daftar-card h3 {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
}

.ppic-ppid-daftar-card p {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1; /* Mendorong tombol selalu ke bawah */
}

/* Tombol Outline (Selengkapnya) */
.ppic-ppid-daftar-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 24px;
  border: 1px solid #00305b;
  color: #00305b;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.ppic-ppid-daftar-btn-outline:hover {
  background-color: #00305b;
  color: #ffffff;
}

/* Area CTA Bawah */
.ppic-ppid-daftar-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.ppic-ppid-daftar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ppic-ppid-daftar-cta:hover {
  background-color: #e5a80f;
  color: #00305b;
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.3);
  transform: translateY(-2px);
}

/* Responsif */
@media (max-width: 991px) {
  .ppic-ppid-daftar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppic-ppid-daftar-grid {
    grid-template-columns: 1fr;
  }

  .ppic-ppid-daftar-title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .ppic-ppid-daftar-card {
    padding: 25px 20px;
  }
}

/* =========================================================================
   37. PPIC PPID AKUNTABILITAS DAN PELAPORAN
   ========================================================================= */
.ppic-ppid-akun-section {
  padding: 120px 0 40px;
  background-color: #f7f9fa; /* Warna background abu-abu sangat terang */
  font-family: "Inter", sans-serif;
}

.ppic-ppid-akun-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center; /* Rata tengah secara vertikal */
}

/* Kolom Kiri: Teks & Tombol */
.ppic-ppid-akun-content {
  max-width: 100%;
}

.ppic-ppid-akun-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ppic-ppid-akun-subtitle {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ppic-ppid-akun-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(253, 187, 17, 0.2);
}

.ppic-ppid-akun-btn:hover {
  background-color: #e5a80f;
  color: #00305b;
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.4);
  transform: translateY(-2px);
}

/* Kolom Kanan: Kartu Laporan */
.ppic-ppid-akun-card-wrapper {
  width: 100%;
}

.ppic-ppid-akun-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(14, 38, 60, 0.05); /* Bayangan statis yang tipis */
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease; /* Transisi untuk hover */
  display: flex;
  flex-direction: column;
}

/* Efek Hover Pada Kartu */
.ppic-ppid-akun-card:hover {
  box-shadow: 0 20px 40px rgba(14, 38, 60, 0.12); /* Bayangan membesar */
  transform: translateY(-6px); /* Kartu sedikit naik */
}

/* Ikon Kartu */
.ppic-ppid-akun-icon {
  margin-bottom: 20px;
}

.ppic-ppid-akun-icon i {
  color: #fdbb11;
  font-size: 32px;
}

/* Teks dalam Kartu */
.ppic-ppid-akun-card h3 {
  color: #00305b;
  font-size: 22px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
}

.ppic-ppid-akun-card p {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Responsif */
@media (max-width: 991px) {
  .ppic-ppid-akun-container {
    grid-template-columns: 1fr; /* Berubah menjadi 1 kolom yang bersusun */
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .ppic-ppid-akun-title {
    font-size: 28px;
  }

  .ppic-ppid-akun-btn {
    width: 100%;
    text-align: center;
  }

  .ppic-ppid-akun-card {
    padding: 30px 25px;
  }
}

/* =========================================================================
   38. PPIC PPID TRANSPARANSI RESPONSIF (CTA BOX)
   ========================================================================= */
.ppic-ppid-transparansi-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-ppid-transparansi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Kotak Biru Gelap */
.ppic-ppid-transparansi-box {
  background-color: #00305b; /* Biru gelap khas PPI Curug */
  border-radius: 20px; /* Sudut melengkung sesuai gambar */
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 48, 91, 0.15); /* Sedikit bayangan agar tidak terlalu flat */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Tipografi Judul */
.ppic-ppid-transparansi-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Tipografi Paragraf */
.ppic-ppid-transparansi-desc {
  color: #f1f5f9; /* Putih agak soft agar nyaman dibaca */
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px; /* Membatasi lebar teks seperti di gambar */
  margin: 0 auto;
}

/* Responsif */
@media (max-width: 991px) {
  .ppic-ppid-transparansi-box {
    padding: 60px 30px;
  }

  .ppic-ppid-transparansi-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .ppic-ppid-transparansi-box {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .ppic-ppid-transparansi-title {
    font-size: 26px;
  }

  .ppic-ppid-transparansi-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================================================================
   39. PPIC PPID BUTUH INFORMASI (FOOTER CTA)
   ========================================================================= */
.ppic-ppid-butuh-info-section {
  padding: 120px 0 40px;
  background-color: #00305b; /* Biru gelap khas PPI Curug */
  font-family: "Inter", sans-serif;
  text-align: center;
}

.ppic-ppid-butuh-info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografi */
.ppic-ppid-butuh-info-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.ppic-ppid-butuh-info-desc {
  color: #e2e8f0; /* Putih sedikit pudar */
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 35px auto;
  max-width: 700px;
}

/* Container Tombol */
.ppic-ppid-butuh-info-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Gaya Tombol Dasar */
.ppic-ppid-butuh-info-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Tombol Primary (Kuning) */
.ppic-btn-primary {
  background-color: #fdbb11;
  color: #00305b;
  border: 2px solid #fdbb11;
  box-shadow: 0 4px 10px rgba(253, 187, 17, 0.2);
}

.ppic-btn-primary:hover {
  background-color: #e5a80f;
  border-color: #e5a80f;
  color: #00305b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.35);
}

/* Tombol Secondary (Outline Putih) */
.ppic-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ppic-btn-secondary:hover {
  background-color: #ffffff;
  color: #00305b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* Responsif */
@media (max-width: 768px) {
  .ppic-ppid-butuh-info-title {
    font-size: 30px;
  }

  .ppic-ppid-butuh-info-desc {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .ppic-ppid-butuh-info-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .ppic-ppid-butuh-info-buttons a {
    width: 100%;
  }
}

/* =========================================================================
   40. PPIC KENAPA HERO SECTION
   ========================================================================= */
.ppic-kenapa-hero-section {
  padding: 180px 0 120px;
  background-color: #0d233a; /* Biru gelap background utama */
  font-family: "Inter", sans-serif;
  text-align: center;
}

.ppic-kenapa-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografi Judul */
.ppic-kenapa-hero-title {
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Highlight Kuning */
.ppic-kenapa-hero-title span {
  color: #fdbb11; /* Warna kuning emas */
}

/* Tipografi Paragraf */
.ppic-kenapa-hero-desc {
  color: #e2e8f0; /* Warna teks pudar / putih abu-abu */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 40px auto;
}

/* Tombol Kembali ke Beranda */
.ppic-kenapa-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08); /* Transparan ringan */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Garis tepi tipis */
  border-radius: 999px; /* Pill shape */
  transition: all 0.3s ease;
}

/* Efek Hover Tombol */
.ppic-kenapa-hero-btn:hover {
  background-color: rgba(
    255,
    255,
    255,
    0.15
  ); /* Background sedikit lebih terang saat hover */
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.ppic-kenapa-hero-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.ppic-kenapa-hero-btn:hover i {
  transform: translateX(-4px); /* Panah bergerak ke kiri sedikit */
}

/* Responsif */
@media (max-width: 768px) {
  .ppic-kenapa-hero-section {
    padding: 80px 0;
  }

  .ppic-kenapa-hero-title {
    font-size: 40px;
  }

  .ppic-kenapa-hero-desc {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .ppic-kenapa-hero-title {
    font-size: 34px;
  }

  .ppic-kenapa-hero-desc {
    font-size: 15px;
  }

  .ppic-kenapa-hero-btn {
    width: 100%; /* Tombol memenuhi lebar di layar hp */
  }
}

/* =========================================================================
   41. PPIC KENAPA STATS PROGRAM SECTION
   ========================================================================= */
.ppic-kenapa-stats-program-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-kenapa-stats-program-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px; /* Jarak antar item statistik */
}

/* Individual Stat Item */
.ppic-kenapa-stats-program-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

/* Ikon */
.ppic-kenapa-stats-program-item i {
  color: #fdbb11; /* Warna kuning emas PPI Curug */
  font-size: 32px;
  margin-bottom: 15px;
}

/* Angka Besar */
.ppic-kenapa-stats-program-number {
  color: #00305b; /* Biru gelap PPI Curug */
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

/* Label Teks */
.ppic-kenapa-stats-program-label {
  color: #4a5b6d;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Responsif */
@media (max-width: 991px) {
  .ppic-kenapa-stats-program-container {
    gap: 50px;
  }

  .ppic-kenapa-stats-program-number {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .ppic-kenapa-stats-program-section {
    padding: 40px 0;
  }

  .ppic-kenapa-stats-program-container {
    flex-direction: column; /* Mengubah susunan menjadi atas-bawah di HP */
    gap: 40px;
  }

  .ppic-kenapa-stats-program-number {
    font-size: 32px;
  }

  .ppic-kenapa-stats-program-item i {
    font-size: 28px;
  }
}

/* =========================================================================
   42. PPIC KENAPA - KEHIDUPAN KAMPUS (TWO COLUMNS)
   ========================================================================= */
.ppic-kenapa-kampus-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-kenapa-kampus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Kolom Kiri: Teks & Fitur */
.ppic-kenapa-kampus-text-col {
  max-width: 100%;
}

.ppic-kenapa-kampus-badge {
  display: inline-block;
  background-color: #fdbb11; /* Kuning PPIC */
  color: #00305b; /* Biru gelap text */
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.ppic-kenapa-kampus-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 20px;
  border-left: 4px solid #fdbb11; /* Garis kuning di kiri judul */
  padding-left: 18px;
}

.ppic-kenapa-kampus-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ppic-kenapa-kampus-desc strong {
  color: #1a2f44;
  font-weight: 700;
}

/* List Poin */
.ppic-kenapa-kampus-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ppic-kenapa-kampus-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #00305b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.ppic-kenapa-kampus-features i {
  color: #fdbb11;
  font-size: 18px;
  margin-top: 2px;
}

/* Kolom Kanan: Visual Card */
.ppic-kenapa-kampus-visual-col {
  width: 100%;
}

.ppic-kenapa-kampus-card {
  background: #ffffff;
  border: 1px solid #f2f5f8;
  border-radius: 16px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(14, 38, 60, 0.05); /* Bayangan soft */
}

.ppic-kenapa-kampus-card-title {
  color: #00305b;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.ppic-kenapa-kampus-card-sub {
  color: #1a2f44;
  font-size: 16px;
  font-weight: 600;
}

.ppic-kenapa-kampus-card-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 25px 0;
}

/* Card Highlight Bawah */
.ppic-kenapa-kampus-highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ppic-kenapa-kampus-highlight .highlight-icon i {
  color: #fdbb11;
  font-size: 20px;
  margin-top: 2px;
}

.ppic-kenapa-kampus-highlight .highlight-text strong {
  color: #00305b;
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.ppic-kenapa-kampus-highlight .highlight-text span {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
  display: block;
}

/* Responsif */
@media (max-width: 991px) {
  .ppic-kenapa-kampus-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 575px) {
  .ppic-kenapa-kampus-title {
    font-size: 28px;
  }

  .ppic-kenapa-kampus-card {
    padding: 30px 25px;
  }

  .ppic-kenapa-kampus-card-title {
    font-size: 28px;
  }
}

/* =========================================================================
   43. PPIC KENAPA - LOKASI STRATEGIS & MAP
   ========================================================================= */
.ppic-lokasi-section {
  padding: 120px 0 40px;
  background-color: #f7f9fa; /* Background abu-abu muda */
  font-family: "Inter", sans-serif;
}

.ppic-lokasi-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Bagian Header (Judul & Teks) */
.ppic-lokasi-header {
  text-align: center;
  margin-bottom: 40px;
}

.ppic-lokasi-title {
  color: #00305b; /* Biru Gelap PPIC */
  font-size: 32px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ppic-lokasi-subtitle {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
}

.ppic-lokasi-subtitle strong {
  color: #1a2f44;
  font-weight: 700;
}

/* Kontainer Peta (Leaflet) */
.ppic-map-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden; /* Agar peta mengikuti sudut membulat */
  box-shadow: 0 15px 40px rgba(14, 38, 60, 0.08); /* Bayangan lembut */
  border: 1px solid #e2e8f0;
  background-color: #e5e5e5; /* Fallback warna sebelum peta dimuat */
}

.ppic-interactive-map {
  width: 100%;
  height: 480px; /* Tinggi peta */
  z-index: 1; /* Mencegah konflik z-index dengan header situs */
}

/* Kustomisasi Popup Leaflet agar menyatu dengan desain */
.leaflet-popup-content-wrapper {
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}
.leaflet-popup-content b {
  color: #00305b;
  font-size: 15px;
}

/* Bagian Legend (Keterangan Bawah) */
.ppic-lokasi-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 35px;
}

.ppic-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #384859;
  font-size: 14px;
  font-weight: 600;
}

.ppic-legend-color {
  width: 16px;
  height: 16px;
  border-radius: 50%; /* Bentuk lingkaran */
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsif */
@media (max-width: 768px) {
  .ppic-lokasi-title {
    font-size: 28px;
  }

  .ppic-interactive-map {
    height: 380px;
  }

  .ppic-lokasi-legend {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .ppic-interactive-map {
    height: 320px;
  }

  .ppic-lokasi-legend {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
}

/* =========================================================================
   44. PPIC KENAPA - MOSAIC SECTIONS (Sesuai Mockup Final)
   ========================================================================= */
.ppic-mosaic-wrapper {
  padding: 120px 0 40px;
  background-color: #fefaf0; /* Warna dasar Warm Cream */
  font-family: "Inter", sans-serif;
}

.ppic-mosaic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Base Layout Grid */
.ppic-mosaic-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: center;
  margin-bottom: 100px;
  scroll-margin-top: 100px;
}

.ppic-mosaic-section:last-child {
  margin-bottom: 0;
}

/* ================== KARTU TEKS (PUTIH BERSUDUT MEMBULAT) ================== */
.mosaic-text-card {
  background: #ffffff; /* Kotak Putih */
  padding: 45px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(18, 40, 60, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  border: 1px solid transparent;
}

/* Efek Hover pada Kartu Teks */
.mosaic-text-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(13, 54, 89, 0.08);
  border-color: #fdbb11;
}

/* Card Gambar Visual */
.mosaic-image-card {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.mosaic-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mosaic-image-card:hover img {
  transform: scale(1.03);
}

/* Badge Atas (Kuning) */
.mini-badge {
  display: inline-block;
  background-color: #fdbb11;
  color: #00305b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Tipografi Judul (Garis Biru Memanjang Sesuai Mockup) */
.mosaic-title {
  color: #00305b;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 20px;
  padding-bottom: 16px; /* Jarak antara teks dan garis */
  border-bottom: 2px solid #00305b; /* Garis biru memanjang */
}

/* Pastikan ::after dari versi lama dimatikan */
.mosaic-title::after {
  display: none !important;
}

/* Deskripsi Paragraf */
.mosaic-text-card p {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ================== ELEMEN SPESIFIK ================== */

/* 1. Feature List Umum (Fasilitas, Sertifikasi, Akreditasi, Keberagaman) */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1a2f44;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-list i {
  color: #fdbb11;
  font-size: 18px;
  margin-top: 2px;
}

/* 2. Quote Mini (Kutipan di bawah Sertifikasi & Keberagaman) - Sesuai Mockup */
.quote-mini {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #fef4e3; /* Background krem/orange sangat muda */
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 6px solid #fdbb11; /* Garis kuning tebal di sisi kiri */
  margin-top: 25px;
  color: #00305b; /* Teks berwarna biru gelap */
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  font-weight: 600;
}

.quote-mini i {
  color: #00305b; /* Warna ikon biru gelap */
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 3. Keberagaman Icons (Masjid, Gereja, Pura - Sesuai Mockup Baru) */
.mosaic-keberagaman-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Meratakan ke tengah secara horizontal */
  gap: 35px; /* Jarak antar ikon */
  margin: 20px 0 30px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent; /* Tidak ada background putih */
  padding: 0;
  border: none;
}

.icon-item i {
  color: #f5b01b; /* Warna kuning / orange sesuai request */
  font-size: 32px;
  flex-shrink: 0;
}

.icon-item span {
  color: #00305b;
  font-weight: 800;
  font-size: 14px;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-mosaic-section,
  .ppic-mosaic-section.is-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 70px;
  }

  /* Memaksa gambar di Mobile/Tablet selalu berada di atas teks */
  .ppic-mosaic-section .mosaic-image-card {
    order: -1;
    min-height: 320px;
  }

  .mosaic-text-card {
    padding: 36px 30px;
  }
}

@media (max-width: 575px) {
  .mosaic-text-card {
    padding: 30px 20px;
  }

  .mosaic-image-card {
    min-height: 260px;
  }

  .mosaic-title {
    font-size: 28px;
  }
}

/* =========================================================================
   45. PPIC KENAPA - PRESTASI MEMBANGGAKAN
   ========================================================================= */
.ppic-prestasi-section {
  padding: 120px 0 40px;
  background-color: #f8fafc; /* Latar belakang abu-abu sangat muda (seperti mockup bg-alt) */
  font-family: "Inter", sans-serif;
}

.ppic-prestasi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER ================== */
.ppic-prestasi-header {
  text-align: center;
  margin-bottom: 50px;
}

.ppic-prestasi-title {
  color: #00305b; /* Biru gelap PPI Curug */
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.25;
}

.ppic-prestasi-subtitle {
  color: #55687a;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ================== GRID & KARTU ================== */
.ppic-prestasi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.ppic-prestasi-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(18, 40, 60, 0.04);
  border: 1px solid #ffffff; /* Default border transparan/putih */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Konten rata kiri */
}

/* Efek Hover (seperti kartu tengah di mockup) */
.ppic-prestasi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
  border-color: #fdbb11; /* Border menjadi kuning/orange */
}

/* ================== IKON KARTU ================== */
.ppic-prestasi-icon {
  width: 65px;
  height: 65px;
  background-color: #fef4e3; /* Lingkaran latar kuning/cream sangat muda */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ppic-prestasi-icon i {
  color: #fdbb11; /* Ikon warna kuning/orange */
  font-size: 26px;
}

/* ================== TEKS KARTU ================== */
.ppic-prestasi-card h3 {
  color: #00305b;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.3;
}

.ppic-prestasi-card p {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 30px;
  flex-grow: 1; /* Mendorong label tag agar selalu sejajar di bawah */
}

/* ================== TAG LABEL BAWAH ================== */
.ppic-prestasi-tag {
  display: inline-block;
  background-color: #f1f5f9; /* Latar abu-abu kebiruan muda */
  color: #00305b; /* Teks biru gelap */
  padding: 8px 18px;
  border-radius: 999px; /* Pill shape */
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-prestasi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ppic-prestasi-grid {
    grid-template-columns: 1fr;
  }

  .ppic-prestasi-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-prestasi-card {
    padding: 30px 24px;
  }
}

/* =========================================================================
   46. PPIC KENAPA - BEASISWA & BANTUAN PENDIDIKAN
   ========================================================================= */
.ppic-beasiswa-section {
  padding: 120px 0 40px;
  background-color: #f8fafc; /* Latar belakang abu-abu sangat muda (bg-alt) */
  font-family: "Inter", sans-serif;
}

.ppic-beasiswa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* Kolom kiri (kartu) sedikit lebih sempit dari teks */
  gap: 60px;
  align-items: center;
}

/* ================== KOLOM KIRI (KARTU VISUAL) ================== */
.ppic-beasiswa-visual {
  width: 100%;
}

.ppic-beasiswa-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(18, 40, 60, 0.05);
  text-align: left;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.ppic-beasiswa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.ppic-beasiswa-card i {
  color: #fdbb11; /* Warna ikon kuning/orange */
  font-size: 42px;
  margin-bottom: 24px;
  display: block;
}

.ppic-beasiswa-card h3 {
  color: #00305b;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
}

.ppic-beasiswa-card p {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ================== KOLOM KANAN (TEKS KONTEN) ================== */
.ppic-beasiswa-text {
  width: 100%;
}

/* Badge Atas */
.ppic-beasiswa-badge {
  display: inline-block;
  background-color: #fdbb11;
  color: #00305b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Tipografi Judul dengan Garis Vertikal Kuning di Kiri */
.ppic-beasiswa-title {
  color: #00305b;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 20px;
  border-left: 5px solid #fdbb11; /* Garis vertikal tebal */
  padding-left: 20px; /* Jarak dari garis ke teks */
}

/* Deskripsi Paragraf */
.ppic-beasiswa-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 25px;
}

/* Daftar Fitur */
.ppic-beasiswa-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.ppic-beasiswa-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1a2f44;
  font-size: 15px;
  font-weight: 600;
}

.ppic-beasiswa-features i {
  color: #fdbb11;
  font-size: 18px;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-beasiswa-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Di perangkat mobile, teks berada di atas kartu */
  .ppic-beasiswa-text {
    order: -1;
  }
}

@media (max-width: 575px) {
  .ppic-beasiswa-card {
    padding: 35px 25px;
  }

  .ppic-beasiswa-title {
    font-size: 28px;
    padding-left: 16px;
  }
}

/* =========================================================================
   47. PPIC KENAPA - SERAPAN ALUMNI & JEJAK KARIER
   ========================================================================= */
.ppic-serapan-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar belakang putih bersih */
  font-family: "Inter", sans-serif;
}

.ppic-serapan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Kolom Teks lebih lebar dari Kartu */
  gap: 60px;
  align-items: center;
}

/* ================== KOLOM KIRI (TEKS KONTEN) ================== */
.ppic-serapan-text {
  width: 100%;
}

/* Badge Atas */
.ppic-serapan-badge {
  display: inline-block;
  background-color: #fdbb11;
  color: #00305b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Tipografi Judul dengan Garis Vertikal Kuning di Kiri */
.ppic-serapan-title {
  color: #00305b;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 20px;
  border-left: 5px solid #fdbb11; /* Garis vertikal tebal */
  padding-left: 20px; /* Jarak dari garis ke teks */
}

/* Deskripsi Paragraf */
.ppic-serapan-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 25px;
}

/* Daftar Fitur */
.ppic-serapan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.ppic-serapan-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1a2f44;
  font-size: 15px;
  font-weight: 600;
}

.ppic-serapan-features i {
  color: #fdbb11;
  font-size: 18px;
}

/* ================== KOLOM KANAN (KARTU VISUAL) ================== */
.ppic-serapan-visual {
  width: 100%;
}

.ppic-serapan-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(18, 40, 60, 0.06);
  border: 1px solid #f1f5f9; /* Border abu-abu sangat tipis/halus */
  text-align: left;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.ppic-serapan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.1);
}

.ppic-serapan-card i {
  color: #fdbb11; /* Warna ikon kuning/orange */
  font-size: 42px;
  margin-bottom: 24px;
  display: block;
}

.ppic-serapan-card h3 {
  color: #00305b;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
}

.ppic-serapan-card p {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-serapan-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .ppic-serapan-card {
    padding: 35px 25px;
  }

  .ppic-serapan-title {
    font-size: 28px;
    padding-left: 16px;
  }
}

/* =========================================================================
   48. PPIC KENAPA - STATISTIK & CTA ALUMNI
   ========================================================================= */
.ppic-stats-alumni-section {
  padding: 120px 0 40px;
  background-color: transparent; /* Putih atau transparan mengikuti background page */
  font-family: "Inter", sans-serif;
}

.ppic-stats-alumni-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Agar responsif melipat di layar kecil */
  gap: 40px;
}

/* ================== GRUP STATISTIK (KIRI) ================== */
.ppic-stats-alumni-group {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.ppic-stats-alumni-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ppic-stats-alumni-item i {
  color: #fdbb11; /* Kuning / Orange PPI */
  font-size: 32px;
  margin-bottom: 12px;
}

.ppic-stats-alumni-item .stat-number {
  color: #00305b; /* Biru Gelap PPI */
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.ppic-stats-alumni-item p {
  color: #00305b;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

/* ================== TOMBOL CTA (KANAN) ================== */
.ppic-stats-alumni-cta {
  flex-shrink: 0;
}

.btn-daftar-sekarang {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    90deg,
    #ffc107,
    #f39c12
  ); /* Gradient Kuning ke Oranye */
  color: #00305b; /* Teks Biru Gelap sesuai mockup */
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 36px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-daftar-sekarang i {
  font-size: 18px;
}

.btn-daftar-sekarang:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
  color: #00305b; /* Pastikan warna teks tidak berubah */
  text-decoration: none;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-stats-alumni-group {
    gap: 40px;
  }

  .ppic-stats-alumni-item .stat-number {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .ppic-stats-alumni-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppic-stats-alumni-cta {
    margin-top: 20px;
    width: 100%;
  }

  .btn-daftar-sekarang {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ppic-stats-alumni-group {
    flex-direction: column;
    gap: 35px;
  }

  .ppic-stats-alumni-item {
    align-items: center; /* Pindahkan ke tengah untuk layar HP yang sangat kecil */
    text-align: center;
    width: 100%;
  }
}

/* =========================================================================
   49. PPIC PELATIHAN - HERO SECTION
   ========================================================================= */
.ppic-pelatihan-hero {
  /* Warna biru gelap navy sesuai mockup */
  background-color: #0b1e36;
  padding: 180px 0 120px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.ppic-pelatihan-hero-container {
  max-width: 900px; /* Dibatasi agar paragraf tidak memanjang ke ujung layar */
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografi Judul */
.ppic-pelatihan-hero-title {
  color: #ffffff; /* Teks putih murni */
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Tipografi Deskripsi */
.ppic-pelatihan-hero-desc {
  color: #f1f5f9; /* Putih keabu-abuan agar tidak terlalu menyilaukan */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
  max-width: 800px; /* Lebar teks dikunci agar patahan kalimatnya rapi */
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-pelatihan-hero {
    padding: 80px 0;
  }

  .ppic-pelatihan-hero-title {
    font-size: 42px;
  }

  .ppic-pelatihan-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .ppic-pelatihan-hero-title {
    font-size: 34px;
  }

  .ppic-pelatihan-hero-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================================================================
   50. PPIC PELATIHAN - ICAO TPP SECTION
   ========================================================================= */
.ppic-tpp-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar belakang putih bersih */
  font-family: "Inter", sans-serif;
}

.ppic-tpp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== JUDUL ================== */
.ppic-tpp-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 30px;
  border-left: 6px solid #fdbb11; /* Aksen garis tebal vertikal kuning */
  padding-left: 18px; /* Jarak teks dengan garis */
}

/* ================== KOTAK INFORMASI ================== */
.ppic-tpp-card {
  background-color: #f8fafc; /* Latar belakang abu-abu / biru sangat muda */
  border-radius: 20px;
  padding: 45px 50px;
  box-shadow: 0 4px 20px rgba(18, 40, 60, 0.03); /* Bayangan sangat tipis */
  border: 1px solid #f1f5f9;
}

/* Deskripsi */
.ppic-tpp-desc p {
  color: #1a2f44;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Memastikan tag <strong> terbaca tebal */
.ppic-tpp-desc strong {
  color: #00305b;
  font-weight: 800;
}

/* ================== DAFTAR POIN (BULLETS) ================== */
.ppic-tpp-list {
  padding-left: 24px;
  margin: 0 0 35px;
  color: #39516a;
}

.ppic-tpp-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 4px; /* Jarak bullet dengan teks */
}

.ppic-tpp-list li:last-child {
  margin-bottom: 0;
}

.ppic-tpp-list em {
  font-style: italic;
  font-weight: 600;
  color: #1a2f44;
}

/* ================== TOMBOL CTA ================== */
.ppic-tpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #00305b; /* Default: Biru Gelap */
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Transisi halus */
}

.ppic-tpp-btn i {
  font-size: 16px;
}

/* EFEK HOVER TOMBOL MENJADI KUNING */
.ppic-tpp-btn:hover {
  background-color: #fdbb11; /* Berubah jadi kuning khas PPI */
  color: #00305b; /* Teks berubah menjadi biru gelap */
  transform: translateY(-3px); /* Tombol sedikit terangkat */
  box-shadow: 0 8px 20px rgba(253, 187, 17, 0.3); /* Bayangan kuning */
  text-decoration: none;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 768px) {
  .ppic-tpp-title {
    font-size: 28px;
  }

  .ppic-tpp-card {
    padding: 35px 30px;
  }
}

@media (max-width: 575px) {
  .ppic-tpp-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .ppic-tpp-btn {
    width: 100%;
    justify-content: center; /* Tombol jadi full width di HP */
  }
}

/* =========================================================================
   51. PPIC PELATIHAN - ICAO ASTC SECTION
   ========================================================================= */
.ppic-astc-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar belakang putih */
  font-family: "Inter", sans-serif;
}

.ppic-astc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== JUDUL HEADER ================== */
.ppic-astc-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  border-left: 6px solid #fdbb11; /* Aksen garis tebal vertikal kuning */
  padding-left: 18px; /* Jarak teks dengan garis */
}

.ppic-astc-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 0 40px;
}

/* ================== SUBTITLE ================== */
.ppic-astc-subtitle {
  font-size: 24px;
  font-weight: 800;
  color: #00305b;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ppic-astc-subtitle i {
  color: #fdbb11;
  font-size: 28px;
}

/* ================== GRID KARTU (4 Kolom) ================== */
.ppic-astc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}

.astc-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid #eef2f6; /* Border sangat tipis */
  box-shadow: 0 4px 15px rgba(18, 40, 60, 0.02); /* Bayangan super halus */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.astc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(18, 40, 60, 0.08);
  border-color: #fdbb11; /* Garis tepi kuning saat di-hover */
}

/* Ikon dalam Kartu */
.astc-icon {
  margin-bottom: 20px;
}

.astc-icon i {
  color: #fdbb11; /* Kuning PPI */
  font-size: 32px;
}

/* Badge (Pill) dalam Kartu */
.badge-astc {
  display: inline-block;
  background-color: #f1f5f9; /* Abu-abu kebiruan muda */
  color: #00305b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Judul Kartu */
.astc-card h4 {
  color: #00305b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

/* Deskripsi Kartu */
.astc-card p {
  color: #55687a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ================== TOMBOL CTA BAWAH ================== */
.astc-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.btn-astc-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #00305b; /* Default Biru Gelap */
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 48, 91, 0.15);
}

.btn-astc-large i {
  font-size: 20px;
}

/* HOVER: Berubah jadi Kuning */
.btn-astc-large:hover {
  background-color: #fdbb11;
  color: #00305b; /* Teks jadi biru gelap agar kontras */
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(253, 187, 17, 0.3);
  text-decoration: none;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
/* Tablet Landscape */
@media (max-width: 1199px) {
  .ppic-astc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Jadi 3 Kolom */
  }
}

/* Tablet Portrait */
@media (max-width: 991px) {
  .ppic-astc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Jadi 2 Kolom */
  }
}

/* Smartphone */
@media (max-width: 575px) {
  .ppic-astc-title {
    font-size: 28px;
  }

  .ppic-astc-grid {
    grid-template-columns: 1fr; /* Jadi 1 Kolom */
    gap: 20px;
  }

  .btn-astc-large {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   52. PPIC PELATIHAN - KATALOG UNGGULAN SECTION
   ========================================================================= */
.ppic-katalog-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar belakang putih */
  font-family: "Inter", sans-serif;
}

.ppic-katalog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== JUDUL HEADER ================== */
.ppic-katalog-header {
  margin-bottom: 40px;
}

.ppic-katalog-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  border-left: 6px solid #fdbb11; /* Aksen vertikal tebal kuning */
  padding-left: 18px; /* Jarak teks dengan garis */
}

.ppic-katalog-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
}

/* ================== GRID KARTU (4 Kolom) ================== */
.ppic-katalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* Desain Kartu (Bisa di Hover) */
.katalog-course-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(18, 40, 60, 0.03); /* Bayangan tipis dasar */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.katalog-course-card:hover {
  transform: translateY(-6px); /* Efek terangkat */
  box-shadow: 0 15px 35px rgba(18, 40, 60, 0.08); /* Bayangan membesar */
  border-color: #fdbb11; /* Outline kuning tipis di seluruh kartu */
}

/* Badge di dalam Kartu */
.katalog-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f5f9; /* Abu-abu kebiruan muda */
  color: #00305b;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px; /* Bentuk kapsul/pill */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.katalog-course-badge i {
  color: #00305b; /* Mengikuti warna teks badge */
  font-size: 14px;
}

/* Khusus membuat warna ikon di badge yang memiliki kelas tertentu */
.katalog-course-badge .fa-tools,
.katalog-course-badge .fa-sim-card {
  color: #fdbb11; /* Aksen kuning untuk beberapa ikon mekanik/simulator jika diinginkan */
}

/* Judul Kartu */
.katalog-course-card h4 {
  color: #00305b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 14px;
}

/* Deskripsi Kartu */
.katalog-course-card p {
  color: #55687a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 25px;
  flex-grow: 1; /* Mendorong link WA selalu ke dasar kartu */
}

/* Link WhatsApp di Kartu */
.katalog-course-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00305b; /* Biru gelap */
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

/* Memisahkan underline teks dan logo WA */
.katalog-course-link span {
  border-bottom: 1px solid #fdbb11; /* Garis bawah kuning tipis pada teks saja */
}

.katalog-course-link i {
  color: #25d366; /* Warna hijau khas WhatsApp */
  font-size: 18px;
}

.katalog-course-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* ================== TOMBOL CTA BAWAH ================== */
.ppic-katalog-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-full-catalog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #00305b;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 999px; /* Pill shape */
  border: 2px solid #fdbb11; /* Garis outline kuning */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(253, 187, 17, 0.1);
}

.btn-full-catalog i {
  font-size: 18px;
  color: #00305b;
}

/* HOVER: Tombol menjadi solid kuning */
.btn-full-catalog:hover {
  background-color: #fdbb11;
  color: #00305b;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(253, 187, 17, 0.3);
  text-decoration: none;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
/* Tablet Landscape / Kecil */
@media (max-width: 1199px) {
  .ppic-katalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Jadi 3 Kolom */
  }
}

/* Tablet Portrait */
@media (max-width: 991px) {
  .ppic-katalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Jadi 2 Kolom */
  }
}

/* Smartphone */
@media (max-width: 575px) {
  .ppic-katalog-title {
    font-size: 28px;
  }

  .ppic-katalog-grid {
    grid-template-columns: 1fr; /* Jadi 1 Kolom */
    gap: 20px;
  }

  .btn-full-catalog {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   53. PPIC PELATIHAN - JADWAL MENDATANG SECTION
   ========================================================================= */
.ppic-jadwal-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar belakang putih */
  font-family: "Inter", sans-serif;
}

.ppic-jadwal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== JUDUL HEADER ================== */
.ppic-jadwal-header {
  margin-bottom: 40px;
}

.ppic-jadwal-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  border-left: 6px solid #fdbb11; /* Aksen vertikal kuning */
  padding-left: 18px;
}

.ppic-jadwal-desc {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
}

/* ================== TABEL JADWAL ================== */
.ppic-jadwal-table-wrapper {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef2f6; /* Border tipis luar */
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.03); /* Bayangan super halus */
  overflow-x: auto; /* Scroll menyamping untuk HP */
}

.ppic-jadwal-table {
  width: 100%;
  min-width: 800px; /* Lebar minimum agar di HP tidak terlalu berdempetan */
  border-collapse: collapse;
  text-align: left;
}

/* Header Tabel */
.ppic-jadwal-table th {
  background-color: #f8fafc; /* Latar abu-abu sangat muda */
  color: #00305b;
  font-size: 14px;
  font-weight: 800;
  padding: 20px 24px;
  border-bottom: 2px solid #fdbb11; /* Garis pemisah kuning tegas di bawah header */
  white-space: nowrap;
}

/* Isi Tabel (Baris & Kolom) */
.ppic-jadwal-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #eef2f6; /* Garis pemisah antar baris */
  color: #4a5b6d;
  font-size: 15px;
  vertical-align: middle;
}

.ppic-jadwal-table tr:last-child td {
  border-bottom: none; /* Hilangkan garis di baris terakhir */
}

/* Hover pada baris tabel */
.ppic-jadwal-table tbody tr:hover {
  background-color: #fdfdfd; /* Highlight sangat halus saat baris di-hover */
}

.ppic-jadwal-table td strong {
  color: #00305b;
  font-weight: 700;
}

/* ================== WARNA STATUS ================== */
.status-green {
  color: #2e7d32 !important;
  font-weight: 700;
}

.status-orange {
  color: #f5a623 !important;
  font-weight: 700;
}

.status-red {
  color: #e03a2e !important;
  font-weight: 700;
}

/* ================== TOMBOL WA (DI DALAM TABEL) ================== */
.btn-wa-table {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fdbb11; /* Kuning PPI */
  color: #00305b; /* Teks biru gelap */
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px; /* Kapsul kecil */
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-wa-table i {
  font-size: 14px;
}

.btn-wa-table:hover {
  background-color: #00305b; /* Hover berubah biru gelap */
  color: #ffffff; /* Teks jadi putih */
  transform: translateY(-2px);
  text-decoration: none;
}

/* ================== TOMBOL CTA (BAWAH) ================== */
.ppic-jadwal-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-jadwal-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fdbb11; /* Default: Kuning */
  color: #00305b; /* Teks Biru Gelap */
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(253, 187, 17, 0.2);
}

.btn-jadwal-large i {
  font-size: 20px;
}

/* HOVER: Berubah jadi Biru Gelap */
.btn-jadwal-large:hover {
  background-color: #00305b;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 48, 91, 0.2);
  text-decoration: none;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 575px) {
  .ppic-jadwal-title {
    font-size: 28px;
  }

  /* Kustomisasi scrollbar tabel agar terlihat estetik di HP */
  .ppic-jadwal-table-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .ppic-jadwal-table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
  }
  .ppic-jadwal-table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }

  .btn-jadwal-large {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   54. PPIC PENELITIAN - HERO SECTION
   ========================================================================= */
.ppic-penelitian-hero {
  background-color: #0b1e36; /* Warna biru gelap navy sesuai mockup */
  padding: 180px 0 120px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.ppic-penelitian-hero-container {
  max-width: 900px; /* Lebar dibatasi agar teks paragraf tidak memanjang sampai ujung */
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== JUDUL ================== */
.ppic-penelitian-hero-title {
  color: #ffffff; /* Teks putih murni */
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Teks Highlight Kuning */
.ppic-penelitian-hero-title span {
  color: #fdbb11; /* Warna kuning / oranye PPI */
}

/* ================== DESKRIPSI ================== */
.ppic-penelitian-hero-desc {
  color: #f1f5f9; /* Putih keabu-abuan agar tidak menyilaukan mata */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 40px; /* Margin bawah 40px sebagai jarak ke tombol */
  font-weight: 400;
  max-width: 800px;
}

/* ================== TOMBOL KEMBALI ================== */
.ppic-penelitian-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #003b73; /* Biru yang lebih terang dari background utama */
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Transisi halus */
}

.ppic-penelitian-hero-btn i {
  font-size: 16px;
  transition: transform 0.3s ease; /* Transisi untuk animasi ikon */
}

/* EFEK HOVER TOMBOL */
.ppic-penelitian-hero-btn:hover {
  background-color: #fdbb11; /* Berubah menjadi kuning */
  color: #00305b; /* Teks menjadi biru gelap */
  text-decoration: none;
}

/* Menggeser tanda panah sedikit ke kiri saat hover */
.ppic-penelitian-hero-btn:hover i {
  transform: translateX(-4px);
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-penelitian-hero {
    padding: 80px 0;
  }

  .ppic-penelitian-hero-title {
    font-size: 42px;
  }

  .ppic-penelitian-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .ppic-penelitian-hero-title {
    font-size: 32px;
  }

  .ppic-penelitian-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .ppic-penelitian-hero-btn {
    width: 100%;
    justify-content: center; /* Tombol memanjang penuhi layar di HP */
  }
}

/* =========================================================================
   55. PPIC PENELITIAN - PUSAT & PENGABDIAN MASYARAKAT (PusPPM)
   ========================================================================= */
.ppic-pusppm-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-pusppm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dua kolom sejajar */
  gap: 60px;
  align-items: center;
}

/* ================== KOLOM KIRI (TEKS) ================== */
.ppic-pusppm-content {
  width: 100%;
}

.ppic-pusppm-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 25px;
  border-left: 5px solid #fdbb11; /* Garis vertikal kuning di sisi kiri */
  padding-left: 20px;
}

/* Tipografi Paragraf */
.ppic-pusppm-desc p {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: justify; /* Sesuai visualisasi yang rapi */
}

.ppic-pusppm-desc strong {
  color: #00305b;
  font-weight: 800;
}

/* Tipografi List (Bullet Points) */
.ppic-pusppm-list {
  padding-left: 20px; /* Jarak indentasi */
  margin: 0 0 35px;
  color: #4a5b6d;
}

.ppic-pusppm-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ppic-pusppm-list li:last-child {
  margin-bottom: 0;
}

/* ================== TAUTAN (LINK) BAWAH ================== */
.ppic-pusppm-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00305b; /* Teks biru gelap */
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid #fdbb11; /* Garis kuning di bawah teks */
  transition: all 0.3s ease;
}

.ppic-pusppm-link i {
  font-size: 16px;
  transition: transform 0.3s ease; /* Transisi untuk panah */
}

/* Efek Hover Link */
.ppic-pusppm-link:hover {
  color: #fdbb11; /* Teks berubah menjadi kuning */
  border-bottom-color: #00305b; /* Garis bawah berubah menjadi biru gelap */
  text-decoration: none;
}

.ppic-pusppm-link:hover i {
  transform: translateX(4px); /* Panah bergerak ke kanan sedikit saat hover */
}

/* ================== KOLOM KANAN (GAMBAR) ================== */
.ppic-pusppm-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 48, 91, 0.08); /* Bayangan lembut */
}

.ppic-pusppm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Agar gambar tidak gepeng */
  display: block;
  transition: transform 0.5s ease;
}

.ppic-pusppm-image:hover img {
  transform: scale(1.03); /* Animasi membesar tipis saat gambar dihover */
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-pusppm-container {
    grid-template-columns: 1fr; /* Berubah menjadi satu kolom (atas bawah) */
    gap: 40px;
  }

  .ppic-pusppm-image {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .ppic-pusppm-title {
    font-size: 28px;
    padding-left: 16px;
  }

  .ppic-pusppm-desc p {
    font-size: 15px;
    text-align: left; /* Rata kiri untuk kemudahan baca di HP */
  }

  .ppic-pusppm-image {
    min-height: 250px;
    border-radius: 16px;
  }
}

/* =========================================================================
   56. PPIC PENELITIAN - JURNAL & PUBLIKASI ILMIAH
   ========================================================================= */
.ppic-jurnal-section {
  padding: 120px 0 40px;
  background-color: #f9fafc; /* Latar abu-abu / biru sangat muda */
  font-family: "Inter", sans-serif;
}

.ppic-jurnal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== JUDUL HEADER ================== */
.ppic-jurnal-header {
  text-align: center;
  margin-bottom: 50px;
}

.ppic-jurnal-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
}

/* Kata yang di-highlight */
.ppic-jurnal-title span {
  color: #fdbb11; /* Kuning/oranye */
}

.ppic-jurnal-desc {
  color: #55687a;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* ================== GRID KARTU JURNAL (3 Kolom) ================== */
.ppic-jurnal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Desain Kartu Induk */
.ppic-jurnal-card {
  background-color: #ffffff; /* Kotak Putih */
  border-radius: 16px;
  padding: 35px 30px;
  border: 1px solid #eef2f6; /* Border dasar sangat tipis/transparan */
  box-shadow: 0 5px 20px rgba(18, 40, 60, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Efek Hover Kartu Jurnal */
.ppic-jurnal-card:hover {
  transform: translateY(-6px); /* Naik sedikit */
  box-shadow: 0 15px 35px rgba(18, 40, 60, 0.08); /* Bayangan melebar */
  border-color: #fdbb11; /* Muncul garis tepi kuning sesuai mockup */
}

/* ================== KONTEN KARTU ================== */
/* Badge Kuning */
.jurnal-badge {
  display: inline-block;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px; /* Bentuk pill/kapsul */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* Judul Jurnal */
.ppic-jurnal-card h4 {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
}

/* Deskripsi Jurnal */
.ppic-jurnal-card p {
  color: #55687a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ================== META DATA JURNAL ================== */
.jurnal-meta {
  width: 100%;
  margin-top: auto; /* Mendorong meta & link selalu ke bawah jika teks pendek */
  padding-top: 18px;
  border-top: 1px solid #eef2f6; /* Garis pembatas tipis di atas meta */
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
}

.jurnal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b; /* Abu-abu medium */
  font-size: 13px;
  font-weight: 500;
}

.jurnal-meta i {
  color: #fdbb11; /* Ikon meta berwarna kuning/orange */
  font-size: 14px;
}

/* ================== LINK KUNJUNGI ================== */
.btn-jurnal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00305b;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Teks dengan garis bawah kuning */
.btn-jurnal-link span {
  padding-bottom: 2px;
  border-bottom: 2px solid #fdbb11;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

.btn-jurnal-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Hover Link */
.btn-jurnal-link:hover span {
  color: #fdbb11;
  border-bottom-color: #00305b;
}

.btn-jurnal-link:hover i {
  transform: translateX(4px); /* Tanda panah bergeser */
  color: #fdbb11;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-jurnal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Jadi 2 Kolom */
  }
}

@media (max-width: 768px) {
  .ppic-jurnal-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-jurnal-grid {
    grid-template-columns: 1fr; /* Jadi 1 Kolom */
    gap: 20px;
  }

  .ppic-jurnal-card {
    padding: 30px 24px;
  }
}

/* =========================================================================
   57. PPIC PENELITIAN - E-REPOSITORY SECTION
   ========================================================================= */
.ppic-erepo-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar belakang putih bersih */
  font-family: "Inter", sans-serif;
}

.ppic-erepo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dua kolom sejajar */
  gap: 60px;
  align-items: center;
}

/* ================== KOLOM KIRI (TEKS) ================== */
.ppic-erepo-content {
  width: 100%;
}

.ppic-erepo-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 25px;
  border-left: 5px solid #fdbb11; /* Garis vertikal kuning di sisi kiri */
  padding-left: 20px;
}

/* Tipografi Paragraf */
.ppic-erepo-desc p {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: justify;
}

.ppic-erepo-desc strong {
  color: #00305b;
  font-weight: 800;
}

/* Tipografi List (Bullet Points) */
.ppic-erepo-list {
  padding-left: 20px; /* Jarak indentasi */
  margin: 0 0 35px;
  color: #4a5b6d;
}

.ppic-erepo-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ppic-erepo-list li:last-child {
  margin-bottom: 0;
}

/* ================== TAUTAN (LINK) BAWAH ================== */
.ppic-erepo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00305b; /* Teks biru gelap */
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid #fdbb11; /* Garis kuning di bawah teks */
  transition: all 0.3s ease;
}

.ppic-erepo-link i {
  font-size: 16px;
  transition: transform 0.3s ease; /* Transisi untuk panah */
}

/* Efek Hover Link */
.ppic-erepo-link:hover {
  color: #fdbb11; /* Teks berubah menjadi kuning */
  border-bottom-color: #00305b; /* Garis bawah berubah menjadi biru gelap */
  text-decoration: none;
}

.ppic-erepo-link:hover i {
  transform: translateX(4px); /* Panah bergerak ke kanan sedikit saat hover */
}

/* ================== KOLOM KANAN (GAMBAR) ================== */
.ppic-erepo-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 48, 91, 0.08); /* Bayangan lembut */
}

.ppic-erepo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Agar gambar tidak gepeng */
  display: block;
  transition: transform 0.5s ease;
}

.ppic-erepo-image:hover img {
  transform: scale(1.03); /* Animasi membesar tipis saat gambar dihover */
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-erepo-container {
    grid-template-columns: 1fr; /* Berubah menjadi satu kolom (atas bawah) */
    gap: 40px;
  }

  .ppic-erepo-image {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .ppic-erepo-title {
    font-size: 28px;
    padding-left: 16px;
  }

  .ppic-erepo-desc p {
    font-size: 15px;
    text-align: left; /* Rata kiri untuk kemudahan baca di HP */
  }

  .ppic-erepo-image {
    min-height: 250px;
    border-radius: 16px;
  }
}

/* =========================================================================
   58. PPIC PENELITIAN - E-LIBRARY SECTION
   ========================================================================= */
.ppic-elibrary-section {
  padding: 120px 0 40px;
  background-color: #f9fafc; /* Latar belakang abu-abu / biru sangat muda */
  font-family: "Inter", sans-serif;
}

.ppic-elibrary-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dua kolom sejajar */
  gap: 60px;
  align-items: center;
}

/* ================== KOLOM KIRI (TEKS) ================== */
.ppic-elibrary-content {
  width: 100%;
}

.ppic-elibrary-title {
  color: #00305b; /* Biru gelap PPI */
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 25px;
  border-left: 5px solid #fdbb11; /* Garis vertikal kuning di sisi kiri */
  padding-left: 20px;
}

/* Tipografi Paragraf */
.ppic-elibrary-desc p {
  color: #4a5b6d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  text-align: justify;
}

.ppic-elibrary-desc strong {
  color: #00305b;
  font-weight: 800;
}

/* Tipografi List (Bullet Points) */
.ppic-elibrary-list {
  padding-left: 20px; /* Jarak indentasi */
  margin: 0 0 35px;
  color: #4a5b6d;
}

.ppic-elibrary-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ppic-elibrary-list li:last-child {
  margin-bottom: 0;
}

/* ================== TAUTAN (LINK) BAWAH ================== */
.ppic-elibrary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00305b; /* Teks biru gelap */
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid #fdbb11; /* Garis kuning di bawah teks */
  transition: all 0.3s ease;
}

.ppic-elibrary-link i {
  font-size: 16px;
  transition: transform 0.3s ease; /* Transisi untuk panah */
}

/* Efek Hover Link */
.ppic-elibrary-link:hover {
  color: #fdbb11; /* Teks berubah menjadi kuning */
  border-bottom-color: #00305b; /* Garis bawah berubah menjadi biru gelap */
  text-decoration: none;
}

.ppic-elibrary-link:hover i {
  transform: translateX(4px); /* Panah bergerak ke kanan sedikit saat hover */
}

/* ================== KOLOM KANAN (GAMBAR) ================== */
.ppic-elibrary-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 48, 91, 0.08); /* Bayangan lembut */
}

.ppic-elibrary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Agar gambar tidak gepeng */
  display: block;
  transition: transform 0.5s ease;
}

.ppic-elibrary-image:hover img {
  transform: scale(1.03); /* Animasi membesar tipis saat gambar dihover */
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-elibrary-container {
    grid-template-columns: 1fr; /* Berubah menjadi satu kolom (atas bawah) */
    gap: 40px;
  }

  .ppic-elibrary-image {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .ppic-elibrary-title {
    font-size: 28px;
    padding-left: 16px;
  }

  .ppic-elibrary-desc p {
    font-size: 15px;
    text-align: left; /* Rata kiri untuk kemudahan baca di HP */
  }

  .ppic-elibrary-image {
    min-height: 250px;
    border-radius: 16px;
  }
}

/* =========================================================================
   59. PPIC PENELITIAN - STATISTIK SECTION
   ========================================================================= */
.ppic-research-stats-section {
  padding: 120px 0 40px;
  background-color: #f4f7fb; /* Warna biru-abu sangat muda sesuai mockup */
  font-family: "Inter", sans-serif;
}

.ppic-research-stats-container {
  max-width: 1000px; /* Dibatasi agar tidak terlalu melebar ke samping */
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center; /* Memusatkan semua stat item */
  align-items: center;
  flex-wrap: wrap; /* Agar responsif jika layar mengecil */
  gap: 80px; /* Jarak yang lebar antar item seperti di mockup */
}

/* ================== STAT ITEM ================== */
.research-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Jarak antara angka dan label */
}

.research-stat-number {
  color: #00305b; /* Biru gelap PPI */
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.research-stat-label {
  color: #55687a; /* Warna abu-abu kebiruan untuk teks kecil */
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-research-stats-container {
    gap: 50px;
  }

  .research-stat-number {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .ppic-research-stats-container {
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .ppic-research-stats-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Dibagi 2 kolom di HP */
    gap: 30px 20px;
  }

  .research-stat-number {
    font-size: 32px;
  }

  .research-stat-label {
    font-size: 14px;
  }
}

/* =========================================================================
   60. PPIC BERITA & KEGIATAN - HERO SECTION
   ========================================================================= */
.ppic-berita-hero {
  background-color: #0d233a; /* Warna biru gelap navy sesuai mockup */
  padding: 180px 0 40px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.ppic-berita-hero-container {
  max-width: 900px; /* Dibatasi agar paragraf tidak memanjang ke ujung layar */
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografi Judul */
.ppic-berita-hero-title {
  color: #ffffff; /* Teks putih murni */
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase; /* Sesuai mockup yang menggunakan kapital semua */
}

/* Teks Highlight Kuning */
.ppic-berita-hero-title span {
  color: #fdbb11; /* Warna kuning / orange khas PPI */
}

/* Tipografi Deskripsi */
.ppic-berita-hero-desc {
  color: #f1f5f9; /* Putih keabu-abuan agar nyaman dibaca */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
  max-width: 750px; /* Lebar teks dikunci agar patahan kalimatnya rapi */
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-berita-hero {
    padding: 80px 0;
  }

  .ppic-berita-hero-title {
    font-size: 46px;
  }

  .ppic-berita-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .ppic-berita-hero {
    padding: 60px 0;
  }

  .ppic-berita-hero-title {
    font-size: 36px;
  }

  .ppic-berita-hero-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================================================================
   61. PPIC FILTER POST (BERITA/KEGIATAN/SIARAN PERS)
   ========================================================================= */
.ppic-post-wrapper {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  padding: 120px 0 40px;
}

/* ================== SECTION POST ================== */
.ppic-post-section {
  padding: 60px 0 80px;
}

.ppic-post-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ppic-post-header {
  text-align: center;
  margin-bottom: 40px;
}

.ppic-post-header .section-title {
  color: #00305b;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
}

.ppic-post-header .section-sub {
  color: #55687a;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px; /* Tambahan margin bawah sebelum filter */
}

/* ================== FILTER BAR (BARU) ================== */
.filter-bar {
  width: 100%;
  margin-top: 30px;
}

.filter-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* Dipaksa 1 baris */
  gap: 12px;
  overflow-x: auto; /* Bisa scroll ke samping */
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;

  /* Menyembunyikan scrollbar bawaan browser */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
  display: none;
}

/* Trik agar tombol tetap di tengah, tapi bisa di-scroll kalau kepanjangan */
.filter-container::before,
.filter-container::after {
  content: "";
  margin: auto;
}

.filter-btn {
  background-color: #f4f7fb;
  color: #00305b;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* Teks tombol tidak patah ke bawah */
  flex-shrink: 0; /* Tombol tidak gepeng meski kepanjangan */
}

.filter-btn:hover {
  background-color: #e2e8f0;
}

.filter-btn.active {
  background-color: #00305b;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 48, 91, 0.2);
}

/* ================== GRID & KARTU POST ================== */
.post-grid-wrapper {
  position: relative;
  min-height: 300px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Pesan Kosong */
.no-post-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  color: #64748b;
  width: 100%;
}

.no-post-msg i {
  font-size: 42px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.no-post-msg p {
  font-size: 16px;
  margin: 0;
}

/* Kartu */
.post-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(18, 40, 60, 0.05);
  border: 1px solid #f1f5f9;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
  border-color: #fdbb11;
}

/* Gambar Kartu */
.post-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f5f9;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

/* Konten Kartu */
.post-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Badge Kategori Kuning */
.content-badge {
  display: inline-block;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  align-self: flex-start;
}

/* Judul Post */
.post-content h4 {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
}

.post-content .date {
  color: #829ab1;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
}

.post-content p {
  color: #4a5b6d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00305b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-link i {
  transition: transform 0.3s ease;
}

.read-link:hover {
  color: #fdbb11;
  text-decoration: none;
}

.read-link:hover i {
  transform: translateX(4px);
}

/* Tag Bawah */
.card-tags {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags .tag {
  background-color: #f1f5f9;
  color: #4a5b6d;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
}

.card-tags .tag i {
  color: #fdbb11;
  margin-right: 4px;
}

/* ================== TOMBOL CTA BAWAH ================== */
.view-all-btn {
  text-align: center;
  margin-top: 50px;
}

.btn-outline-post {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: #00305b;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 999px;
  border: 2px solid #00305b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-post:hover {
  background-color: #00305b;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 48, 91, 0.15);
  text-decoration: none;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ppic-post-header .section-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .ppic-post-section {
    padding: 40px 0 60px;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-container {
    padding-bottom: 5px;
  }

  .btn-outline-post {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   62. PPIC DAFTAR INFORMASI PUBLIK - HERO SECTION
   ========================================================================= */
.ppic-dafinfo-hero {
  background-color: #0d233a; /* Warna biru gelap navy sesuai mockup */
  padding: 180px 0 40px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.ppic-dafinfo-hero-container {
  max-width: 900px; /* Dibatasi agar paragraf tidak memanjang ke ujung layar */
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografi Judul */
.ppic-dafinfo-hero-title {
  color: #ffffff; /* Teks putih murni */
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Tipografi Deskripsi */
.ppic-dafinfo-hero-desc {
  color: #f1f5f9; /* Putih keabu-abuan agar nyaman dibaca / tidak menyilaukan */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
  max-width: 800px; /* Lebar teks dikunci agar patahan kalimatnya rapi */
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-dafinfo-hero {
    padding: 80px 0;
  }

  .ppic-dafinfo-hero-title {
    font-size: 42px;
  }

  .ppic-dafinfo-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .ppic-dafinfo-hero {
    padding: 60px 0;
  }

  .ppic-dafinfo-hero-title {
    font-size: 34px;
  }

  .ppic-dafinfo-hero-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================================================================
   63. PPIC DAFTAR INFORMASI PUBLIK - MAIN CONTENT
   ========================================================================= */
.ppic-daf-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-daf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== ACCORDION ITEM ================== */
.daf-accordion-item {
  border: 1px solid #eef2f6;
  border-radius: 12px;
  margin-bottom: 24px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(18, 40, 60, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.daf-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(18, 40, 60, 0.06);
}

.daf-accordion-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.daf-accordion-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #00305b;
  display: flex;
  align-items: center;
  gap: 12px;
}

.daf-accordion-header h3 i {
  color: #fdbb11;
  font-size: 24px;
}

.daf-accordion-header .arrow-icon {
  color: #fdbb11;
  font-size: 18px;
  transition: transform 0.4s ease;
}

.daf-accordion-item.active .daf-accordion-header {
  border-bottom: 1px solid #eef2f6;
  background-color: #fcfdfe;
}

.daf-accordion-content {
  padding: 30px;
  display: none;
  background-color: #ffffff;
}

.daf-desc {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 25px;
}

/* ================== FILTER HORIZONTAL (INFORMASI BERKALA) ================== */
.berkala-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
}

.filter-btn {
  background-color: #f1f5f9;
  color: #4a5b6d;
  border: none;
  padding: 10px 20px;
  border-radius: 999px; /* Bentuk pill bulat sesuai mockup */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  color: #94a3b8;
  font-size: 14px;
}

.filter-btn:hover {
  background-color: #e2e8f0;
}

.filter-btn.active {
  background-color: #00305b;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 48, 91, 0.2);
}

.filter-btn.active i {
  color: #00cc88; /* Aksen hijau kebiruan pada icon aktif seperti mockup */
}

/* ================== TABEL & DATATABLES ================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* DataTables Top Bar (Tampilkan & Cari) */
.datatables-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #4a5b6d;
}

.datatables-top-bar select,
.datatables-top-bar input {
  padding: 6px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  color: #1a2f44;
}

.datatables-top-bar input {
  margin-left: 8px;
}

/* DataTables Bottom Bar (Info & Paginate) */
.datatables-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  color: #4a5b6d;
}

.dataTables_paginate {
  display: flex;
  gap: 5px;
}

.paginate_button {
  padding: 6px 12px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #4a5b6d;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.paginate_button:hover:not(.disabled) {
  background-color: #f1f5f9;
}

.paginate_button.current {
  background-color: #f1f5f9;
  font-weight: bold;
}

.paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Desain Tabel Utama */
.daf-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.daf-info-table th {
  background-color: #ffffff; /* Mockup menggunakan background putih */
  color: #1a2f44;
  font-size: 13px;
  font-weight: 800;
  padding: 16px 20px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid #eef2f6; /* Garis bawah tebal pada header */
}

/* Icon Sorting DataTables */
.daf-info-table th.sorting {
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.daf-info-table th.sorting::after {
  content: "\f0dc"; /* FontAwesome sort icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 8px;
  color: #cbd5e1;
}

.daf-info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #eef2f6;
  color: #4a5b6d;
  font-size: 14px;
  vertical-align: middle;
}

.daf-info-table tr.even td {
  background-color: #fafbfc; /* Striping zebra halus */
}

.daf-info-table tr:hover td {
  background-color: #f1f5f9;
}

/* ================== BADGES & TOMBOL AKSI ================== */
.daf-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-green {
  background-color: #e6f4ea;
  color: #1e8e3e;
}

.badge-yellow {
  background-color: #fef7e0;
  color: #e65100;
}

.badge-red {
  background-color: #fce8e6;
  color: #c5221f;
}

.action-icons-group {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.daf-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Membulat sesuai mockup */
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.preview-btn {
  background-color: #eef2f6;
  color: #00305b;
}

.preview-btn:hover {
  background-color: #00305b;
  color: #ffffff;
}

.download-btn {
  background-color: #fdbb11;
  color: #00305b;
}

.download-btn:hover {
  background-color: #e5a80f;
}

/* ================== ELEMEN PELENGKAP ================== */
.daf-small-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 20px;
}

.daf-table-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.4;
}

.daf-info-box {
  margin-top: 25px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.daf-info-box i {
  font-size: 18px;
  margin-top: 2px;
}

.daf-info-box.warning {
  background-color: #f8f9fa;
  color: #4a5b6d;
  border-left: 4px solid #94a3b8;
}

.daf-info-box.highlight {
  background-color: #fffbef;
  color: #5c4302;
  border-left: 4px solid #fdbb11;
}

.daf-info-box.highlight i {
  color: #fdbb11;
}

.daf-cta-wrapper {
  margin-top: 30px;
  text-align: center;
}

.daf-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 187, 17, 0.2);
}

.daf-btn-primary:hover {
  background-color: #00305b;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 48, 91, 0.15);
}

/* ================== MEDIA QUERIES ================== */
@media (max-width: 768px) {
  .datatables-top-bar,
  .datatables-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .ppic-daf-section {
    padding: 40px 0;
  }

  .daf-accordion-header {
    padding: 20px;
  }

  .daf-accordion-header h3 {
    font-size: 18px;
  }

  .daf-accordion-content {
    padding: 20px 15px;
  }

  .filter-sidebar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .filter-sidebar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .daf-info-table th,
  .daf-info-table td {
    padding: 12px 15px;
    font-size: 13px;
  }

  .daf-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   64. PPIC PPID FOOTER CTA SECTION
   ========================================================================= */
.ppic-footer-cta {
  background-color: #0d233a; /* Warna biru navy gelap PPI */
  padding: 120px 0 40px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #ffffff;
}

.ppic-footer-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.ppic-footer-cta h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}

.ppic-footer-cta p {
  font-size: 17px;
  color: #e2e8f0; /* Putih keabu-abuan agar tidak menyilaukan */
  line-height: 1.6;
  margin: 0 0 35px;
}

/* Container untuk tombol */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Tombol 1 (Primary Kuning Pill) */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #fdbb11;
}

.btn-cta-primary:hover {
  background-color: #e5a80f;
  border-color: #e5a80f;
  color: #00305b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 187, 17, 0.2);
}

/* Tombol 2 & 3 (Teks Putih) Sesuai Mockup */
.btn-cta-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Efek garis bawah halus saat dihover */
.btn-cta-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #fdbb11;
  transition: width 0.3s ease;
}

.btn-cta-link:hover {
  color: #fdbb11;
  text-decoration: none;
}

.btn-cta-link:hover::after {
  width: 100%;
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 768px) {
  .ppic-footer-cta {
    padding: 60px 0;
  }

  .ppic-footer-cta h2 {
    font-size: 28px;
  }

  .ppic-footer-cta p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .btn-cta-primary {
    width: 100%;
    min-width: 250px;
  }
}
/* =========================================================================
   65. PPIC LAPORAN LAYANAN INFORMASI - HERO SECTION
   ========================================================================= */
.ppic-laporan-hero {
  background-color: #0d233a; /* Warna biru gelap navy sesuai mockup */
  padding: 180px 0 40px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.ppic-laporan-hero-container {
  max-width: 900px; /* Dibatasi agar paragraf tidak memanjang ke ujung layar */
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografi Judul */
.ppic-laporan-hero-title {
  color: #ffffff; /* Teks putih murni */
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Tipografi Deskripsi */
.ppic-laporan-hero-desc {
  color: #f1f5f9; /* Putih keabu-abuan agar nyaman dibaca / tidak menyilaukan */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
  max-width: 800px; /* Lebar teks dikunci agar patahan kalimatnya rapi */
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-laporan-hero {
    padding: 80px 0;
  }

  .ppic-laporan-hero-title {
    font-size: 42px;
  }

  .ppic-laporan-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .ppic-laporan-hero {
    padding: 60px 0;
  }

  .ppic-laporan-hero-title {
    font-size: 34px;
  }

  .ppic-laporan-hero-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================================================================
   66. PPIC LAPORAN TAHUNAN & STATISTIK GRID
   ========================================================================= */
.ppic-lapstat-section {
  padding: 120px 0 40px;
  background-color: #f8fafc; /* Latar abu-abu sangat muda pemisah section */
  font-family: "Inter", sans-serif;
}

.ppic-lapstat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lapstat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* ================== KARTU UMUM ================== */
.lapstat-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Efek Hover Melayang (Floating) */
.lapstat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.lapstat-title {
  color: #00305b;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.lapstat-desc {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 25px;
}

/* ================== KARTU 1: TABEL LAPORAN ================== */
/* Icon Kotak Kuning Khas */
.lapstat-icon {
  background-color: #fdbb11;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.lapstat-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  flex-grow: 1; /* Mendorong tombol arsip ke paling bawah */
}

.lapstat-table {
  width: 100%;
  border-collapse: collapse;
}

.lapstat-table th {
  color: #00305b;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 10px;
  text-align: left;
  border-bottom: 2px solid #eef2f6;
  white-space: nowrap;
}

.lapstat-table td {
  padding: 18px 10px;
  border-bottom: 1px solid #eef2f6;
  vertical-align: middle;
}

.lapstat-table tr:last-child td {
  border-bottom: none;
}

.col-tahun {
  color: #4a5b6d;
  font-size: 14px;
  font-weight: 600;
}

.col-judul {
  color: #1a2f44;
  font-size: 14px;
}

/* Tombol Download PDF Kecil di Tabel */
.btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f1f5f9;
  color: #00305b;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-pdf-download:hover {
  background-color: #e2e8f0;
  color: #00305b;
}

/* Tombol Arsip Lengkap */
.lapstat-footer-action {
  margin-top: auto;
}

.btn-arsip-lengkap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00305b;
  background-color: transparent;
  border: 2px solid #00305b;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-arsip-lengkap:hover {
  background-color: #00305b;
  color: #ffffff;
}

/* ================== KARTU 2: STATISTIK & GRAFIK ================== */
.lapstat-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.stat-item {
  background-color: #f8fafc;
  padding: 24px 15px;
  border-radius: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.stat-item:hover {
  background-color: #f1f5f9;
}

.stat-number {
  color: #00305b;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.lapstat-chart-container {
  position: relative;
  height: 280px; /* Tinggi canvas chart terkontrol */
  width: 100%;
  margin-bottom: 15px;
  flex-grow: 1;
}

.lapstat-chart-note {
  color: #64748b;
  font-size: 13px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lapstat-chart-note i {
  color: #94a3b8;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .lapstat-grid {
    grid-template-columns: 1fr; /* Turun jadi 1 kolom di Tablet */
  }

  .lapstat-card {
    padding: 35px 30px;
  }
}

@media (max-width: 575px) {
  .ppic-lapstat-section {
    padding: 50px 0;
  }

  .lapstat-card {
    padding: 30px 20px;
  }

  .lapstat-title {
    font-size: 22px;
  }

  .lapstat-stats-row {
    grid-template-columns: 1fr; /* Stat bertumpuk ke bawah di HP */
    gap: 10px;
  }

  .stat-item {
    padding: 20px;
  }
}

/* =========================================================================
   67. PPIC LAYANAN INFORMASI - HERO SECTION
   ========================================================================= */
.ppic-layanan-hero {
  background-color: #0d233a; /* Biru Navy khas PPI Curug */
  padding: 180px 0 40px;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.layanan-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Teks lebih lebar sedikit dibanding kartu */
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== KOLOM KIRI: KONTEN TEKS ================== */
.layanan-hero-content h1 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.layanan-hero-content p {
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 90%;
}

/* ================== KOLOM KANAN: KARTU JADWAL ================== */
.layanan-schedule-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.layanan-schedule-card h3 {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  position: relative;
}

/* Garis Kuning di Sebelah Kiri Judul Kartu */
.layanan-schedule-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #fdbb11;
  border-radius: 4px;
}

.layanan-schedule-card h3 i {
  color: #fdbb11;
  font-size: 22px;
}

/* List Jadwal */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e2e8f0;
}

.schedule-list .schedule-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-day {
  color: #00305b;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.schedule-day i {
  color: #fdbb11;
  font-size: 16px;
  width: 18px;
  text-align: center;
}

.schedule-time,
.break-time {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-time i,
.break-time i {
  color: #94a3b8;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.break-time i {
  color: #7dd3fc; /* Biru muda kotak */
  font-size: 12px;
}

/* Status Tutup */
.schedule-time.closed {
  color: #5b21b6; /* Warna ungu/indigo sesuai mockup */
  font-weight: 700;
}

.schedule-time.closed i {
  color: #5b21b6;
  font-size: 16px;
}

/* Catatan Bawah */
.schedule-note {
  margin-top: 30px;
  background-color: #fff6f0; /* Latar orange super pudar */
  color: #b45309; /* Teks orange gelap */
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: center;
}

.schedule-note i {
  color: #f59e0b;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .layanan-hero-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di Tablet */
    gap: 40px;
  }

  .layanan-hero-content {
    text-align: center;
  }

  .layanan-hero-content p {
    margin: 0 auto;
    max-width: 100%;
  }

  .layanan-schedule-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .ppic-layanan-hero {
    padding: 60px 0;
  }

  .layanan-hero-content h1 {
    font-size: 34px;
  }

  .layanan-hero-content p {
    font-size: 16px;
  }

  .layanan-schedule-card {
    padding: 30px 20px;
  }

  .schedule-note {
    text-align: left;
  }
}

/* =========================================================================
   68. PPIC MAKLUMAT PELAYANAN & STANDAR BIAYA SECTION
   ========================================================================= */
.ppic-maklumat-section {
  background-color: #f8fafc; /* Latar abu-abu sangat muda / light */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-maklumat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.ppic-maklumat-header {
  margin-bottom: 50px;
  text-align: left;
}

.ppic-maklumat-header .section-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.title-accent {
  width: 60px;
  height: 4px;
  background-color: #fdbb11;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ppic-maklumat-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* ================== GRID & KARTU GAMBAR ================== */
.ppic-maklumat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.maklumat-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.maklumat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

/* Bagian Gambar (Sertifikat) */
.maklumat-image {
  width: 100%;
  padding: 30px 30px 10px; /* Jarak agar gambar piagam terlihat proporsional di dalam kartu */
  display: flex;
  justify-content: center;
  align-items: center;
}

.maklumat-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Memberikan sedikit lengkungan jika gambarnya kaku */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Opsional, membuat gambar lebih terpisah dari background putih card */
}

/* Bagian Teks Kartu */
.maklumat-content {
  padding: 10px 30px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.maklumat-content h3 {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}

.maklumat-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .ppic-maklumat-grid {
    grid-template-columns: 1fr; /* Tumpuk 1 kolom di Tablet & HP */
    gap: 40px;
  }

  .maklumat-image {
    padding: 30px 40px 10px;
  }
}

@media (max-width: 575px) {
  .ppic-maklumat-section {
    padding: 60px 0;
  }

  .ppic-maklumat-header .section-title {
    font-size: 26px;
  }

  .maklumat-image {
    padding: 25px 20px 10px;
  }

  .maklumat-content {
    padding: 10px 20px 30px;
  }

  .maklumat-content h3 {
    font-size: 18px;
  }
}

/* =========================================================================
   69. PPIC PERMINTAAN INFORMASI SECTION
   ========================================================================= */
.ppic-permintaan-section {
  padding: 120px 0 40px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.ppic-permintaan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.permintaan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* ================== KARTU UMUM ================== */
.permintaan-card {
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Efek Hover Melayang (Floating) */
.permintaan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.permintaan-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.3;
}

/* Ikon Kotak */
.permintaan-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
}

.icon-yellow {
  background-color: #fdbb11;
  color: #ffffff;
}

.icon-yellow-transparent {
  background-color: rgba(253, 187, 17, 0.15); /* Kuning tipis */
  color: #fdbb11;
}

/* ================== CARD KIRI (PUTIH) ================== */
.card-light {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
}

.card-light .permintaan-title {
  color: #00305b;
}

.permintaan-desc {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 30px;
}

/* List Langkah-Langkah (Kiri) */
.permintaan-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.permintaan-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #fdbb11;
  color: #00305b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
}

.step-text {
  color: #1a2f44;
  font-size: 14.5px;
  line-height: 1.5;
}

/* ================== CARD KANAN (BIRU NAVY) ================== */
.card-dark {
  background-color: #00305b;
  color: #ffffff;
  border: none;
  justify-content: space-between; /* Membuat footer selalu di bawah */
}

.text-white {
  color: #ffffff !important;
}

/* List Catatan Penting (Kanan) */
.permintaan-notes {
  list-style: disc;
  padding-left: 20px;
  margin: 25px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.permintaan-notes li {
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer Card Kanan (QR & CTA) */
.card-dark-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.qr-box {
  background-color: transparent;
}

.qr-box img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background-color: #fff;
  padding: 4px;
  display: block;
}

.qr-box p {
  color: #e2e8f0;
  font-size: 11px;
  margin: 8px 0 0;
}

/* Tombol CTA Kuning */
.btn-cta-kuning {
  background-color: #fdbb11;
  color: #00305b;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-cta-kuning:hover {
  background-color: #e5a80f;
  color: #00305b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 187, 17, 0.2);
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .permintaan-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di layar Tablet/HP */
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-permintaan-section {
    padding: 60px 0;
  }

  .permintaan-card {
    padding: 35px 25px;
  }

  .card-dark-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .btn-cta-kuning {
    width: 100%;
  }
}

/* =========================================================================
   70. PPIC ALUR PERMINTAAN INFORMASI SECTION
   ========================================================================= */
.ppic-alur-section {
  background-color: #f8fafc; /* Latar abu-abu sangat muda pemisah section */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-alur-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.ppic-alur-header {
  margin-bottom: 50px;
  text-align: left;
}

.ppic-alur-header .section-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.ppic-alur-header .title-accent {
  width: 60px;
  height: 4px;
  background-color: #fdbb11; /* Garis kuning khas PPI */
  border-radius: 4px;
  margin-bottom: 20px;
}

.ppic-alur-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* ================== GRID & KARTU ATAS ================== */
.alur-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.alur-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #f1f5f9;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Efek Hover Melayang (Floating) */
.alur-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.alur-title {
  color: #00305b;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 25px;
  line-height: 1.3;
}

/* Ikon Styling */
.alur-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Kartu 1: Icon Kuning tanpa background Solid */
.icon-transparent i {
  color: #fdbb11;
  font-size: 32px;
}

/* Kartu 2: Background Kuning Solid, Icon Putih */
.icon-solid {
  background-color: #fdbb11;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
}

/* ================== LIST KARTU 1 (ANGKA) ================== */
.alur-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alur-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #fdbb11;
  color: #00305b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.step-text {
  color: #1a2f44;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================== LIST KARTU 2 (BULLET) ================== */
.alur-bullets {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alur-bullets li {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.6;
}

.alur-bullets li strong {
  color: #1a2f44;
  font-weight: 700;
}

/* ================== GAMBAR DIAGRAM BAWAH ================== */
.alur-image-wrapper {
  margin-top: 50px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(18, 40, 60, 0.05); /* Shadow halus agar terlihat seperti kartu */
  border: 1px solid #f1f5f9;
  overflow: hidden;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alur-image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain; /* Menjaga agar gambar alur yang melebar tidak terpotong */
  display: block;
  border-radius: 8px;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .alur-grid {
    grid-template-columns: 1fr; /* Tumpuk 1 kolom di Tablet & HP */
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-alur-section {
    padding: 60px 0;
  }

  .ppic-alur-header .section-title {
    font-size: 26px;
  }

  .alur-card {
    padding: 35px 25px;
  }

  .alur-title {
    font-size: 18px;
  }

  .alur-image-wrapper {
    padding: 10px; /* Kurangi padding untuk layar kecil agar gambar lebih penuh */
  }
}

/* =========================================================================
   71. PPIC PROSEDUR KEBERATAN SECTION
   ========================================================================= */
.ppic-keberatan-section {
  background-color: #ffffff; /* Latar putih murni */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-keberatan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.ppic-keberatan-header {
  margin-bottom: 50px;
  text-align: left;
}

.ppic-keberatan-header .section-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.ppic-keberatan-header .title-accent {
  width: 60px;
  height: 4px;
  background-color: #fdbb11;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ppic-keberatan-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* ================== GRID LAYOUT ================== */
.keberatan-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Kolom kiri (gambar) sedikit lebih lebar */
  gap: 40px;
  align-items: start; /* Menyusun dari atas */
}

/* ================== KOLOM KIRI (GAMBAR) ================== */
.keberatan-image-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(18, 40, 60, 0.05);
  border: 1px solid #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: sticky;
  top: 100px; /* Membuat gambar tetap terlihat saat scroll ke bawah di layar besar */
}

.keberatan-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(18, 40, 60, 0.08);
}

.keberatan-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ================== KOLOM KANAN (STACK KARTU) ================== */
.keberatan-stack-col {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Jarak antar kartu */
}

.keberatan-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #f1f5f9;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.keberatan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.keberatan-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(253, 187, 17, 0.15); /* Background transparan kuning */
}

.keberatan-icon i {
  color: #fdbb11;
  font-size: 22px;
}

.keberatan-card-title {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 25px;
  line-height: 1.3;
}

/* ================== DAFTAR LANGKAH (KARTU 1) ================== */
.keberatan-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.keberatan-steps li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.keberatan-steps .step-number {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #fdbb11;
  color: #00305b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.keberatan-steps .step-text {
  color: #1a2f44;
  font-size: 14.5px;
  line-height: 1.6;
}

.keberatan-steps .step-text strong {
  color: #00305b;
  font-weight: 700;
}

/* ================== DAFTAR BULLET (KARTU 2) ================== */
.keberatan-bullets {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.keberatan-bullets li {
  color: #4a5b6d;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Tombol CTA */
.keberatan-btn-wrapper {
  margin-top: 30px;
}

.btn-cta-kuning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-cta-kuning:hover {
  background-color: #e5a80f;
  color: #00305b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(253, 187, 17, 0.2);
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .keberatan-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di layar sedang/kecil */
    gap: 40px;
  }

  .keberatan-image-wrapper {
    position: static; /* Hilangkan sticky di mobile */
  }
}

@media (max-width: 575px) {
  .ppic-keberatan-section {
    padding: 60px 0;
  }

  .ppic-keberatan-header .section-title {
    font-size: 26px;
  }

  .keberatan-card {
    padding: 30px 20px;
  }

  .keberatan-card-title {
    font-size: 18px;
  }

  .btn-cta-kuning {
    width: 100%;
  }
}

/* =========================================================================
   72. PPIC PROSEDUR SENGKETA SECTION
   ========================================================================= */
.ppic-sengketa-section {
  background-color: #f8fafc; /* Latar light / abu-abu muda */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-sengketa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.ppic-sengketa-header {
  margin-bottom: 50px;
  text-align: left;
}

.ppic-sengketa-header .section-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.ppic-sengketa-header .title-accent {
  width: 60px;
  height: 4px;
  background-color: #fdbb11;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ppic-sengketa-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* ================== GRID LAYOUT ================== */
.sengketa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Kolom kiri (gambar) sedikit lebih lebar */
  gap: 40px;
  align-items: start;
}

/* ================== KOLOM KIRI (GAMBAR) ================== */
.sengketa-image-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(18, 40, 60, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: sticky;
  top: 100px; /* Gambar tetap diam saat scroll */
}

.sengketa-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(18, 40, 60, 0.08);
}

.sengketa-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ================== KOLOM KANAN (STACK KARTU) ================== */
.sengketa-stack-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sengketa-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #e2e8f0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.sengketa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.sengketa-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(253, 187, 17, 0.15); /* Kuning tipis */
}

.sengketa-icon i {
  color: #fdbb11;
  font-size: 22px;
}

.sengketa-card-title {
  color: #00305b;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 25px;
  line-height: 1.3;
}

/* ================== DAFTAR LANGKAH (KARTU 1) ================== */
.sengketa-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sengketa-steps li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.sengketa-steps .step-number {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #fdbb11;
  color: #00305b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.sengketa-steps .step-text {
  color: #1a2f44;
  font-size: 14.5px;
  line-height: 1.6;
}

.sengketa-steps .step-text strong {
  color: #00305b;
  font-weight: 700;
}

/* ================== PARAGRAF ALAMAT (KARTU 2) ================== */
.sengketa-address {
  color: #4a5b6d;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.sengketa-address strong {
  color: #1a2f44;
  font-weight: 700;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .sengketa-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di layar sedang/kecil */
    gap: 40px;
  }

  .sengketa-image-wrapper {
    position: static; /* Hilangkan sticky di mobile */
  }
}

@media (max-width: 575px) {
  .ppic-sengketa-section {
    padding: 60px 0;
  }

  .ppic-sengketa-header .section-title {
    font-size: 26px;
  }

  .sengketa-card {
    padding: 30px 20px;
  }

  .sengketa-card-title {
    font-size: 18px;
  }
}

/* =========================================================================
   73. PPIC PROFIL - HERO SECTION
   ========================================================================= */
.ppic-profil-hero {
  background-color: #0d233a; /* Warna biru gelap navy sesuai mockup */
  padding: 180px 0 40px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.ppic-profil-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografi Judul */
.ppic-profil-hero-title {
  color: #ffffff; /* Teks putih murni */
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Tipografi Deskripsi */
.ppic-profil-hero-desc {
  color: #f1f5f9; /* Putih keabu-abuan */
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
  max-width: 800px; /* Lebar teks dikunci agar tidak melebar terlalu jauh */
}

/* =========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================= */
@media (max-width: 991px) {
  .ppic-profil-hero {
    padding: 80px 0;
  }

  .ppic-profil-hero-title {
    font-size: 42px;
  }

  .ppic-profil-hero-desc {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .ppic-profil-hero {
    padding: 60px 0;
  }

  .ppic-profil-hero-title {
    font-size: 34px;
  }

  .ppic-profil-hero-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* =========================================================================
   74. PPIC PROFIL PPID (KONTEN) SECTION
   ========================================================================= */
.ppic-profil-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Latar putih */
  font-family: "Inter", sans-serif;
}

.ppic-profil-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.profil-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* ================== KARTU UMUM ================== */
.profil-card {
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Efek Hover Melayang */
.profil-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

/* ================== KARTU KIRI (PUTIH) ================== */
.card-light {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
}

.profil-title {
  color: #00305b;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 25px;
  line-height: 1.3;
}

.profil-text-content {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.8;
}

.profil-text-content p {
  margin-bottom: 20px;
}

.profil-text-content p:last-child {
  margin-bottom: 0;
}

.profil-text-content em {
  font-style: italic;
}

/* ================== KARTU KANAN (BIRU NAVY) ================== */
.card-dark {
  background-color: #00305b;
  color: #ffffff;
  border: none;
  justify-content: space-between; /* Pisahkan konten atas dan tombol bawah */
}

.profil-icon {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.icon-yellow-transparent {
  background-color: rgba(253, 187, 17, 0.15); /* Kuning transparan */
  color: #fdbb11;
  font-size: 24px;
}

.card-dark-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 25px;
  line-height: 1.3;
}

/* List Checkmark Dasar Hukum */
.profil-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profil-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.6;
}

.profil-check-list li i {
  color: #ffffff;
  font-size: 13px;
  margin-top: 5px; /* Selaraskan posisi ikon dengan baris pertama teks */
  flex-shrink: 0;
}

/* Tombol CTA Bawah */
.card-dark-footer {
  margin-top: 40px;
}

.btn-cta-kuning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 14.5px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-cta-kuning:hover {
  background-color: #e5a80f;
  color: #00305b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 187, 17, 0.2);
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .profil-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di layar sedang/kecil */
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-profil-section {
    padding: 60px 0;
  }

  .profil-card {
    padding: 35px 25px;
  }

  .profil-title {
    font-size: 24px;
  }

  .card-dark-title {
    font-size: 22px;
  }

  .btn-cta-kuning {
    width: 100%;
  }
}

/* =========================================================================
   75. PPIC STRUKTUR ORGANISASI SECTION
   ========================================================================= */
.ppic-struktur-section {
  background-color: #f8fafc; /* Latar abu-abu sangat muda (light) */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-struktur-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.ppic-struktur-header {
  margin-bottom: 50px;
  text-align: left;
}

.ppic-struktur-header .section-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.ppic-struktur-header .title-accent {
  width: 60px;
  height: 4px;
  background-color: #fdbb11;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ppic-struktur-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* ================== GRID KARTU PROFIL ================== */
.struktur-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.struktur-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden; /* Penting agar background oranye melengkung ikuti card */
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.struktur-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

/* Bagian Foto dengan Background Oranye */
.profile-photo-wrapper {
  background-color: #f68b33; /* Warna Oranye sesuai Mockup */
  width: 100%;
  padding-top: 30px; /* Jarak atas kepala ke batas card */
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Supaya badan/baju nempel di batas bawah blok oranye */
}

.profile-photo-wrapper img {
  max-width: 85%;
  height: auto;
  object-fit: cover;
  display: block;
  /* Tambahkan efek shadow pada orangnya agar terlihat lebih pop-up */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

/* Fallback jika tidak ada foto */
.photo-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.5);
}

/* Bagian Teks di bawah foto */
.profile-info {
  background-color: #ffffff;
  padding: 30px 20px 40px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-role {
  color: #00305b;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px;
}

.profile-name {
  color: #00305b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-position {
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.5;
}

/* ================== TOMBOL ACCORDION BAGAN ================== */
.struktur-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #00305b; /* Biru Navy */
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 999px; /* Bentuk Pill */
  border: none;
  width: 100%;
  max-width: 900px;
  margin: 50px auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.struktur-accordion-btn:hover {
  background-color: #0a3d6d;
}

.transition-icon {
  transition: transform 0.3s ease;
}

/* ================== GAMBAR BAGAN STRUKTUR (HIDDEN DEFAULT) ================== */
.struktur-image-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.6s ease-in-out,
    opacity 0.4s ease-in-out;
  padding-top: 0;
}

/* Class 'show' dipicu via JavaScript */
.struktur-image-collapse.show {
  max-height: 2000px; /* Dibuat besar untuk antisipasi gambar tinggi */
  opacity: 1;
  padding-top: 30px;
}

.struktur-image-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(18, 40, 60, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
}

.struktur-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .struktur-grid {
    grid-template-columns: repeat(
      2,
      minmax(0, 1fr)
    ); /* Jadi 2 kolom di tablet */
  }
}

@media (max-width: 768px) {
  .struktur-grid {
    grid-template-columns: 1fr; /* Jadi 1 kolom bertumpuk di HP */
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .ppic-struktur-section {
    padding: 60px 0;
  }

  .ppic-struktur-header .section-title {
    font-size: 26px;
  }

  .struktur-image-card {
    padding: 20px 15px;
  }

  .struktur-accordion-btn {
    font-size: 14.5px;
  }
}

/* =========================================================================
   76. PPIC VISI & MISI SECTION
   ========================================================================= */
.ppic-visimisi-section {
  background-color: #f8fafc; /* Latar abu-abu terang */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-visimisi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.visimisi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch; /* Memastikan kedua card tingginya sejajar */
}

/* ================== KARTU UMUM ================== */
.visimisi-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #e2e8f0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.visimisi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

.visimisi-icon {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(253, 187, 17, 0.15); /* Latar kuning transparan */
}

.visimisi-icon i {
  color: #fdbb11;
  font-size: 24px;
}

.visimisi-title {
  color: #00305b;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.3;
}

/* ================== TEKS & LIST ================== */
.visimisi-text {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0;
}

.visimisi-text em {
  font-style: italic;
  font-weight: 500;
  color: #1e293b;
}

.visimisi-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visimisi-list li {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.7;
}

.visimisi-list li em {
  font-style: italic;
  font-weight: 500;
  color: #1e293b;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .visimisi-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di layar sedang/kecil */
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-visimisi-section {
    padding: 60px 0;
  }

  .visimisi-card {
    padding: 35px 25px;
  }

  .visimisi-title {
    font-size: 20px;
  }
}

/* =========================================================================
   77. PPIC TUGAS DAN FUNGSI PPID SECTION
   ========================================================================= */
.ppic-tugas-section {
  background-color: #ffffff; /* Latar putih murni */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.ppic-tugas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.ppic-tugas-header {
  margin-bottom: 50px;
  text-align: left;
}

.ppic-tugas-header .section-title {
  color: #00305b;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.3;
}

.ppic-tugas-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

/* ================== GRID & KARTU ================== */
.tugas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch; /* Memastikan kartu kiri dan kanan sejajar tingginya */
}

.tugas-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 8px 30px rgba(18, 40, 60, 0.04);
  border: 1px solid #f1f5f9;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.tugas-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

/* Styling Ikon Kuning */
.tugas-icon {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
}

.tugas-icon i {
  color: #fdbb11;
  font-size: 36px; /* Ikon diperbesar sesuai dengan mockup */
}

.tugas-title {
  color: #00305b;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.3;
}

/* ================== LIST BULLET ================== */
.tugas-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tugas-list li {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .tugas-grid {
    grid-template-columns: 1fr; /* Tumpuk atas bawah di layar sedang/kecil */
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .ppic-tugas-section {
    padding: 60px 0;
  }

  .ppic-tugas-header .section-title {
    font-size: 26px;
  }

  .tugas-card {
    padding: 35px 25px;
  }

  .tugas-title {
    font-size: 20px;
  }
}

/* =========================================================================
   78. PPIC RENTAL - HERO SECTION
   ========================================================================= */
.hero-rental {
  background-color: #0d233a; /* Biru Navy gelap sesuai mockup */
  padding: 180px 0 40px;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.hero-rental-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Teks mendapat porsi ruang sedikit lebih lebar */
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== KOLOM KIRI (TEKS) ================== */
.hero-rental-text h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-rental-text h1 span {
  color: #fdbb11; /* Warna kuning khas PPI */
  display: block; /* Memaksa teks ini turun ke baris baru */
}

.hero-rental-text p {
  color: #e2e8f0; /* Warna putih keabuan agar tidak menyilaukan */
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 35px;
  font-weight: 400;
  max-width: 90%;
}

.btn-rental-cta {
  display: inline-block;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px; /* Tombol bentuk Pill */
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-rental-cta:hover {
  background-color: #e5a80f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 187, 17, 0.25);
  color: #00305b;
}

/* ================== KOLOM KANAN (GAMBAR) ================== */
.hero-rental-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-rental-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px; /* Sesuai mockup, gambar membulat ujungnya */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* Efek melayang */
  object-fit: cover;
  display: block;
}

/* ================== MEDIA QUERIES (RESPONSIVE) ================== */
@media (max-width: 991px) {
  .hero-rental {
    padding: 80px 0;
  }

  .hero-rental-container {
    grid-template-columns: 1fr; /* Tumpuk teks dan gambar di layar sedang/kecil */
    gap: 50px;
    text-align: center;
  }

  .hero-rental-text p {
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .hero-rental-image img {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-rental {
    padding: 60px 0;
  }

  .hero-rental-text h1 {
    font-size: 36px;
  }

  .hero-rental-text p {
    font-size: 16px;
  }

  .btn-rental-cta {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================================
   79. PPIC RENTAL - KATEGORI SEWA SECTION
   ========================================================================= */
.kategori-section {
  background-color: #f8fafc; /* Latar abu-abu terang */
  padding: 120px 0 40px;
  font-family: "Inter", sans-serif;
}

.kategori-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================== HEADER TEKS ================== */
.kategori-header {
  text-align: center;
  margin-bottom: 50px;
}

.kategori-header .section-title {
  color: #00305b;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.3;
}

.kategori-header .section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

/* ================== GRID KATEGORI ================== */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Memusatkan sisa kartu di bawah */
  gap: 30px;
  align-items: stretch; /* Memastikan semua card sama tingginya */
}

/* ================== KARTU KATEGORI ================== */
.category-card {
  width: calc(33.333% - 20px); /* Menentukan lebar 3 kolom */
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(18, 40, 60, 0.04);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column; /* Struktur flex kolom untuk menempatkan tombol di bawah */
  border: 1px solid #eef2f6;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(18, 40, 60, 0.08);
}

/* Bagian Gambar (Atas) */
.card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #e2e8f0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .card-img img {
  transform: scale(1.05); /* Efek zoom tipis saat card di-hover */
}

/* Placeholder jika gambar kosong */
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #cbd5e1;
}

/* Bagian Konten Teks (Bawah) */
.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Mendorong tombol WhatsApp ke ruang terbawah yang tersedia */
}

.card-icon {
  margin-bottom: 16px;
}

.card-icon i {
  color: #fdbb11; /* Ikon kuning */
  font-size: 26px;
}

.card-content h3 {
  color: #00305b;
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.card-content p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 25px;
  flex-grow: 1; /* Area teks mengisi ruang kosong sisa */
}

/* ================== TOMBOL WHATSAPP ================== */
.btn-wa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #25d366; /* Warna hijau khas WhatsApp */
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-wa:hover {
  background-color: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  color: #ffffff;
}

.btn-wa i {
  font-size: 18px;
}

@media (max-width: 991px) {
  .category-card {
    width: calc(50% - 15px); /* Menjadi 2 kolom di layar Tablet */
  }
}

@media (max-width: 767px) {
  .category-grid {
    flex-direction: column;
    align-items: center;
  }
  .category-card {
    width: 100%; /* Menjadi 1 kolom di layar Mobile */
    max-width: 450px;
  }
}

@media (max-width: 575px) {
  .kategori-section {
    padding: 60px 0;
  }

  .kategori-header .section-title {
    font-size: 28px;
  }

  .card-img {
    height: 200px;
  }
}

/* =========================================================================
   80. PPIC RENTAL - HARGA & KETERSEDIAAN (CTA)
   ========================================================================= */
.rental-cta-section {
  padding: 120px 0 40px;
  background-color: #ffffff; /* Sesuai mockup, sekitarnya putih */
  font-family: "Inter", sans-serif;
}

.rental-cta-box {
  background-color: #f4f6f9; /* Abu-abu kebiruan sangat muda */
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Tipografi */
.cta-title {
  color: #00305b;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 15px;
  line-height: 1.3;
}

.cta-desc {
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 35px;
  max-width: 700px;
}

/* ================== TOMBOL CTA ================== */
.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

/* Tombol PDF (Kuning) */
.btn-cta-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fdbb11;
  color: #00305b;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-pdf:hover {
  background-color: #e5a80f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(253, 187, 17, 0.25);
  color: #00305b;
}

/* Tombol WA & Email (Biru Navy) */
.btn-cta-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #00305b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-navy:hover {
  background-color: #00427a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 48, 91, 0.25);
  color: #ffffff;
}

.cta-buttons-wrapper i {
  font-size: 16px;
}

/* ================== INFO FOOTER ================== */
.cta-footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #4a5b6d;
  font-size: 14px;
}

.cta-footer-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-footer-info .separator {
  color: #cbd5e1; /* Garis pemisah abu-abu muda */
}

/* ================== MEDIA QUERIES ================== */
@media (max-width: 768px) {
  .rental-cta-box {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-buttons-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px;
  }

  .btn-cta-pdf,
  .btn-cta-navy {
    width: 100%;
    justify-content: center;
  }

  .cta-footer-info {
    flex-direction: column;
    gap: 8px;
  }

  .cta-footer-info .separator {
    display: none; /* Sembunyikan separator jika ditumpuk */
  }
}
