/**

* =========================================================
* CUSTOM CSS - SPMB / PPDB MODERN
* Theme : Emerald Green
* Framework : Stisla + Bootstrap
* =========================================================
*
* Catatan:
* * Jangan mengubah default JavaScript.
* * CSS ini disesuaikan dengan index.php dan home.php.
* * Tidak menggunakan blok kode lama yang sudah tidak dipakai.
    */

/* =========================================================
ROOT VARIABLES
========================================================= */

:root {
  --ppdb-primary: #16a34a;
  --ppdb-primary-dark: #15803d;
  --ppdb-primary-deep: #166534;
  --ppdb-primary-light: #f0fdf4;
  --ppdb-primary-soft: #dcfce7;
  --ppdb-accent: #22c55e;

  --ppdb-secondary: #14532d;

  --ppdb-text: #17231b;
  --ppdb-muted: #64748b;
  --ppdb-border: #e2e8f0;
  --ppdb-bg: #f7faf8;

  --ppdb-white: #ffffff;
  --ppdb-radius: 18px;

  --ppdb-shadow:
    0 10px 30px rgba(20, 83, 45, 0.08);
}

/* =========================================================
GLOBAL / BODY
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg,
      #f7faf8 0%,
      #f8fafc 100%) !important;

  color: var(--ppdb-text);
  font-family: "Nunito", "Segoe UI", sans-serif;
}

.main-wrapper.container {
  max-width: 1400px;
  background: transparent;
}

.main-content {
  min-height: 500px;
  padding-top: 5px !important;
}

.section {
  margin-top: 0 !important;
}

#isi_load {
  opacity: 1;
  margin-top: 0;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* =========================================================
LINK
========================================================= */

a {
  color: var(--ppdb-primary);
}

a:hover {
  color: var(--ppdb-primary-dark);
}

/* =========================================================
PPDB NAVBAR
========================================================= */

.ppdb-navbar {
  position: sticky !important;
  top: 12px !important;
  z-index: 9999 !important;

  width: 100%;

  margin: 12px 0 25px;

  background:
    linear-gradient(135deg,
      #047857 0%,
      #059669 50%,
      #10b981 100%);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;

  box-shadow:
    0 10px 30px rgba(5, 150, 105, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.ppdb-navbar:hover {
  box-shadow:
    0 14px 35px rgba(5, 150, 105, 0.30),
    0 5px 12px rgba(0, 0, 0, 0.08);
}

/* =========================================================
NAVBAR INNER
========================================================= */

.ppdb-navbar-inner {
  min-height: 76px;

  display: flex;
  align-items: center;

  width: 100%;
  padding: 10px 22px;

  background: transparent;
  border: 0;
  border-radius: 18px;
}

/* =========================================================
BRAND
========================================================= */

.ppdb-brand {
  display: flex;
  align-items: center;

  gap: 12px;
  min-width: 220px;

  color: #fff !important;
  text-decoration: none !important;
}

.ppdb-brand-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1px;
  overflow: hidden;
  /*background: #fff;
  border-radius: 12px;
  
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.15);*/
}

.ppdb-brand-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.ppdb-brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.2;
}

.ppdb-brand-text strong {
  color: #fff;

  font-size: 15px;
  font-weight: 800;
}

.ppdb-brand-text span {
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

/* =========================================================
NAVBAR MENU
========================================================= */

.ppdb-menu {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 4px;

  margin-left: auto;

  background: transparent;
}

.ppdb-menu-item {
  position: relative;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 11px 14px;

  border-radius: 10px;

  background: transparent;

  color: rgba(255, 255, 255, 0.88) !important;

  text-decoration: none !important;

  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.ppdb-menu-item i {
  color: rgba(255, 255, 255, 0.80);

  font-size: 13px;

  transition: color 0.25s ease;
}

.ppdb-menu-item:hover {
  color: #fff !important;

  background: rgba(255, 255, 255, 0.16);

  transform: translateY(-1px);
}

.ppdb-menu-item:hover i {
  color: #bbf7d0;
}

/* =========================================================
ACTIVE MENU
========================================================= */

.ppdb-menu-item.active {
  color: var(--ppdb-primary-dark) !important;

  background: #fff;

  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.12);
}

.ppdb-menu-item.active i {
  color: var(--ppdb-primary);
}

/* =========================================================
LOGIN BUTTON
========================================================= */

.ppdb-login {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-left: 8px;
  padding: 10px 16px;

  color: #fff !important;

  background: rgba(255, 255, 255, 0.10);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;

  text-decoration: none !important;

  font-size: 13px;
  font-weight: 700;

  transition: all 0.25s ease;
}

.ppdb-login:hover {
  color: var(--ppdb-primary-dark) !important;

  background: #fff;
  border-color: #fff;

  transform: translateY(-2px);

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.12);
}

/* =========================================================
MOBILE TOGGLE
========================================================= */

.ppdb-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  margin-left: auto;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.10);

  color: #fff;

  cursor: pointer;

  transition: all 0.25s ease;
}

