.produk-home {
  padding: 60px 0;
  text-align: center;
}

.produk-home h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.produk-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
  transition: transform .3s;
}

.produk-card:hover {
  transform: translateY(-6px);
}

.produk-card img {
  width: 100%;
  height: auto;
  display: block;
}
/* ======================================================
   ROOT
====================================================== */
:root {
  --gold: #F5C542;
  --dark: #0B1220;
  --text: #222;
  --muted: #6B7280;
  --bg-soft: #F4F6F9;
}

/* ======================================================
   RESET & GLOBAL
====================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ======================================================
   NAVBAR
====================================================== */
.bpn-navbar {
  padding: 14px 0;
}

.bpn-logo {
  height: 120px;
}

.bpn-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.bpn-link:hover {
  color: #000;
}

.bpn-service-btn {
  border-radius: 8px;
}

.bpn-yellow-line {
  height: 4px;
  background: linear-gradient(90deg, #F5C542, #FFD86A);
}
/* =========================
   HEADER FIX
========================= */
.bpn-navbar {
  height: 72px;
  display: flex;
  align-items: center;
}

.bpn-navbar .container {
  align-items: center;
}

.bpn-logo {
  height: 120;
  width: auto;
}

.navbar-nav .nav-link {
  padding: 8px 12px;
  font-size: 14px;
}

.bpn-service-btn {
  padding: 8px 14px;
  border-radius: 8px;
}

/* ======================================================
   HERO / SLIDER
====================================================== */
.bpn-slider {
  position: relative;
}

.bpn-slider-img {
  height: 700px;
  object-fit: cover;
}

/* Overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3,7,18,.55),
    rgba(3,7,18,.25),
    rgba(3,7,18,0)
  );
  z-index: 1;
}

/* Caption */
.enterprise-caption {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  color: #fff;
  z-index: 2;
}

.enterprise-caption h1 {
  font-size: 38px;
  font-weight: 700;
}

.enterprise-caption p {
  font-size: 15px;
  opacity: .95;
}

/* ======================================================
   SECTION
====================================================== */
.bpn-section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ======================================================
   CARD
====================================================== */
.bpn-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  height: 100%;
}

/* ======================================================
   PRODUK
====================================================== */
.produk-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  transition: .3s;
}

.produk-card:hover {
  transform: translateY(-6px);
}

/* ======================================================
   SERVICE ICON
====================================================== */
.service-icon {
  height: 56px;
  margin-bottom: 12px;
}

/* ======================================================
   VIDEO SECTION
====================================================== */
.bpn-video-slide {
  position: relative;
  height: 700px;
}

.bpn-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bpn-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3,7,18,.65),
    rgba(3,7,18,.2)
  );
}

/* ======================================================
   FAQ
====================================================== */
.accordion-button {
  font-size: 14px;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: #F9FAFB;
  color: #000;
}

/* ======================================================
   FOOTER / SUPPORT
====================================================== */
.support-logo {
  height: 28px;
  margin: 8px;
  opacity: .85;
}

.support-logo:hover {
  opacity: 1;
}
/* =========================
   FOOTER
========================= */
.bpn-footer {
  background: #0B1220;
  padding: 70px 0 50px;
  margin-top: 80px;
  color: #E5E7EB;
}

.bpn-footer h6,
.bpn-footer h4 {
  color: #ffffff;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 520px;
}

.footer-wa {
  color: #F5C542;
  font-weight: 600;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: .2s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* SUPPORT BOX */
.support-box {
  background: #111827;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}

.support-box img {
  max-width: 100%;
  height: auto;
}

/* FOOTER BUTTON */
.support-box .btn {
  border-radius: 10px;
  font-size: 14px;
}

/* ======================================================
   SOCIAL
====================================================== */
.social-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .enterprise-caption {
    left: 5%;
    right: 5%;
  }

  .enterprise-caption h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .bpn-slider-img,
  .bpn-video-slide {
    height: 420px;
  }

  .enterprise-caption {
    position: static;
    transform: none;
    padding: 40px 20px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .bpn-footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-text {
    margin: 0 auto;
  }

  .support-box {
    margin-top: 40px;
  }
}
.paket-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.paket-detail { flex: 1; }
.price-row img {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.paket-header {
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.08);
}
.bpn-section {
  padding: 80px 0;
}
@media (max-width: 576px) {
  .paket-btn {
    width: 100%;
  }
}
/* =========================
   PAKET CARD (CATALOG STYLE)
========================= */
.paket-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  overflow: hidden;
  height: 100%;
}

/* HEADER GOLD */
.paket-header-gold {
  background: #FDBA21;
  color: #111;
  font-weight: 800;
  text-align: center;
  padding: 18px 14px;
  font-size: 16px;
}

/* PRICE LIST */
.paket-price-list {
  padding: 16px 20px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E5E7EB;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item img {
  height: 22px;
  object-fit: contain;
}

.price-item span {
  font-weight: 700;
  color: #111;
}

/* DETAIL */
.paket-detail {
  padding: 10px 20px 20px;
}

.paket-detail h6 {
  text-align: center;
  font-weight: 700;
  margin: 16px 0;
  font-size: 15px;
}

/* CHECKLIST */
.paket-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paket-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

.paket-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #FDBA21;
  font-weight: 700;
}
/* ===== PAKET CARD ===== */
.paket-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  overflow:hidden;
  height:100%;
}

.paket-header{
  background:#FFC72C;
  text-align:center;
  padding:14px;
  font-weight:700;
  font-size:16px;
}

.paket-body{
  padding:20px;
}

.brand-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
  border-bottom:1px solid #eee;
  padding-bottom:8px;
}

.brand-row img{
  height:22px;
}

