/* ======================================================
   DESIGN SYSTEM (ROOT)
====================================================== */
:root{
  --gold:#F5C542;
  --gold-soft:#FFD86A;
  --dark:#0B1220;
  --text:#1F2937;
  --muted:#6B7280;
  --soft:#F7F9FC;

  --radius:16px;
  --shadow-sm:0 8px 20px rgba(0,0,0,.08);
  --shadow-md:0 12px 30px rgba(0,0,0,.12);
  --shadow-lg:0 20px 50px rgba(0,0,0,.18);
}

/* ======================================================
   RESET & BASE
====================================================== */
*{ box-sizing:border-box }

html,body{
  margin:0;
  padding:0;
}

body{
  font-family:"Segoe UI",system-ui,-apple-system,sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ======================================================
   NAVBAR + GOLD LINE
====================================================== */
.navbar{
  position:relative;
  min-height:92px;
  background:#fff;
}

.navbar::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:7px;
  background:linear-gradient(90deg,var(--gold),var(--gold-soft),var(--gold));
  z-index:999;
}

.navbar-brand img{
  height:110px;
  width:auto;
  position:relative;
  z-index:1001;
  margin-bottom:-18px;
}

.navbar-nav .nav-link{
  font-size:14px;
  padding:8px 12px;
  font-weight:500;
}

@media(max-width:768px){
  .navbar{ min-height:76px }
  .navbar-brand img{
    height:64px;
    margin-bottom:-10px;
  }
  .navbar::after{ height:5px }
}

/* ======================================================
   HERO CINEMATIC (FINAL – NO CROP)
====================================================== */
#heroCinematic{
  position:relative;
  width:100%;
  background:#0b1220;
}

/* SLIDE */
#heroCinematic .hero-slide{
  width:100%;
  display:none;
}

#heroCinematic .hero-slide.active{
  display:block;
}

/* IMAGE & VIDEO — UTUH 100% */
#heroCinematic img,
#heroCinematic video{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  background:#0b1220;
}

/* OVERLAY */
#heroCinematic .hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.25),
    rgba(0,0,0,.05)
  );
  z-index:2;
}

/* CAPTION */
#heroCinematic .hero-caption{
  position:absolute;
  left:8%;
  top:50%;
  transform:translateY(-50%);
  max-width:520px;
  color:#fff;
  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 */
.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;
  height:100%;
  width:0%;
  background:var(--gold);
}

/* MOBILE HERO */
@media(max-width:768px){
  #heroCinematic .hero-caption{
    position:relative;
    left:auto;
    top:auto;
    transform:none;
    padding:24px 20px;
    background:rgba(0,0,0,.45);
  }

  .hero-caption h1{ font-size:26px }
}

/* ======================================================
   GLOBAL SECTION
====================================================== */
.bpn-section{
  padding:90px 0;
  position:relative;
}

.bpn-section h2,
.bpn-section h3{
  font-weight:800;
  letter-spacing:-.4px;
}

.section-soft{
  background:var(--soft);
}

.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;
}

/* ======================================================
   PAKET CARD
====================================================== */
.paket-card{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow-md);
  overflow:hidden;
  max-width:300px;
  margin:auto;
  transition:.35s ease;
  position:relative;
}

.paket-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}

.paket-header{
  background:#FFC107;
  padding:14px 14px 18px;
  font-weight:800;
  font-size:14px;
}

.paket-body{ padding:18px }

.brand-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  border-bottom:1px solid #e5e7eb;
  font-size:14px;
  font-weight:600;
}

.brand-row img{ height:22px }
.brand-last{ border-bottom:none }

.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;
}

.paket-detail li::before{
  content:"☑";
  position:absolute;
  left:0;
  color:#FFC107;
}

/* ======================================================
   PRODUK
====================================================== */
.produk-card{
  background:rgba(255,255,255,.95);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow-md);
  transition:.35s ease;
}

.produk-card:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:var(--shadow-lg);
}

.produk-card img{
  width:100%;
  height:180px;
  object-fit:contain;
  border-radius:14px;
}

/* ======================================================
   SERVICE
====================================================== */
.bpn-service-card{
  border:1px solid #eef0f4;
  border-radius:16px;
  padding:24px;
  transition:.3s ease;
  text-align:center;
}

.bpn-service-card:hover{
  transform:translateY(-4px);
  border-color:#facc15;
}

/* ======================================================
   LOCATION
====================================================== */
.bpn-location{ margin-top:80px }

.bpn-map iframe{
  filter:grayscale(1) contrast(1.05);
}