.ppdb-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.20);
}

/* =========================================================
HERO
========================================================= */

.ppdb-hero {
  position: relative;

  width: 100%;
  min-height: 520px;

  margin-bottom: 30px;

  overflow: hidden;

  background: #064e3b;

  border-radius: 24px;

  isolation: isolate;
}

/* =========================================================
HERO SLIDER
========================================================= */

.ppdb-hero-slider {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: -3;
}

.ppdb-hero-slider,
.ppdb-hero-slider .carousel-inner,
.ppdb-hero-slider .carousel-item {
  height: 100%;
}

.ppdb-hero-slider img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  animation:
    ppdbZoom 8s ease-in-out infinite alternate;
}

@keyframes ppdbZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* =========================================================
HERO OVERLAY
========================================================= */

.ppdb-hero-overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background:
    linear-gradient(90deg,
      rgba(2, 44, 34, 0.94) 0%,
      rgba(4, 78, 58, 0.82) 38%,
      rgba(4, 120, 87, 0.45) 70%,
      rgba(0, 0, 0, 0.20) 100%);
}

/* =========================================================
HERO CONTENT
========================================================= */

.ppdb-hero-content {
  position: relative;

  z-index: 3;

  max-width: 760px;

  padding: 75px 60px 70px;

  color: #fff;
}

/* =========================================================
HERO BADGE
========================================================= */

.ppdb-badge {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 9px 16px;
  margin-bottom: 22px;

  border-radius: 50px;

  color: #dcfce7;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 13px;
  font-weight: 600;
}

.ppdb-badge i {
  color: #86efac;
}

/* =========================================================
HERO TITLE
========================================================= */

.ppdb-hero h1 {
  margin: 0;

  color: #fff;

  font-size: 48px;
  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -1px;
}

.ppdb-hero h1 span {
  display: block;

  color: #86efac;
}

/* =========================================================
HERO DESCRIPTION
========================================================= */

.ppdb-hero p {
  max-width: 650px;

  margin: 22px 0 30px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 16px;
  line-height: 1.8;
}

.ppdb-hero p strong {
  color: #fff;
}

/* =========================================================
HERO BUTTONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-wrap: wrap;
}

.hero-actions .btn {
  border-radius: 12px;

  font-weight: 700;

  transition: all 0.25s ease;
}

.btn-hero-primary {
  padding: 13px 23px;

  border: none;
  border-radius: 12px;

  background: var(--ppdb-accent);

  color: #fff;

  box-shadow:
    0 10px 25px rgba(34, 197, 94, 0.30);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);

  background: var(--ppdb-primary);

  color: #fff;

  box-shadow:
    0 15px 30px rgba(34, 197, 94, 0.40);
}

.btn-hero-secondary {
  padding: 12px 22px;

  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.10);

  color: #fff;

  backdrop-filter: blur(8px);

  font-weight: 600;
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.20);

  color: #fff;
}

/* =========================================================
HERO SLIDER INDICATOR
========================================================= */

.ppdb-slider-indicator {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-top: 35px;
}

.ppdb-slider-indicator span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  transition: all 0.3s ease;
}

.ppdb-slider-indicator span.active {
  width: 28px;

  border-radius: 20px;

  background: #86efac;
}

/* =========================================================
HERO DECORATION
========================================================= */