.brand-price{
  font-weight:700;
}

.paket-detail{
  margin-top:16px;
  font-size:14px;
}

.paket-detail li{
  list-style:none;
  margin-bottom:6px;
  position:relative;
  padding-left:22px;
}

.paket-detail li::before{
  content:"✔";
  color:#FFC72C;
  position:absolute;
  left:0;
  top:0;
}
/* ================= PAKET CARD ================= */
.paket-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.12);
  overflow:hidden;
  height:100%;
  transition:.3s;
}

.paket-card:hover{
  transform:translateY(-6px);
}

/* HEADER */
.paket-header{
  background:#FFC72C;
  padding:14px;
  text-align:center;
  font-weight:800;
  font-size:15px;
}

/* BODY */
.paket-body{
  padding:20px;
}

/* BRAND ROW */
.brand-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #eee;
  font-weight:600;
}

.brand-row img{
  height:22px;
  object-fit:contain;
}

/* DETAIL */
.paket-detail-title{
  text-align:center;
  font-weight:700;
  margin:16px 0 10px;
}

.paket-detail{
  padding:0;
  margin:0;
  font-size:14px;
}

.paket-detail li{
  list-style:none;
  margin-bottom:6px;
  padding-left:22px;
  position:relative;
}

.paket-detail li::before{
  content:"✔";
  color:#FFC72C;
  position:absolute;
  left:0;
}
/* ================= PAKET CARD ================= */
.paket-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  overflow:hidden;
  max-width:300px;
  margin:auto;
}

/* HEADER */
.paket-header{
  background:#FFC107;
  padding:14px 10px;
  text-align:center;
  font-weight:800;
  font-size:15px;
  line-height:1.25;
  border-radius:0 0 14px 14px;
}

/* BODY */
.paket-body{
  padding:18px;
}

/* BRAND */
.brand-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  border-bottom:1px solid #e5e5e5;
  font-weight:600;
  font-size:14px;
}

.brand-row img{
  height:22px;
}

.brand-last{
  border-bottom:none;
}

/* DETAIL TITLE */
.paket-detail-title{
  text-align:center;
  margin:16px 0 12px;
  font-family:"Courier New", monospace;
  font-size:16px;
  letter-spacing:1px;
}

/* DETAIL LIST */
.paket-detail{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
}

.paket-detail li{
  position:relative;
  padding-left:26px;
  margin-bottom:6px;
  color:#555;
}

/* CHECKBOX STYLE */
.paket-detail li::before{
  content:"☑";
  position:absolute;
  left:0;
  color:#FFC107;
  font-size:15px;
}
/* ================= PAKET CARD ================= */
.paket-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 14px 32px rgba(0,0,0,.14);
  overflow:hidden;
  max-width:300px;
  margin:auto;
  transition:.25s ease;
}

.paket-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* ================= HEADER ================= */
.paket-header{
  background:#FFC107;
  padding:14px 12px;
  text-align:center;
  font-weight:800;
  font-size:15px;
  line-height:1.3;
  color:#222;
  border-radius:0 0 16px 16px;
}

/* ================= BODY ================= */
.paket-body{
  padding:18px 18px 20px;
}

/* ================= BRAND ROW ================= */
.brand-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:7px 0;
  border-bottom:1px solid #e6e6e6;
  font-size:14px;
}

.brand-row img{
  height:22px;
  max-width:90px;
  object-fit:contain;
}

.brand-row span{
  font-weight:700;
  color:#111;
}

.brand-last{
  border-bottom:none;
}

/* ================= DETAIL TITLE ================= */
.paket-detail-title{
  text-align:center;
  margin:18px 0 14px;
  font-family:"Courier New", monospace;
  font-size:16px;
  letter-spacing:1px;
  color:#333;
}

/* ================= DETAIL LIST ================= */
.paket-detail{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
}

.paket-detail li{
  position:relative;
  padding-left:26px;
  margin-bottom:6px;
  color:#555;
  line-height:1.4;
}

/* CHECKBOX STYLE */
.paket-detail li::before{
  content:"☑";
  position:absolute;
  left:0;
  top:0;
  color:#FFC107;
  font-size:15px;
}

/* ================= MOBILE ================= */
@media(max-width:576px){
  .paket-card{
    max-width:100%;
  }
}
/* ================= PAKET CARD ================= */
.paket-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
  overflow:hidden;
  max-width:300px;
  margin:auto;
  transition:.3s;
}

.paket-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

/* HEADER */
.paket-header{
  background:#FFC107;
  padding:14px 12px;
  text-align:center;
  font-weight:800;
  font-size:15px;
  line-height:1.3;
  color:#222;
  border-radius:0 0 16px 16px;
}

/* BODY */
.paket-body{
  padding:18px 18px 22px;
}

/* BRAND ROW */
.brand-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  border-bottom:1px solid #e6e6e6;
  font-weight:600;
  font-size:14px;
}

.brand-row img{
  height:22px;
  object-fit:contain;
}

.brand-row span{
  font-weight:700;
}

.brand-last{
  border-bottom:none;
}

/* DETAIL TITLE */
.paket-detail-title{
  text-align:center;
  margin:18px 0 12px;
  font-family:"Courier New", monospace;
  font-size:15px;
  letter-spacing:1px;
  color:#333;
}

/* DETAIL LIST */
.paket-detail{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
}

.paket-detail li{
  position:relative;
  padding-left:26px;
  margin-bottom:7px;
  color:#555;
  line-height:1.45;
}