/* ======================================================
   FAQ
====================================================== */
.accordion-item{
  border-radius:14px;
  overflow:hidden;
  margin-bottom:14px;
  border:1px solid #eef0f4;
}

.accordion-button{
  font-size:14px;
  font-weight:600;
}

.accordion-button:not(.collapsed){
  background:#F9FAFB;
}

/* ======================================================
   FOOTER
====================================================== */
.bpn-footer{
  background:linear-gradient(180deg,#0b1220,#020617);
  padding:70px 0 50px;
  margin-top:80px;
  color:#E5E7EB;
}

.footer-text{
  font-size:14px;
  color:#CBD5E1;
  max-width:520px;
}

.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);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media(max-width:992px){
  .paket-card{ max-width:100% }
}
/* ======================================================
   SECTION 2 – PAKET KAMI (PREMIUM LUXURY)
   SAFE ADDITION – TIDAK BENTROK
====================================================== */

/* WRAPPER */
.paket-section{
  padding:100px 0 110px;
  background:#ffffff;
}

/* TITLE */
.paket-section .section-sub{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#9ca3af;
  margin-bottom:6px;
}

.paket-section h2{
  font-size:32px;
  font-weight:800;
  letter-spacing:-.5px;
  margin-bottom:60px;
}

/* GRID */
.paket-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:34px;
}

/* CARD */
.paket-card{
  background:#ffffff;
  border-radius:22px;
  padding:0;
  box-shadow:
    0 12px 30px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease;
}

/* HOVER */
.paket-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 28px 60px rgba(0,0,0,.16);
}

/* HEADER GOLD */
.paket-header{
  background:linear-gradient(
    135deg,
    #facc15,
    #f59e0b
  );
  padding:18px 18px 16px;
  border-radius:22px 22px 0 0;
  font-weight:800;
  font-size:15px;
  color:#111;
}

/* BODY */
.paket-body{
  padding:22px 22px 26px;
}

/* BRAND ROW */
.brand-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #eef0f4;
}

.brand-row:last-child{
  border-bottom:none;
}

/* LOGO */
.brand-row img{
  height:26px;
  object-fit:contain;
  filter:grayscale(.1);
}

/* BUTTON WA */
.brand-row .btn-wa{
  background:#16a34a;
  color:#fff;
  font-size:13px;
  padding:6px 14px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}

.brand-row .btn-wa:hover{
  background:#15803d;
  transform:scale(1.05);
}

/* DETAIL TITLE */
.paket-detail-title{
  text-align:center;
  font-weight:700;
  margin:22px 0 14px;
  font-size:14px;
  letter-spacing:.8px;
  color:#374151;
}

/* DETAIL LIST */
.paket-detail{
  list-style:none;
  padding:0;
  margin:0;
}

.paket-detail li{
  font-size:14px;
  color:#555;
  padding-left:26px;
  margin-bottom:8px;
  position:relative;
  line-height:1.45;
}

/* CHECK ICON */
.paket-detail li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#f59e0b;
  font-weight:800;
}

/* CTA BOTTOM */
.paket-cta{
  margin-top:22px;
  text-align:center;
}

.paket-cta a{
  display:inline-block;
  background:linear-gradient(135deg,#facc15,#f59e0b);
  color:#111;
  padding:10px 24px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  transition:.25s ease;
}

.paket-cta a:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(250,204,21,.45);
}

/* ======================================================
   MOBILE TUNING
====================================================== */
@media(max-width:768px){
  .paket-section{
    padding:70px 0 80px;
  }

  .paket-section h2{
    font-size:26px;
    margin-bottom:40px;
  }
}
/* ======================================================
   KEUNGGULAN PREMIUM
====================================================== */
.bpn-feature-premium {
  padding: 80px 0;
  background-color: #f7f9fc;
}

.feature-head {
  margin-bottom: 40px;
}