.ppdb-hero-decoration {
  position: absolute;

  right: 60px;
  top: 50%;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  transform: translateY(-50%);

  pointer-events: none;
}

.ppdb-hero-decoration::after {
  content: "🎓";

  position: absolute;

  left: 65px;
  top: 55px;

  font-size: 120px;

  filter:
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.20));
}

/* =========================================================
SCROLL DOWN
========================================================= */

.ppdb-scroll-down {
  position: absolute;

  right: 30px;
  bottom: 25px;

  z-index: 5;

  display: flex;
  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;
}

.ppdb-scroll-down i {
  animation:
    ppdbBounce 1.5s infinite;
}

@keyframes ppdbBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* =========================================================
ALERT / CTA
========================================================= */

.ppdb-alert {
  position: relative;

  overflow: hidden;

  padding: 22px 25px !important;

  border: 0 !important;
  border-radius: 18px !important;

  background:
    linear-gradient(135deg,
      #15803d,
      #16a34a 60%,
      #22c55e) !important;

  color: #fff !important;

  box-shadow:
    0 12px 30px rgba(22, 163, 74, 0.20);
}

.ppdb-alert::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -50px;
  top: -80px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.08);
}

.ppdb-alert::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: 100px;
  bottom: -60px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.06);
}

.ppdb-alert-content {
  position: relative;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.ppdb-alert h5 {
  margin-bottom: 5px;

  color: #fff;

  font-weight: 800;
}

.ppdb-alert p {
  margin: 0;

  color: rgba(255, 255, 255, 0.88);
}

.ppdb-alert .btn {
  position: relative;

  z-index: 3;

  padding: 12px 20px;

  border: 0;
  border-radius: 10px;

  background: #fff;

  color: var(--ppdb-primary);

  font-weight: 800;

  white-space: nowrap;
}

.ppdb-alert .btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   KONSENTRASI KEAHLIAN
========================================================= */

.ppdb-jurusan-card {
  padding: 25px;
}


/* =========================================================
   HEADER KONSENTRASI KEAHLIAN
========================================================= */

.ppdb-jurusan-header {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  text-align: center;
}


/* WRAPPER */

.ppdb-jurusan-header>div {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


/* JUDUL */

.ppdb-jurusan-header h4 {
  width: 100%;

  margin: 5px 0 0;

  color: #0f172a;

  font-size: 21px;
  font-weight: 900;

  text-align: center;
}


/* ICON */

.ppdb-jurusan-header h4 i {
  color: var(--ppdb-primary);
}


/* DESKRIPSI */

.ppdb-jurusan-header p {
  display: block;

  width: 100%;
  max-width: 600px;

  margin: 7px auto 0 !important;
  padding: 0;

  color: var(--ppdb-muted);

  font-size: 13px;
  line-height: 1.6;

  text-align: center !important;
}


/* =========================================================
   MOBILE HEADER KONSENTRASI KEAHLIAN
========================================================= */

@media (max-width: 768px) {

  .ppdb-jurusan-header {
    width: 100%;

    margin-bottom: 20px;

    align-items: center;

    text-align: center;
  }

  .ppdb-jurusan-header>div {
    width: 100%;

    align-items: center;

    text-align: center;
  }

  .ppdb-jurusan-header h4 {
    width: 100%;

    font-size: 20px;

    text-align: center;
  }

  .ppdb-jurusan-header p {
    width: 100%;
    max-width: 100%;

    margin: 7px auto 0 !important;

    font-size: 12px;

    text-align: center !important;
  }

}

/* =========================================================
   CARD KONSENTRASI KEAHLIAN
========================================================= */

.ppdb-jurusan {
  height: 100%;

  padding: 20px;

  background: #fff;

  border: 1px solid var(--ppdb-border);
  border-radius: 16px;

  box-shadow:
    0 5px 18px rgba(20, 83, 45, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ppdb-jurusan:hover {
  transform: translateY(-4px);

  border-color: #bbf7d0;

  box-shadow:
    0 12px 30px rgba(22, 163, 74, 0.10);
}


/* =========================================================
   ICON + JUDUL
========================================================= */

.ppdb-jurusan-title {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 14px;
}

.ppdb-jurusan-title h4 {
  margin: 0;

  color: #0f172a;

  font-size: 16px;
  line-height: 1.35;

  font-weight: 900;
}


/* =========================================================
   ICON
========================================================= */

.ppdb-jurusan-icon {
  width: 48px;
  height: 48px;

  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 20px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.ppdb-jurusan:hover .ppdb-jurusan-icon {
  transform: scale(1.06);
}


/* =========================================================
   WARNA ICON
========================================================= */

.ppdb-jurusan-icon.green {
  color: #15803d;
  background: #dcfce7;
}

.ppdb-jurusan-icon.orange {
  color: #ea580c;
  background: #fff7ed;
}

.ppdb-jurusan-icon.blue {
  color: #2563eb;
  background: #eff6ff;
}

.ppdb-jurusan-icon.purple {
  color: #7c3aed;
  background: #f5f3ff;
}


/* =========================================================
   DESKRIPSI
========================================================= */

.ppdb-jurusan-content {
  width: 100%;
}

.ppdb-jurusan-content p {
  margin: 0;

  color: var(--ppdb-muted);

  font-size: 12px;
  line-height: 1.7;

  text-align: justify;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .ppdb-jurusan {
    padding: 18px;
  }

  .ppdb-jurusan-title {
    gap: 10px;

    margin-bottom: 12px;
  }

  .ppdb-jurusan-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;

    font-size: 18px;
  }

  .ppdb-jurusan-title h4 {
    font-size: 15px;
  }

  .ppdb-jurusan-content p {
    font-size: 12px;
    line-height: 1.65;

    text-align: justify;
  }

}

/* =========================================================
CONTENT CARD
========================================================= */

.ppdb-card {
  padding: 25px;

  background: #fff;

  border: 1px solid var(--ppdb-border);
  border-radius: 18px;

  box-shadow:
    0 5px 20px rgba(15, 23, 42, 0.04);
}

.ppdb-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.ppdb-card-title h4 {
  margin: 0;

  color: #0f172a;

  font-weight: 800;
}

.ppdb-card-title p {
  margin: 4px 0 0;

  color: var(--ppdb-muted);

  font-size: 13px;
}

/* =========================================================
INFORMATION SECTION
========================================================= */

.ppdb-info-section {
  margin-top: 45px;
  margin-bottom: 40px;
}

/* =========================================================
SECTION HEADING
========================================================= */

.ppdb-section-heading {
  max-width: 700px;

  margin: 0 auto 35px;

  text-align: center;
}

.ppdb-eyebrow {
  display: inline-flex;
  align-items: center;

  padding: 7px 14px;
  margin-bottom: 12px;

  border-radius: 50px;

  background: var(--ppdb-primary-light);

  color: var(--ppdb-primary-dark);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;
}

.ppdb-section-heading h2 {
  margin: 0;

  color: #0f172a;

  font-size: 34px;
  font-weight: 900;
}

.ppdb-section-heading h2 span {
  color: var(--ppdb-primary);
}

.ppdb-section-heading p {
  margin-top: 12px;

  color: var(--ppdb-muted);

  line-height: 1.7;
}

/* =========================================================
INFORMATION NAV / TABS
========================================================= */

.ppdb-info-nav {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;

  margin-bottom: 20px;
}

.ppdb-info-tab {
  width: 100%;

  display: flex;
  align-items: center;

  padding: 17px;

  text-align: left;

  cursor: pointer;

  background: #fff;

  border: 1px solid var(--ppdb-border);
  border-radius: 17px;

  box-shadow:
    0 5px 20px rgba(15, 23, 42, 0.035);

  transition: all 0.25s ease;
}

.ppdb-info-tab:hover {
  border-color: #bbf7d0;

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(22, 163, 74, 0.08);
}

.ppdb-info-tab.active {
  background: #052e16;

  border-color: #052e16;

  color: #fff;

  box-shadow:
    0 12px 30px rgba(20, 83, 45, 0.18);
}

.ppdb-info-icon {
  width: 48px;
  height: 48px;

  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 13px;

  border-radius: 13px;

  font-size: 18px;
}

.ppdb-info-icon.blue {
  background: #f0fdf4;
  color: #16a34a;
}

.ppdb-info-icon.orange {
  background: #fff7ed;
  color: #ea580c;
}

.ppdb-info-icon.green {
  background: #ecfdf5;
  color: #059669;
}

.ppdb-info-tab-text {
  flex: 1;
}

.ppdb-info-tab-text strong {
  display: block;

  font-size: 14px;
  font-weight: 800;
}

.ppdb-info-tab-text small {
  display: block;

  margin-top: 3px;

  color: #94a3b8;
}

.ppdb-info-tab .arrow {
  color: #94a3b8;

  font-size: 12px;
}

.ppdb-info-tab.active .ppdb-info-tab-text small {
  color: #94a3b8;
}

.ppdb-info-tab.active .arrow {
  color: #60a5fa;
}

/* =========================================================
INFORMATION PANEL
========================================================= */

.ppdb-info-content {
  padding: 32px;

  background: #fff;

  border: 1px solid var(--ppdb-border);
  border-radius: 22px;

  box-shadow:
    0 8px 30px rgba(15, 23, 42, 0.045);
}

.ppdb-panel {
  display: none;

  animation:
    ppdbFade 0.35s ease;
}

.ppdb-panel.active {
  display: block;
}

@keyframes ppdbFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
PANEL HEADER
========================================================= */

.ppdb-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 30px;
}

.ppdb-panel-label {
  color: var(--ppdb-primary);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1.5px;
}

.ppdb-panel-header h3 {
  margin: 5px 0;

  color: #0f172a;

  font-size: 25px;
  font-weight: 900;
}

.ppdb-panel-header p {
  margin: 0;

  color: var(--ppdb-muted);
}

.ppdb-panel-number {
  width: 70px;
  height: 70px;

  min-width: 70px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(135deg,
      #f0fdf4,
      #dcfce7);

  color: var(--ppdb-primary-dark);
}

.ppdb-panel-number span {
  font-size: 24px;
  font-weight: 900;
}

.ppdb-panel-number small {
  font-size: 8px;
  font-weight: 800;
}

/* =========================================================
TIMELINE
========================================================= */

.ppdb-timeline {
  position: relative;

  padding-left: 15px;
}

.ppdb-timeline::before {
  content: "";

  position: absolute;

  left: 35px;
  top: 20px;
  bottom: 35px;

  width: 2px;

  background:
    linear-gradient(to bottom,
      #16a34a,
      #bbf7d0);
}

.ppdb-timeline-item {
  position: relative;

  padding-left: 75px;
  padding-bottom: 30px;
}

.ppdb-timeline-item.last {
  padding-bottom: 0;
}

.ppdb-timeline-marker {
  position: absolute;

  left: 0;
  top: 0;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--ppdb-primary);

  color: #fff;

  font-size: 11px;
  font-weight: 900;

  z-index: 2;

  box-shadow:
    0 5px 15px rgba(22, 163, 74, 0.25);
}

.ppdb-timeline-marker.success {
  background: var(--ppdb-primary-dark);

  box-shadow:
    0 5px 15px rgba(21, 128, 61, 0.25);
}

.ppdb-timeline-content {
  display: flex;

  gap: 15px;

  padding: 18px;

  background: #f8fafc;

  border: 1px solid var(--ppdb-border);
  border-radius: 16px;

  transition: all 0.25s ease;
}

.ppdb-timeline-content:hover {
  background: #fff;

  border-color: #bbf7d0;

  transform: translateX(4px);

  box-shadow:
    0 10px 25px rgba(22, 163, 74, 0.06);
}

.ppdb-step-icon {
  width: 42px;
  height: 42px;

  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #f0fdf4;

  color: var(--ppdb-primary);
}

.ppdb-step-icon.success {
  background: #dcfce7;

  color: var(--ppdb-primary-dark);
}

.ppdb-step-label {
  color: #94a3b8;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1px;
}

.ppdb-timeline-content h4 {
  margin: 3px 0 5px;

  color: #0f172a;

  font-size: 16px;
  font-weight: 800;
}

.ppdb-timeline-content p {
  margin: 0;

  color: var(--ppdb-muted);

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================================
REQUIREMENT
========================================================= */

.ppdb-requirement {
  display: flex;

  gap: 20px;

  padding: 25px;

  background: #f8fafc;

  border: 1px solid var(--ppdb-border);
  border-radius: 18px;
}

.ppdb-requirement-icon {
  width: 55px;
  height: 55px;

  min-width: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: #f0fdf4;

  color: var(--ppdb-primary);

  font-size: 21px;
}

.ppdb-requirement-content {
  flex: 1;

  color: #475569;

  line-height: 1.8;
}

.ppdb-requirement-content ul {
  padding-left: 20px;
}

.ppdb-requirement-content li {
  margin-bottom: 8px;
}

/* =========================================================
CONTACT CARD
========================================================= */

.ppdb-contact-card {
  height: 100%;

  display: flex;

  gap: 16px;

  padding: 20px;

  background: #f8fafc;

  border: 1px solid var(--ppdb-border);
  border-radius: 17px;

  transition: all 0.25s ease;
}

.ppdb-contact-card:hover {
  background: #fff;

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(15, 23, 42, 0.06);
}

.ppdb-contact-icon {
  width: 48px;
  height: 48px;

  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 18px;
}

.ppdb-contact-icon.blue {
  background: #f0fdf4;
  color: #16a34a;
}

.ppdb-contact-icon.orange {
  background: #fff7ed;
  color: #ea580c;
}

.ppdb-contact-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.ppdb-contact-icon.green {
  background: #dcfce7;
  color: #15803d;
}

.ppdb-contact-card span {
  color: #94a3b8;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1px;
}

.ppdb-contact-card h5 {
  margin: 4px 0;

  color: #0f172a;

  font-size: 15px;
  font-weight: 800;
}

.ppdb-contact-card p {
  margin: 0;

  color: var(--ppdb-muted);

  font-size: 13px;

  line-height: 1.6;
}

.ppdb-contact-card a {
  color: var(--ppdb-primary);

  font-weight: 700;
}

.ppdb-contact-card.whatsapp a {
  color: var(--ppdb-primary);
}

/* =========================================================
MAP
========================================================= */

.ppdb-map {
  margin-top: 10px;

  overflow: hidden;

  border: 1px solid var(--ppdb-border);
  border-radius: 18px;
}

.ppdb-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 18px 20px;

  background:
    linear-gradient(135deg,
      #052e16,
      #14532d);

  color: #fff;
}

.ppdb-map-header span {
  color: #86efac;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1px;
}

.ppdb-map-header h4 {
  margin: 3px 0 0;

  color: #fff;

  font-size: 16px;
  font-weight: 800;
}

.ppdb-map-header .btn {
  white-space: nowrap;
}

.ppdb-map iframe {
  display: block;

  width: 100%;
  height: 330px;

  border: 0;
}

/* =========================================================
FOOTER
========================================================= */

.main-footer {
  margin-top: 30px;

  padding: 22px 25px !important;

  background: #fff !important;

  border-top: 1px solid var(--ppdb-border);

  border-radius: 18px 18px 0 0;
}

.main-footer a {
  color: var(--ppdb-primary);

  font-weight: 700;
}

/* =========================================================
BUTTON PRIMARY
========================================================= */

.btn-primary {
  background: var(--ppdb-primary) !important;

  border-color: var(--ppdb-primary) !important;
}

.btn-primary:hover {
  background: var(--ppdb-primary-dark) !important;

  border-color: var(--ppdb-primary-dark) !important;
}

/* =========================================================
TEXT SELECTION
========================================================= */

::selection {
  background: #bbf7d0;

  color: #052e16;
}

/* =========================================================
MOBILE - TABLET
========================================================= */

@media (max-width: 992px) {

  /* NAVBAR */

  .ppdb-navbar {
    top: 8px !important;
    margin: 8px 0 18px;
    border-radius: 15px;
  }

  .ppdb-navbar-inner {
    min-height: 68px;
    padding: 10px 15px;
    border-radius: 15px;
  }

  .ppdb-brand {
    min-width: 0;
  }

  .ppdb-menu-toggle {
    display: flex;
  }

  .ppdb-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap:5px;
    padding:10px;
    margin:0;
    background:#047857;
    border:1px solid rgba(255, 255, 255, 0.12);
    border-radius:15px;
    box-shadow:
      0 15px 35px rgba(20, 83, 45, 0.18);
  }

  .ppdb-menu.show {
    display: flex;
  }

  .ppdb-menu-item {
    width: 100%;
    padding: 12px 14px;
    border-radius: 9px;
  }

  .ppdb-menu-item.active {
    background: #fff;
    color: #047857 !important;
  }

  .ppdb-login {
    width: 100%;
    justify-content: center;
    margin: 5px 0 0;
  }

  .ppdb-brand-text strong {
    max-width: 190px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* HERO */

  .ppdb-hero {
    min-height: 560px;
    border-radius: 18px;
  }

  .ppdb-hero-content {
    padding: 55px 35px 70px;
  }

  .ppdb-hero h1 {
    font-size: 40px;
  }

  .ppdb-hero p {
    font-size: 15px;
  }

  .ppdb-hero-decoration {
    opacity: 0.3;
    right: -100px;
  }

  .ppdb-hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(2, 44, 34, 0.72),
        rgba(2, 44, 34, 0.94));
  }

  .ppdb-scroll-down {
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }

  /* INFORMATION */

  .ppdb-info-nav {
    grid-template-columns: 1fr;
  }

  .ppdb-info-content {
    padding: 20px 15px;
    border-radius: 17px;
  }

  /* FOOTER */

  .main-footer {
    text-align: center;
  }
}

/* =========================================================
MOBILE - PHONE
========================================================= */

@media (max-width: 768px) {

  /* NAVBAR */

  .ppdb-brand-logo {
    width: 42px;
    height: 42px;
  }

  .ppdb-brand-text strong {
    font-size: 13px;
  }

  .ppdb-brand-text span {
    font-size: 9px;
  }

  /* HERO */

  .ppdb-hero-content {
    padding: 55px 25px 70px;
  }

  .ppdb-hero h1 {
    font-size: 34px;
  }

  .ppdb-hero p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .ppdb-alert-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppdb-alert .btn {
    width: 100%;
  }

  /* SECTION HEADING */

  .ppdb-section-heading h2 {
    font-size: 27px;
  }

  /* PANEL */

  .ppdb-panel-header {
    gap: 15px;
  }

  .ppdb-panel-number {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }

  .ppdb-panel-header h3 {
    font-size: 21px;
  }

  /* TIMELINE */

  .ppdb-timeline {
    padding-left: 0;
  }

  .ppdb-timeline::before {
    left: 20px;
  }

  .ppdb-timeline-item {
    padding-left: 55px;
  }

  .ppdb-timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .ppdb-timeline-content {
    padding: 15px;
  }

  .ppdb-step-icon {
    display: none;
  }

  /* REQUIREMENT */

  .ppdb-requirement {
    flex-direction: column;
    padding: 18px;
  }

  /* CONTACT */

  .ppdb-contact-card {
    padding: 16px;
  }

  /* MAP */

  .ppdb-map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ppdb-map iframe {
    height: 280px;
  }
  /* FOOTER */
  
  .main-footer {
    text-align: center;
  }
}

/* =========================================================
EXTRA SMALL PHONE
========================================================= */

@media (max-width: 480px) {

  .ppdb-navbar {
    border-radius: 13px;
  }

  .ppdb-navbar-inner {
    padding: 9px 12px;
  }

  .ppdb-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .ppdb-brand-text strong {
    max-width: 145px;
    font-size: 12px;
  }

  .ppdb-brand-text span {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .ppdb-hero {
    min-height: 560px;
  }

  .ppdb-hero-content {
    padding: 45px 20px 65px;
  }

  .ppdb-hero h1 {
    font-size: 30px;
  }

  .ppdb-badge {
    padding: 8px 12px;
    font-size: 11px;
  }

  .ppdb-panel-header {
    align-items: flex-start;
  }

  .ppdb-panel-header h3 {
    font-size: 20px;
  }

  .ppdb-contact-card {
    gap: 12px;
  }

  .ppdb-contact-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;
  }
  /* FOOTER */

  .main-footer {
    text-align: center;
  }
}