/* CHECK ICON */
.paket-detail li::before{
  content:"☑";
  position:absolute;
  left:0;
  top:0;
  color:#FFC107;
  font-size:15px;
}
/* ================= BADGE ================= */
.paket-badge{
  position:absolute;
  top:12px;
  right:12px;
  padding:6px 12px;
  font-size:11px;
  font-weight:700;
  border-radius:20px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.5px;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  z-index:5;
}

/* AUDIO */
.badge-audio{
  background:linear-gradient(135deg,#2563eb,#1e40af);
}

/* INFRARED */
.badge-infrared{
  background:linear-gradient(135deg,#ef4444,#b91c1c);
}

/* FULL COLOR */
.badge-fullcolor{
  background:linear-gradient(135deg,#16a34a,#166534);
}

/* supaya badge nempel */
.paket-card{
  position:relative;
}
/* === BADGE SVG (PAKET) === */
.paket-header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
}

.paket-title{
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

.paket-badge{
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.paket-badge-ico{
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.paket-badge-ico svg{
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* theme per tipe */
.badge-audio{ color:#B45309; }      /* amber */
.badge-infrared{ color:#1D4ED8; }   /* blue */
.badge-fullcolor{ color:#047857; }  /* green */
/* HEADER WRAPPER */
.paket-header-inner{
  position: relative;
  padding-right: 90px; /* RUANG UNTUK BADGE */
}
.paket-badge{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.paket-title{
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
  padding: 0 6px;
}
.paket-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  overflow:hidden;
  max-width:300px;
  margin:auto;
}

/* HEADER */
.paket-header{
  background:#FFC107;
  padding:14px 14px 18px;
  position:relative;
  border-radius:16px 16px 0 0;
}

.paket-title{
  display:block;
  font-weight:800;
  font-size:14px;
  line-height:1.3;
  padding-right:60px; /* ruang icon */
}

/* ICON BADGE */
.paket-badge{
  position:absolute;
  top:10px;
  right:10px;
  width:28px;
  height:28px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 6px rgba(0,0,0,.25);
}
.paket-badge img{
  width:16px;
  height:16px;
  object-fit:contain;
}

/* BODY */
.paket-body{ padding:18px; }
.brand-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 0; border-bottom:1px solid #e5e5e5;
  font-weight:600; font-size:14px;
}
.brand-row img{ height:22px; }
.brand-last{ border-bottom:none; }

.paket-detail-title{
  text-align:center; margin:16px 0 12px;
  font-family:"Courier New", monospace; font-size:16px; letter-spacing:1px;
}
.paket-detail{ list-style:none; padding:0; margin:0; }
.paket-detail li{
  position:relative; padding-left:26px; margin-bottom:6px; color:#555;
}
.paket-detail li::before{
  content:"☑"; position:absolute; left:0; color:#FFC107;
}
/* ICON BADGE – IMPROVED */
.paket-badge{
  position:absolute;
  top:8px;
  right:10px;
  width:34px;
  height:34px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.35);
  border:2px solid #FFC107;
  z-index:2;
}

.paket-badge img{
  width:20px;
  height:20px;
  object-fit:contain;
  filter:contrast(1.2);
}
.paket-title{
  display:block;
  font-weight:800;
  font-size:14px;
  line-height:1.3;
  padding-right:70px; /* FIX: icon ga nutup judul */
}
.paket-badge img{
  filter: brightness(0.2) contrast(1.6);
}
/* ===== BADGE ICON FINAL ===== */
.paket-badge{
  position:absolute;
  top:10px;
  right:12px;
  width:36px;
  height:36px;
  background:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 6px 16px rgba(0,0,0,.25);
  border:2px solid #FFC107;
  z-index:3;
  transition:all .25s ease;
}

/* ICON */
.paket-badge img{
  width:20px;
  height:20px;
  object-fit:contain;
  filter:contrast(1.4);
}
.paket-card:hover .paket-badge{
  transform:scale(1.08);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.paket-card[data-type="audio"] .paket-badge{
  border-color:#EF4444;
}

.paket-card[data-type="infrared"] .paket-badge{
  border-color:#2563EB;
}

.paket-card[data-type="fullcolor"] .paket-badge{
  border-color:#16A34A;
}
@media(max-width:576px){
  .paket-badge{
    width:32px;
    height:32px;
    top:8px;
    right:8px;
  }

  .paket-badge img{
    width:18px;
    height:18px;
  }
}
/* ================= PRODUK FRONT CARD ================= */
.produk-card-front{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  transition:.3s;
  height:100%;
}

.produk-card-front:hover{
  transform:translateY(-6px);
}

.produk-img{
  height:190px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
}

.produk-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.produk-noimg{
  font-size:13px;
  color:#9ca3af;
}

.produk-body{
  padding:16px;
}

.produk-title{
  font-weight:700;
  font-size:15px;
  margin-bottom:4px;
}

.produk-meta{
  font-size:12px;
  color:#6b7280;
  margin-bottom:10px;
}

.produk-price{
  font-weight:800;
  color:#111827;
  margin-bottom:12px;
}

.produk-action{
  margin-top:auto;
}
/* ================= PRODUK CARD ================= */
.produk-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  transition:.25s;
  position:relative;
}

.produk-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.produk-img{
  height:180px;
  background:#f4f6f9;
  display:flex;
  align-items:center;
  justify-content:center;
}

.produk-img img{
  max-height:100%;
  max-width:100%;
  object-fit:contain;
}

/* BADGE */
.produk-badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  color:#fff;
}

.produk-badge.analog{
  background:#ef4444;
}

.produk-badge.ipcam{
  background:#2563eb;
}

/* BODY */
.produk-body{
  padding:16px;
}

.produk-title{
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
}

.produk-meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#6b7280;
  margin-bottom:10px;
}

.produk-desc{
  font-size:13px;
  color:#555;
  line-height:1.5;
}
.produk-card{
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  transition:.3s;
}

.produk-card:hover{
  transform:translateY(-6px);
}

.produk-card img{
  width:100%;
  height:180px;
  object-fit:contain;
}
.produk-card{
  background:#fff;
  padding:10px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  transition:.3s;
}

.produk-card:hover{
  transform:translateY(-6px);
}
/* GRID */
.produk-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:16px;
}
.produk-item{
  background:#fff;
  padding:10px;
  border-radius:12px;
  text-align:center;
}
.produk-item img{
  width:100%;
  border-radius:10px;
}

/* LOADING OVERLAY */
#loadingOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.loading-box{
  background:#fff;
  padding:30px 40px;
  border-radius:16px;
  text-align:center;
}
.spinner{
  width:46px;
  height:46px;
  border:5px solid #eee;
  border-top:5px solid #f4b400;
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin:0 auto 12px;
}
@keyframes spin{
  to{ transform:rotate(360deg); }
}

/* SUCCESS */
#successBox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:10000;
}
.success-card{
  background:#28a745;
  color:#fff;
  padding:20px 30px;
  border-radius:14px;
  font-size:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.produk-home {
  padding: 60px 0;
  text-align: center;
}

.produk-home h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.produk-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
  transition: transform .3s;
}

.produk-card:hover {
  transform: translateY(-6px);
}

.produk-card img {
  width: 100%;
  height: auto;
  display: block;
}
.enterprise-caption {
  max-width: 680px;
  text-align: left;
  left: 10%;
  right: auto;
  bottom: 22%;
}

.enterprise-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.enterprise-sub {
  font-size: 1.1rem;
  opacity: 0.9;
}

.bpn-video-overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.1) 100%
  );
}
.paket-card {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.produk-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.produk-card img {
  border-radius: 14px;
}

.produk-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
footer {
  background: linear-gradient(180deg,#0b1220,#020617);
}

footer h5 {
  font-weight: 700;
}
.enterprise-caption {
  max-width: 680px;
  text-align: left;
  left: 10%;
  right: auto;
  bottom: 22%;
}

.enterprise-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.enterprise-sub {
  font-size: 1.1rem;
  opacity: 0.9;
}

.bpn-video-overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.1) 100%
  );
}
.paket-card {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.produk-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.produk-card img {
  border-radius: 14px;
}

.produk-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
/* ================= GLOBAL SECTION ================= */
.bpn-section {
  padding: 90px 0;
  position: relative;
}

.bpn-section h2,
.bpn-section h3 {
  font-weight: 800;
  letter-spacing: -0.4px;
}

.section-soft {
  background: #f7f9fc;
}

.section-gradient {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.section-dark {
  background: #0b1220;
  color: #fff;
}
#heroSlider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 2;
}
.section-soft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg,#facc15,#f59e0b);
  transform: translateX(-50%);
  border-radius: 4px;
}
.produk-card {
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.9);
}
.bpn-service-card {
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 24px;
  transition: all .3s ease;
}