.feature-eyebrow {
  font-size: 14px;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-head h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.feature-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ======================================================
   PRODUK SLIDER PREMIUM LUXURY
====================================================== */
.produk-section.premium-showcase {
  padding: 100px 0;
  background-color: #fff;
}

.produk-section .section-eyebrow {
  font-size: 16px;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.produk-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.produk-sub {
  font-size: 16px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.produk-slider-wrapper {
  position: relative;
}

.produk-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  z-index: 10;
}

.produk-nav.prev {
  left: 20px;
}

.produk-nav.next {
  right: 20px;
}

.produk-slider-track {
  display: flex;
  overflow: hidden;
}

.produk-item {
  min-width: 300px;
  margin: 0 15px;
  transition: transform 0.3s ease;
}

.produk-item:hover {
  transform: scale(1.05);
}

.produk-card-inner {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.produk-card-inner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.produk-item:hover .produk-card-inner {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .produk-item {
    min-width: 250px;
  }

  .produk-slider-track {
    display: block;
  }

  .produk-nav {
    display: none;
  }
}
/* ======================================================
   LAYANAN KAMI
====================================================== */
.bpn-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.bpn-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.bpn-section .row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.bpn-section .col-6 {
  max-width: 220px;
  text-align: center;
}

.bpn-section img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.bpn-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.bpn-section .col-6 .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .bpn-section .col-6 {
    max-width: 100%;
  }
}

/* ======================================================
   MAP / LOCATION
====================================================== */
.bpn-location-premium {
  padding: 80px 0;
  background-color: #fff;
}

.bpn-location-premium .location-head {
  text-align: center;
  margin-bottom: 40px;
}

.bpn-location-premium .location-head span {
  font-size: 14px;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bpn-location-premium .location-head h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 16px;
}

.map-info {
  text-align: center;
}

.map-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.map-info p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.map-info a {
  font-size: 16px;
  font-weight: 600;
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-info a:hover {
  color: #333;
}

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 350px;
  }

  .map-info h4 {
    font-size: 1.2rem;
  }

  .map-info p {
    font-size: 12px;
  }
}


/* ======================================================
   SHINY BACKGROUND (Map Info)
====================================================== */
.map-info {
  padding: 20px;
  background: linear-gradient(135deg, #f5c542, #ffdd7f); /* Gradien kuning */
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.map-info h4,
.map-info p {
  margin: 0;
  padding: 5px 0;
}

.map-info a {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.map-info a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-info a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  animation: shine 1.5s infinite linear;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.map-info a:active {
  transform: translateY(2px);
  box-shadow: none;
}

/* ===============================
   LAYANAN PREMIUM – FINAL
================================ */

.layanan-premium{
  padding:110px 0;
  background:#f9fafb;
}

.layanan-title{
  text-align:center;
  font-size:34px;
  font-weight:800;
  margin-bottom:70px;
  color:#1f2937;
}

/* GRID 3 x 2 */
.layanan-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px 40px;
}

/* CARD */
.layanan-card{
  background:#fff;
  border-radius:22px;
  padding:40px 30px 34px;
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  transition:.4s ease;
}

/* HOVER PREMIUM */
.layanan-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* GAMBAR BESAR */
.layanan-card img{
  width:220px;
  height:160px;
  object-fit:contain;
  margin:0 auto 28px;
  display:block;
}

/* TITLE */
.layanan-card h6{
  font-size:18px;
  font-weight:700;
  color:#111827;
  line-height:1.4;
}

/* RESPONSIVE */
@media(max-width:992px){
  .layanan-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .layanan-grid{
    grid-template-columns:1fr;
  }

  .layanan-card img{
    width:180px;
    height:140px;
  }
}
/* ======================================================
   LAYANAN KAMI – PREMIUM DESIGN
====================================================== */
.bpn-section {
  padding: 80px 0;
  background-color: #f7f7f7; /* Soft background */
}

.bpn-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bpn-section .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolom di desktop */
  gap: 40px;
  justify-items: center;
}

.bpn-section .col-6 {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.bpn-section .col-6 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpn-section .col-6:hover {
  transform: translateY(-10px); /* Hover untuk naik sedikit */
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.15); /* Shadow soft */
}

.bpn-section .col-6 img:hover {
  transform: scale(1.1); /* Zoom efek pada gambar */
}

.bpn-section .col-6 h6 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.bpn-section .col-6 h6:hover {
  color: #f59e0b; /* Highlight warna premium */
}

@media (max-width: 1200px) {
  .bpn-section .row {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom pada tablet */
  }
}

@media (max-width: 768px) {
  .bpn-section .row {
    grid-template-columns: 1fr; /* 1 kolom pada mobile */
  }
}


/* ======================================================
   LAYANAN KAMI – MOBILE DESIGN
====================================================== */
@media (max-width: 768px) {
  /* Mengatur section Layanan Kami untuk tampilan mobile */
  .bpn-section {
    padding: 60px 20px; /* Memberikan padding yang lebih kecil pada perangkat mobile */
  }

  /* Mengatur judul section */
  .bpn-section h3 {
    font-size: 1.8rem; /* Ukuran font judul lebih kecil di mobile */
    margin-bottom: 30px;
  }

  /* Grid 1 kolom pada mobile */
  .bpn-section .row {
    grid-template-columns: 1fr; /* 1 kolom pada perangkat mobile */
    gap: 30px; /* Jarak antar elemen lebih rapat */
  }

  /* Gambar dan teks dalam card */
  .bpn-section .col-6 {
    text-align: center;
    padding: 15px; /* Mengurangi padding untuk elemen mobile */
  }

  .bpn-section .col-6 img {
    max-width: 80%; /* Mengatur ukuran gambar agar proporsional di layar kecil */
    height: auto;
    object-fit: contain;
    border-radius: 12px;
  }

  .bpn-section .col-6 h6 {
    font-size: 16px; /* Ukuran font lebih kecil di mobile */
    font-weight: 600;
    color: #333;
    margin-top: 10px;
  }

  /* Hover efek gambar di mobile */
  .bpn-section .col-6:hover {
    transform: none; /* Menghilangkan efek hover pada gambar di mobile */
    box-shadow: none; /* Menghilangkan shadow di mobile */
  }

  /* Hover pada teks */
  .bpn-section .col-6 h6:hover {
    color: #f59e0b; /* Menambahkan warna hover pada teks */
  }
}
/* ======================================================
   GLOBAL SECTION – MOBILE DESIGN
====================================================== */
@media (max-width: 768px) {

  /* Mengatur section secara umum */
  .bpn-section {
    padding: 40px 20px; /* Memberikan padding yang lebih kecil pada perangkat mobile */
  }

  /* Mengatur heading di semua section */
  .bpn-section h2,
  .bpn-section h3 {
    font-size: 1.8rem; /* Ukuran font lebih kecil */
    text-align: center;
    margin-bottom: 30px;
  }

  /* Mengatur margin pada section (keunggulan, produk, dll.) */
  .feature-head,
  .produk-section .text-center,
  .location-head,
  .paket-section .text-center {
    margin-bottom: 20px;
  }

  /* ======================================================
     LAYANAN KAMI – 1 KOLOM DI MOBILE
  ====================================================== */
  .bpn-section .row {
    grid-template-columns: 1fr; /* 1 kolom pada perangkat mobile */
    gap: 20px; /* Menambah jarak antar elemen */
  }

  /* Mengatur gambar di Layanan Kami */
  .bpn-section .col-6 img {
    max-width: 90%; /* Ukuran gambar lebih besar */
    height: auto;
    object-fit: contain;
    border-radius: 10px;
  }

  /* Mengatur font ukuran teks di Layanan Kami */
  .bpn-section .col-6 h6 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
  }

  /* ======================================================
     KEUNGGULAN KAMI – ICON DAN TIPS DI MOBILE
  ====================================================== */
  .feature-card {
    padding: 20px;
    text-align: center;
  }

  .feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
  }

  .feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
  }

  .feature-icon {
    font-size: 45px;
    color: #f59e0b;
  }

  /* ======================================================
     PRODUK SLIDER - MOBILE
  ====================================================== */
  .produk-slider-wrapper {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    gap: 10px;
  }

  .produk-item {
    display: inline-block;
    width: 80%; /* Mengatur produk menjadi lebih besar di layar kecil */
    margin: 0 10px;
    transition: transform 0.3s ease;
  }

  .produk-card-inner img {
    width: 100%;
    height: auto;
  }

  /* ======================================================
     PAKET KAMI – CARD MOBILE
  ====================================================== */
  .paket-card {
    width: 100%; /* Card mengisi penuh layar pada perangkat mobile */
    margin-bottom: 20px;
  }

  .paket-header {
    font-size: 16px;
    padding: 14px 18px;
  }

  .paket-body {
    padding: 16px 14px;
  }

  .paket-detail {
    font-size: 14px;
  }

  .paket-cta a {
    padding: 12px 24px;
    font-size: 16px;
  }

  /* ======================================================
     MAP KAMI – MOBILE VIEW
  ====================================================== */
  .map-wrapper iframe {
    width: 100%;
    height: 300px;
  }

  .map-info a {
    font-size: 16px;
    padding: 10px 20px;
  }

  .map-info {
    padding: 20px;
    background: linear-gradient(135deg, #f5c542, #ffdd7f); /* Gradien kuning */
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .map-info a:hover {
    background-color: #f59e0b;
  }

  /* ======================================================
     FOOTER – RESPONSIVE DESIGN
  ====================================================== */
  .footer-text {
    font-size: 14px;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }

  /* ======================================================
     NAVBAR
  ====================================================== */
  .navbar {
    padding: 12px 20px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
  }

  .navbar-brand img {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .bpn-section .col-6 img {
    max-width: 100%;
  }

  .bpn-section .col-6 h6 {
    font-size: 14px;
  }

  /* Produk slider on mobile */
  .produk-item {
    width: 90%; /* Lebih besar pada layar kecil */
  }
}
