body {
    font-family: "Inter", system-ui;
    font-weight: 400;
    color: #012133;
}

/* header nav */
#main-navbar.transparent {
    background: transparent !important;
    box-shadow: none !important;
  }
  #main-navbar {
    background: #fff;
    transition: background 0.3s, box-shadow 0.3s;
  }

header {
    font-weight: 600;
}

/* Burger styles */
#burgerBtn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
}
.burger-bar {
  width: 28px;
  height: 3px;
  background: #0054A6;
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* Mobile nav styles */
#mobileNav {
  display: flex;
  transform: translateX(100%);
}
#mobileNav.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  #burgerBtn { display: none; }
  #mobileNav { display: none !important; }
  .action { display: block !important; }
}

header nav .nav-item {
    color: #111111;
    position: relative;
    height: 100%;
    padding-top: 5px;
    transition: color 0.2s ease;
}

header nav .nav-item.active {
    color: #0054A6;
}

header nav .nav-item.active .indicator {
    position: absolute;
    width: 100%;
    background-color: #0054A6;
    height: 4px;
    bottom: 0;
    border-radius: 10px;
    left: 0;
    opacity: 1;
}

header nav .nav-item .indicator {
    position: absolute;
    width: 100%;
    background-color: #0054A6;
    height: 4px;
    bottom: 0;
    border-radius: 10px;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

header .action a {
    font-weight: 400;
    font-size: 14px;
}

/* Responsive footer */
footer {
  display: flex;
  flex-direction: column;
  padding: 4rem 1rem;
  background-color: #0457A8;
}

footer .footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

footer .footer-left {
  width: 100%;
  max-width: 350px;
  margin-right: 0;
}

footer .footer-right {
  flex: 1;
  display: flex;
  width: 100%;
  gap: 2rem;
}

footer .footer-section {
  width: 100%;
  min-width: 120px;
}

@media (max-width: 1024px) {
  footer {
    padding: 2rem 1rem;
  }
  footer .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  footer .footer-left,
  footer .footer-right {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
  footer .footer-right {
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 0;
  }
  footer .footer-section {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 1rem 0.5rem;
  }
  footer .footer-content {
    gap: 1rem;
  }
  footer .footer-left {
    margin-bottom: 1rem;
  }
  footer .footer-right {
    gap: 1rem;
  }
  #copyright {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
}

/* MOBILE LAYANAN */
/* Tambahkan di style global atau langsung di <style> halaman layanan.html */
/* Garis putus-putus vertikal untuk mobile proses pengembangan */
@media (max-width: 850px) {
  .process-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-left: 32px;
  }
  .process-step {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    min-height: 120px;
  }
  .process-step-marker {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 9999px;
    border: 2px solid #0457A8;
    background: #fff;
    color: #0457A8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 4px;
  }
  .process-step-content {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  .process-step-title {
    font-weight: 600;
    color: #0457A8;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .process-step-desc {
    font-size: 0.95rem;
    color: #333;
    text-align: justify;
  }
  .process-step-image {
    width: 100px;
    margin-bottom: 0.5rem;
  }
  /* Garis putus-putus vertikal */
  .process-step-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    /* Sesuaikan tinggi agar garis dari nomor 2 bersentuhan dengan nomor 3 */
    height: 280px; /* Ganti dari 270px ke 80px atau sesuai tinggi antar marker */
    border-left: 2px dashed #0457A8;
    z-index: 1;
  }
  .process-step:last-child .process-step-marker::after {
    display: none;
  }
}

/* Tambahkan/ubah di global.css agar breakpoint mobile menu di 1024px */
@media (max-width: 1024px) {
  #burgerBtn {
    display: flex !important;
  }
  #mobileMenu {
    display: flex !important;
  }
  .action {
    display: none !important;
  }
  header nav.md\:flex {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  #burgerBtn {
    display: none !important;
  }
  #mobileMenu {
    display: none !important;
  }
  .action {
    display: block !important;
  }
  header nav.md\:flex {
    display: flex !important;
  }
}