.bpn-service-card:hover {
  border-color: #facc15;
  transform: translateY(-4px);
}
.bpn-location {
  padding: 0;
  margin-top: 80px;
}
.bpn-map iframe {
  filter: grayscale(1) contrast(1.05);
}
.accordion-item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid #eef0f4;
}
.section-tag {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,0,0,.05);
  position: absolute;
  top: 30px;
  left: 30px;
}
/* ================= MICRO MOTION SYSTEM ================= */
:root{
  --ease-premium:cubic-bezier(.22,.61,.36,1);
  --speed-fast:.25s;
  --speed-normal:.4s;
  --speed-slow:.6s;
}
.bpn-section{
  animation:sectionFadeUp .8s var(--ease-premium) both;
}

@keyframes sectionFadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:none;
  }
}
.btn{
  position:relative;
  overflow:hidden;
  transition:all var(--speed-fast) var(--ease-premium);
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transform:translateX(-120%);
}

.btn:hover::after{
  transform:translateX(120%);
  transition:transform .8s ease;
}

.btn:hover{
  transform:translateY(-2px);
}
.enterprise-eyebrow{
  display:inline-block;
  letter-spacing:1.5px;
  font-size:12px;
  text-transform:uppercase;
  opacity:.85;
  animation:fadeSlideLeft .9s var(--ease-premium) .1s both;
}

.enterprise-title{
  animation:fadeSlideLeft .9s var(--ease-premium) .2s both;
}

.enterprise-sub{
  animation:fadeSlideLeft .9s var(--ease-premium) .3s both;
}

.enterprise-btn{
  animation:fadeSlideLeft .9s var(--ease-premium) .4s both;
}

@keyframes fadeSlideLeft{
  from{
    opacity:0;
    transform:translateX(-30px);
  }
  to{
    opacity:1;
    transform:none;
  }
}
.paket-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:0 0 0 0 rgba(245,197,66,.0);
  transition:box-shadow var(--speed-normal) var(--ease-premium);
}

.paket-card:hover::after{
  box-shadow:0 0 0 2px rgba(245,197,66,.35);
}
.produk-card{
  transition:
    transform var(--speed-normal) var(--ease-premium),
    box-shadow var(--speed-normal) var(--ease-premium);
}

.produk-card:hover{
  transform:
    translateY(-8px)
    scale(1.04);
}
.carousel-control-prev,
.carousel-control-next{
  opacity:.65;
  transition:opacity var(--speed-fast),transform var(--speed-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover{
  opacity:1;
  transform:scale(1.08);
}
.bpn-service-card{
  transition:all var(--speed-fast) var(--ease-premium);
}

.bpn-service-card:active{
  transform:scale(.97);
}
.accordion-button{
  transition:background var(--speed-fast),padding var(--speed-fast);
}

.accordion-button:not(.collapsed){
  padding-left:22px;
}
.bpn-wa{
  animation:waPulse 2.8s ease-in-out infinite;
}

@keyframes waPulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.06)}
}
.bpn-section h3{
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.4px;
  margin-bottom:56px;
  position:relative;
}

.bpn-section h3::after{
  content:"";
  display:block;
  width:64px;
  height:4px;
  margin:18px auto 0;
  border-radius:4px;
  background:linear-gradient(90deg,#F5C542,#FFD86A);
}
.bpn-service-card{
  position:relative;
  height:100%;
  border-radius:20px;
  padding:32px 24px 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.95),
      rgba(255,255,255,.85)
    );
  backdrop-filter: blur(6px);
  border:1px solid #eef0f4;
  box-shadow:
    0 10px 30px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s cubic-bezier(.22,.61,.36,1),
    border-color .3s ease;
}
.bpn-service-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.8);
  border-color:#F5C542;
}
.bpn-service-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,.6),
      transparent
    );
  opacity:0;
  transform:translateX(-120%);
  transition:all .9s ease;
}

.bpn-service-card:hover::before{
  opacity:1;
  transform:translateX(120%);
}
.bpn-service-card img{
  max-height:82px;
  margin-bottom:18px;
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    filter .3s ease;
}

.bpn-service-card:hover img{
  transform:translateY(-6px) scale(1.05);
  filter:drop-shadow(0 12px 20px rgba(0,0,0,.18));
}
.bpn-service-card h6{
  font-size:15px;
  font-weight:700;
  letter-spacing:.2px;
  margin:0;
  color:#111827;
}
.bpn-service-card h6{
  font-size:15px;
  font-weight:700;
  letter-spacing:.2px;
  margin:0;
  color:#111827;
}
@media(min-width:992px){
  .bpn-section .row{
    --bs-gutter-x:2.2rem;
  }
}
/* ======================================================
   PREMIUM PRODUK SLIDER (ENTERPRISE FINISH)
====================================================== */

/* SECTION BACKGROUND */
#produkSlider {
  position: relative;
  padding: 40px 0;
}


/* ROW */
#produkSlider .row {
  position: relative;
  z-index: 2;
}

/* ======================================================
   PRODUK CARD – PREMIUM GALLERY STYLE
====================================================== */
#produkSlider .produk-card {
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.15);
  transition: 
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    filter .45s ease,
    opacity .45s ease;
  will-change: transform;
}

/* IMAGE */
#produkSlider .produk-card img {
  height: 320px;
  object-fit: contain;
  transition: transform .45s ease;
}

/* ======================================================
   FOCUS & DEPTH EFFECT (PREMIUM FEEL)
====================================================== */

/* DEFAULT: SOFT */
#produkSlider .carousel-item .produk-card {
  transform: scale(.9);
  opacity: .65;
  filter: grayscale(.3) blur(0.6px);
}

/* ACTIVE SLIDE */
#produkSlider .carousel-item.active .produk-card {
  transform: scale(1);
  opacity: 1;
  filter: none;
  box-shadow: 0 25px 60px rgba(0,0,0,.22);
}

/* HOVER ACTIVE */
#produkSlider .carousel-item.active .produk-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

/* IMAGE HOVER */
#produkSlider .carousel-item.active .produk-card:hover img {
  transform: scale(1.05);
}

/* ======================================================
   CAROUSEL NAV – MINIMAL & PREMIUM
====================================================== */
#produkSlider .carousel-control-prev,
#produkSlider .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 5;
}

#produkSlider:hover .carousel-control-prev,
#produkSlider:hover .carousel-control-next {
  opacity: 1;
}

#produkSlider .carousel-control-prev:hover,
#produkSlider .carousel-control-next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ICON */
#produkSlider .carousel-control-prev-icon,
#produkSlider .carousel-control-next-icon {
  filter: invert(1);
}

/* ======================================================
   DOT INDICATOR – CLEAN & ELEGANT
====================================================== */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  opacity: .5;
  transition: all .3s ease;
}

.carousel-indicators .active {
  width: 22px;
  border-radius: 6px;
  background: linear-gradient(90deg,#facc15,#f59e0b);
  opacity: 1;
}

/* ======================================================
   MOBILE TUNING
====================================================== */
@media (max-width: 768px) {
  #produkSlider .produk-card img {
    height: 220px;
  }

  #produkSlider .carousel-control-prev,
  #produkSlider .carousel-control-next {
    opacity: 1;
    width: 44px;
    height: 44px;
  }

  #produkSlider .carousel-item .produk-card {
    transform: scale(1);
    filter: none;
    opacity: 1;
  }
}
/* ======================================================
   PREMIUM FEATURE / KEUNGGULAN SECTION
====================================================== */

/* SECTION WRAPPER */
.bpn-feature {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%
  );
}

/* TOP ACCENT LINE */
.bpn-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg,#facc15,#f59e0b);
  transform: translateX(-50%);
  border-radius: 4px;
}

/* ======================================================
   FEATURE CARD
====================================================== */
.bpn-feature .col-6,
.bpn-feature .col-lg-3 {
  position: relative;
}

.bpn-feature .col-6 > div,
.bpn-feature .col-lg-3 > div {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 32px 22px;
  height: 100%;
  box-shadow:
    0 10px 30px rgba(0,0,0,.08);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    background .45s ease;
}

/* HOVER – HALUS & ELEGAN */
.bpn-feature .col-6 > div:hover,
.bpn-feature .col-lg-3 > div:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.92);
  box-shadow:
    0 25px 60px rgba(0,0,0,.14);
}

/* ======================================================
   ICON STYLE (PREMIUM MICRO INTERACTION)
====================================================== */
.bpn-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #facc15,
    #f59e0b
  );
  color: #111;
  box-shadow:
    0 10px 24px rgba(250,204,21,.45);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease;
}

/* ICON HOVER */
.bpn-feature .col-6 > div:hover .bpn-icon,
.bpn-feature .col-lg-3 > div:hover .bpn-icon {
  transform: scale(1.12) rotate(-3deg);
  box-shadow:
    0 18px 40px rgba(250,204,21,.65);
}

/* ======================================================
   TEXT
====================================================== */
.bpn-feature h5 {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.bpn-feature p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* ======================================================
   SUBTLE DIVIDER EFFECT
====================================================== */
.bpn-feature .col-6 > div::after,
.bpn-feature .col-lg-3 > div::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg,#facc15,#f59e0b);
  transform: translateX(-50%);
  opacity: .35;
  border-radius: 2px;
}

/* ======================================================
   MOBILE TUNING
====================================================== */
@media (max-width: 768px) {
  .bpn-feature {
    padding: 70px 0;
  }

  .bpn-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .enterprise-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .enterprise-sub {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .bpn-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .bpn-service-card {
    padding: 18px;
    border-radius: 14px;
  }

  .bpn-service-card img {
    max-width: 90px;
    margin: 0 auto 10px;
  }
}
@media (max-width: 576px) {
  .produk-card img {
    max-height: 220px;
    margin: auto;
  }
}
@media (max-width: 576px) {
  .bpn-wa {
    bottom: 16px;
    right: 16px;
  }
}
/* ===============================
   ADMIN LOGIN – PREMIUM UI
================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, #1e293b, #020617);
  min-height: 100vh;
}

/* CENTER WRAPPER */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */
.login-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 34px 40px;
  box-shadow:
    0 25px 60px rgba(0,0,0,.35);
  animation: fadeUp .6s ease;
}

/* HEADER */
.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-header h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}

.login-header p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #64748b;
  letter-spacing: .5px;
}

/* FORM */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  transition: .2s;
}

.form-group input:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(250,204,21,.25);
}

/* BUTTON */
.btn-login {
  width: 100%;
  padding: 13px;
  margin-top: 10px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    #facc15,
    #f59e0b
  );
  color: #111;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250,204,21,.45);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .login-card {
    margin: 0 14px;
    padding: 30px 24px;
  }
}
.form-group input {
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.form-group input:focus {
  transform: translateY(-1px);
}
.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(250,204,21,.4);
}
.btn-login {
  position: relative;
  overflow: hidden;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(0,0,0,.2);
  border-top-color: #111;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
}

.btn-login.loading .btn-text {
  display: none;
}

.btn-login.loading .btn-loader {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.login-error {
  background: #fee2e2;
  color: #991b1b;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 18px;
  animation: shake .35s ease;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}
.login-card {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(250,204,21,.08), transparent 40%);
  pointer-events: none;
}
@media (max-width: 480px) {
  .login-header h1 {
    font-size: 22px;
  }

  .btn-login {
    font-size: 14px;
  }
}
/* =====================
   HEADER LOGO SIZE
===================== */
.navbar-brand img {
  height: 100px;          /* default 42px → jadi gede */
  width: auto;
  transition: all .3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 54px;
  }
}
.bpn-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}
/* ================= HERO CINEMATIC ================= */
#heroCinematic{
  position:relative;
  width:100%;
  height:100vh;
  max-height:820px;
  overflow:hidden;
  background:#000;
}

@media(max-width:768px){
  #heroCinematic{ height:420px; }
}

/* SLIDE */
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.4s ease;
  z-index:1;
}

.hero-slide.active{
  opacity:1;
  z-index:2;
}

/* IMAGE & VIDEO */
.hero-slide img,
.hero-slide video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35),
    rgba(0,0,0,.1)
  );
  z-index:2;
}

/* CAPTION */
.hero-caption{
  position:absolute;
  left:8%;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  max-width:520px;
  z-index:3;
}

.hero-eyebrow{
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  opacity:.85;
}

.hero-caption h1{
  font-size:42px;
  font-weight:800;
  margin:10px 0;
}

.hero-caption p{
  font-size:16px;
  opacity:.9;
  margin-bottom:22px;
}

.hero-btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:999px;
  background:linear-gradient(135deg,#facc15,#f59e0b);
  font-weight:800;
  color:#111;
}

/* PROGRESS BAR */
.hero-progress{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:rgba(255,255,255,.2);
  z-index:4;
}

.hero-progress span{
  display:block;
  width:0%;
  height:100%;
  background:#facc15;
}
/* ================= FEATURE PREMIUM ================= */
.bpn-feature-premium{
  position:relative;
  padding:90px 0;
  background:
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  overflow:hidden;
}

/* GOLD LINE */
.bpn-feature-premium::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:140px;
  height:4px;
  background:linear-gradient(90deg,#facc15,#f59e0b);
  transform:translateX(-50%);
  border-radius:4px;
}

/* HEADER */
.feature-head{
  text-align:center;
  margin-bottom:60px;
}

.feature-eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:#f59e0b;
  margin-bottom:10px;
}

.feature-head h3{
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.4px;
}

/* CARD */
.feature-card{
  height:100%;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.95),
      rgba(255,255,255,.85)
    );
 
  border-radius:20px;
  padding:36px 26px 32px;
  text-align:center;
  box-shadow:
    0 10px 30px rgba(0,0,0,.08);
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease,
    border-color .3s ease;
  border:1px solid #eef0f4;
  position:relative;
}

/* HOVER */
.feature-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 22px 60px rgba(0,0,0,.14);
  border-color:#facc15;
}

/* ICON */
.feature-icon{
  width:76px;
  height:76px;
  margin:0 auto 20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  background:
    linear-gradient(135deg,#facc15,#f59e0b);
  color:#111;
  box-shadow:
    0 12px 28px rgba(250,204,21,.55);
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease;
}

/* ICON HOVER */
.feature-card:hover .feature-icon{
  transform:scale(1.12) rotate(-3deg);
  box-shadow:
    0 20px 45px rgba(250,204,21,.75);
}

/* TEXT */
.feature-card h5{
  font-weight:800;
  font-size:17px;
  margin-bottom:8px;
  letter-spacing:-0.2px;
}

.feature-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.7;
  margin:0;
}

/* MOBILE */
@media(max-width:768px){
  .bpn-feature-premium{
    padding:70px 0;
  }

  .feature-head h3{
    font-size:26px;
  }

  .feature-icon{
    width:64px;
    height:64px;
    font-size:30px;
  }
}
/* =========================
   HERO SLIDER – CONTAIN FIX
========================= */

/* SLIDER WRAPPER */
#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item {
  height: 700px;
  position: relative;
}

/* IMAGE SLIDE */
#heroSlider .bpn-slider-img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* ⬅️ INI KUNCI */
  object-position: center;
  background: #0b1220;        /* canvas gelap biar elegan */
}

/* VIDEO (TETAP COVER) */
#heroSlider .bpn-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
#heroSlider .bpn-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.25),
    rgba(0,0,0,.1)
  );
  z-index: 1;
}

/* CAPTION */
#heroSlider .carousel-caption {
  z-index: 2;
}

/* FADE ONLY (NO SLIDE MOVE) */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  #heroSlider,
  #heroSlider .carousel-item {
    height: 420px;
  }

  #heroSlider .bpn-slider-img {
    object-fit: contain;
  }
}
/* ===============================
   HERO SLIDER – CONTAIN + COVER
=============================== */

#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item {
  height: 700px;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND COVER (BLUR FILL) */
#heroSlider .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;      /* ⬅️ FULL LAYAR */
  background-position: center;
  filter: blur(22px) brightness(.6);
  transform: scale(1.15);
  z-index: 0;
}

/* MAIN IMAGE (FULL KELIHATAN) */
#heroSlider .bpn-slider-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;         /* ⬅️ FULL GAMBAR */
  object-position: center;
}

/* OVERLAY */
#heroSlider .bpn-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.25),
    rgba(0,0,0,.1)
  );
  z-index: 2;
}

/* CAPTION */
#heroSlider .carousel-caption {
  z-index: 3;
}

/* FADE TRANSITION ONLY */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  #heroSlider,
  #heroSlider .carousel-item {
    height: 420px;
  }

  #heroSlider .slide-bg {
    filter: blur(16px) brightness(.65);
  }
}
/* ===============================
   HERO CINEMATIC SLIDER
=============================== */
#heroCinematic {
  position: relative;
  height: 700px;
  overflow: hidden;
}

/* SLIDE */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* VIDEO & IMAGE */
.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ⬅️ FULL 1920x700 */
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35),
    rgba(0,0,0,.15)
  );
}

/* CAPTION */
.hero-caption {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #fff;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .85;
}

.hero-caption h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0;
}

.hero-caption p {
  font-size: 16px;
  opacity: .9;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg,#facc15,#f59e0b);
  color: #111;
  font-weight: 800;
}

/* PROGRESS BAR */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: rgba(255,255,255,.15);
  z-index: 3;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#facc15,#f59e0b);
}

/* MOBILE */
@media (max-width: 768px) {
  #heroCinematic {
    height: 420px;
  }

  .hero-caption h1 {
    font-size: 26px;
  }
}
/* ===============================
   PRODUK SLIDER – FIX FINAL
================================ */

/* OUTER */
.produk-slider-outer {
  overflow: hidden;
  width: 100%;
}

/* TRACK (HORIZONTAL FIX) */
.produk-slider-track {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 24px 8px 32px;

  scroll-behavior: smooth;
  scrollbar-width: none;
}

.produk-slider-track::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.produk-slide {
  flex: 0 0 auto !important;
  width: 260px;
}

/* CARD */
.produk-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 35px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.produk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* IMAGE */
.produk-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* CURSOR DRAG */
.produk-slider-track {
  cursor: grab;
}
.produk-slider-track:active {
  cursor: grabbing;
}

/* MOBILE */
@media (max-width: 576px) {
  .produk-slide {
    width: 220px;
  }
}
/* ===============================
   PRODUK SLIDER – FIX FINAL
================================ */

/* OUTER */
.produk-slider-outer {
  overflow: hidden;
  width: 100%;
}

/* TRACK (HORIZONTAL FIX) */
.produk-slider-track {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 24px 8px 32px;

  scroll-behavior: smooth;
  scrollbar-width: none;
}

.produk-slider-track::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.produk-slide {
  flex: 0 0 auto !important;
  width: 260px;
}

/* CARD */
.produk-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 35px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.produk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* IMAGE */
.produk-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* CURSOR DRAG */
.produk-slider-track {
  cursor: grab;
}
.produk-slider-track:active {
  cursor: grabbing;
}

/* MOBILE */
@media (max-width: 576px) {
  .produk-slide {
    width: 220px;
  }
}
/* ===============================
   PREMIUM PRODUK SLIDER
================================ */

.produk-slider-wrapper {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}

/* GRADIENT EDGE (DEPTH) */
.produk-slider-wrapper::before,
.produk-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.produk-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fb 0%, transparent 100%);
}

.produk-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fb 0%, transparent 100%);
}

/* TRACK */
.produk-slider-track {
  display: flex;
  gap: 32px;
  padding: 20px 80px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.produk-slider-track::-webkit-scrollbar {
  display: none;
}

/* SLIDE */
.produk-slide {
  flex: 0 0 auto;
}

/* CARD */
.produk-card {
  width: 280px;
  height: 420px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 18px 45px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.6);

  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease,
    opacity .45s ease;
}

/* IMAGE */
.produk-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,.18));
  transition: transform .45s ease;
}

/* DEFAULT STATE (SOFT) */
.produk-slide {
  opacity: .6;
  transform: scale(.94);
}

/* HOVER / FOCUS */
.produk-slide:hover {
  opacity: 1;
  transform: scale(1);
}

.produk-slide:hover .produk-card {
  box-shadow:
    0 30px 70px rgba(0,0,0,.22);
}

.produk-slide:hover img {
  transform: scale(1.05);
}

/* ===============================
   PREMIUM ARROW
================================ */

.produk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 54px;
  height: 54px;
  border-radius: 50%;

  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);

  font-size: 28px;
  font-weight: 600;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(0,0,0,.25);

  transition: all .25s ease;
}

.produk-arrow.left { left: 20px; }
.produk-arrow.right { right: 20px; }

.produk-arrow:hover {
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .produk-arrow {
    display: none;
  }

  .produk-card {
    width: 220px;
    height: 360px;
  }
}
/* ===============================
   ENTERPRISE CLEAN SLIDER
================================ */

.produk-slider-wrapper {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: transparent;
}

/* EDGE FADE — SUPER TIPIS */
.produk-slider-wrapper::before,
.produk-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.produk-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 60%, transparent);
}

.produk-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 60%, transparent);
}

/* TRACK */
.produk-slider-track {
  display: flex;
  gap: 36px;
  padding: 20px 100px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.produk-slider-track::-webkit-scrollbar {
  display: none;
}

/* SLIDE */
.produk-slide {
  flex: 0 0 auto;
  transition: opacity .35s ease, transform .35s ease;
}

/* CARD — CLEAN */
.produk-card {
  width: 280px;
  height: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;

  box-shadow:
    0 8px 18px rgba(0,0,0,.12);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

/* IMAGE */
.produk-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* NON-FOCUS STATE */
.produk-slide {
  opacity: .45;
  transform: scale(.96);
}

/* ACTIVE / HOVER */
.produk-slide:hover {
  opacity: 1;
  transform: scale(1);
}

.produk-slide:hover .produk-card {
  box-shadow:
    0 14px 30px rgba(0,0,0,.18);
}
/* ===============================
   PRODUK SLIDER — ENTERPRISE CLEAN
================================ */

.produk-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #fafafa;
}

/* TRACK */
.produk-slider-track {
  display: flex;
  gap: 32px;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* ITEM */
.produk-slide {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); /* soft premium */
  transition: transform .35s ease, box-shadow .35s ease;
}

.produk-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

/* IMAGE */
.produk-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ARROW */
.produk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: all .25s ease;
  z-index: 10;
}

.produk-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.produk-arrow.prev { left: 10px; }
.produk-arrow.next { right: 10px; }
.produk-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 40px 60px; /* ruang untuk arrow */
}

.produk-slider-track {
  display: flex;
  gap: 32px;
  width: max-content;              /* 🔥 WAJIB */
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.produk-slide {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.produk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produk-arrow.prev { left: 10px; }
.produk-arrow.next { right: 10px; }
/* =========================
   PRODUK SLIDER – FINAL
========================= */

.produk-section{
  padding:80px 0;
  background:#fff;
}

.produk-title{
  text-align:center;
  font-weight:800;
  font-size:28px;
  margin-bottom:40px;
}

/* WRAPPER */
.produk-slider-wrapper{
  position:relative;
  overflow:hidden;
}

/* TRACK */
.produk-slider-track{
  display:flex;
  gap:32px;
  width:max-content; /* WAJIB */
  transition:transform .45s cubic-bezier(.22,.61,.36,1);
}

/* ITEM */
.produk-item{
  flex:0 0 auto;
  width:260px;
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.produk-item img{
  width:100%;
  height:360px;
  object-fit:contain;
}

/* NAV */
.produk-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:#fff;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
  z-index:5;
}

.produk-nav.prev{ left:10px; }
.produk-nav.next{ right:10px; }

.produk-nav:hover{
  transform:translateY(-50%) scale(1.08);
}

/* MOBILE */
@media(max-width:768px){
  .produk-item{
    width:220px;
  }
}
.harga-text{
  font-size:20px;
  font-weight:800;
  color:#111;
}

.btn-wa{
  background:#25D366;
  color:#fff;
  padding:10px 20px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  transition:.25s;
}

.btn-wa:hover{
  background:#1ebe5d;
}
/* ===== LOCATION PREMIUM ===== */
.bpn-location-premium {
  width: 100%;
  margin: 80px 0;
}

.location-head {
  text-align: center;
  margin-bottom: 24px;
}

.location-head span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c9a23f;
  font-weight: 600;
}

.location-head h3 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 0; /* full edge */
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* INFO CARD */
.map-info {
  position: absolute;
  left: 60px;
  bottom: 60px;
  background: rgba(255,255,255,0.95);
  padding: 24px 28px;
  border-radius: 16px;
  max-width: 360px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.map-info h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.map-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.map-info a {
  display: inline-block;
  background: linear-gradient(135deg,#f2c94c,#c9a23f);
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .map-wrapper {
    height: 420px;
  }

  .map-info {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
