:root{
  --brand-primary: #ff6d19;
  --brand-dark: linear-gradient(90deg, #0c2b53 0%, #143c69 100%);
   --nav-text:#0b2b5e;         /* biru gelap teks */
  --nav-red:#e81f3f;          /* merah indikator aktif */
  --panel-shadow:0 10px 30px rgba(7, 22, 44, .12);
  --panel-radius:22px;

   --dark: #0F2642;    /* biru gelap */
    --orange:#FF7A00;   /* oranye */
    --muted:#e9eef5;
    --border:#e3e7ee;
}

body{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif}

/* NAVBAR */

/* link nav + chevron */
.nav-drop .drop-toggle{
  display:inline-flex; align-items:center; gap:6px;
  color:var(--nav-text); font-weight:700;
  position:relative;
}
.nav-drop .drop-toggle .chev{
  transition: transform .25s ease, color .25s ease;
  color:var(--nav-text);
}
.nav-drop.open .drop-toggle{ color:var(--nav-red) }
.nav-drop.open .drop-toggle .chev{
  transform: rotate(180deg);
  color:var(--nav-red);
}

/* panel */
/* panel dropdown nempel ke header */
.nav-drop .drop-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%; /* langsung nempel di bawah header */
  margin-top: 0; /* tidak ada gap */
  width: 260px;
  background: #fff;
  border-radius: 0 0 var(--panel-radius) var(--panel-radius); /* radius bawah saja */
  box-shadow: var(--panel-shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 1000;
}

/* hilangkan segitiga ekor karena sudah nempel */
.nav-drop .drop-panel::before {
  display: none;
}

/* saat open/hover */
.nav-drop.open .drop-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%);
}

@media (hover:hover) {
  .nav-drop:hover .drop-panel {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%);
  }
  .nav-drop:hover .drop-toggle .chev {
    transform: rotate(180deg);
  }
}

/* isi list */
.drop-list{ list-style:none; margin:0; padding:18px 22px }
.drop-list li + li{ margin-top:14px }
.drop-list a{
  display:block; color:var(--nav-text); text-decoration:none;
  font-weight:600; letter-spacing:.2px;
}
.drop-list a:hover{ color:var(--nav-red) }

/* pembatas tipis di sisi kiri/kanan menu utama (opsional, seperti contoh) */
.navbar .nav-item{ position:relative }
.navbar .nav-item::after{
  content:""; position:absolute; bottom:-10px; left:0; right:0;
  
}

.navbar{
  --bs-navbar-toggler-focus-width: 0; /* default ~.25rem */
}

.navbar .nav-link{font-weight:500;color:#333}
.navbar .nav-link:hover,
.navbar .nav-link.active{color:var(--brand-primary)}

.brand-text{letter-spacing:.2px}

/* ukuran logo supaya tidak kecil */
.brand-logo{
  height: 36px;   /* nyaman di mobile */
  width: auto;
  display: block;
}
@media (min-width: 992px){
  .brand-logo{ height: 40px; } /* sedikit lebih besar di desktop */
}

/* opsional: rapikan jarak kiri brand */
.navbar .navbar-brand{ margin-right: .5rem; }


/* Shadow saat scroll (diterapkan ke header) */
#siteHeader.scrolled #mainNavbar{box-shadow:0 6px 24px rgba(0,0,0,.06)}

/* BUTTONS */
.btn-primary{
  --bs-btn-bg:var(--brand-primary);
  --bs-btn-border-color:var(--brand-primary);
  --bs-btn-hover-bg:#ff6d19; --bs-btn-hover-border-color:#ff6d19;
}
.btn-outline-primary{
  --bs-btn-color:var(--brand-primary);
  --bs-btn-border-color:var(--brand-primary);
  --bs-btn-hover-bg:var(--brand-primary);
  --bs-btn-hover-border-color:var(--brand-primary);
  --bs-btn-hover-color:#fff;
}

/* HERO / CAROUSEL */
.hero .carousel, .hero .carousel .carousel-item{height:60vh;min-height:420px}
@media (min-width:1400px){.hero .carousel, .hero .carousel .carousel-item{height:68vh}}
@media (max-width:991.98px){.hero .carousel, .hero .carousel .carousel-item{height:58vh;min-height:520px}}
.hero-img,.hero-img-mobile{width:100%;height:100%}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.25) 40%,rgba(0,0,0,0) 70%);pointer-events:none}
@media (max-width:991.98px){.hero-overlay{background:linear-gradient(0deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.2) 50%,rgba(0,0,0,0) 100%)}}

/* FOOTER */
.footer{background:var(--brand-dark)}
.footer h6{margin-bottom:.75rem}
.link-footer{color:rgba(255,255,255,.7);text-decoration:none}
.link-footer:hover{color:#fff;text-decoration:underline}
.link-footer-icon:hover{color:#fff!important}

/* Utilities */
.object-fit-cover{object-fit:cover}

/* === HEADER BEHAVIOR (FINAL) === */
/* default: navbar ikut mengalir normal (bukan sticky) */
#mainNavbar{
  background:#fff;
  transition: box-shadow .2s ease;
  z-index: 1030; /* di atas konten biasa */
}

/* saat menempel (di-aktifkan via JS) -> benar2 nempel */
#mainNavbar.is-fixed{
  position: fixed;
  top: 0; left: 0; right: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

/* spacer diatur via JS */
#navSpacer{ display:none; width:100%; }

/* Topbar biarkan ikut scroll, jangan di-hide otomatis */
.topbar{ background:#fff; border-bottom:1px solid rgba(0,0,0,.06); }

/* Flag & pemisah (biar tetap ada) */
.flag-id{
  width:22px;height:22px;border-radius:50%;
  background:linear-gradient(180deg,#e30613 0 50%,#fff 50% 100%);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:inset 0 1px 2px rgba(0,0,0,.05);
}
.vr-soft{width:1px;height:18px;background:rgba(0,0,0,.2)}

/* ---------- MOBILE MENU: TOP-DOWN FULL ---------- */
#mobileMenu.offcanvas-top{height:100vh}
#mobileMenu .nav-link{font-size:1.125rem}
#mobileMenu .offcanvas-body{padding-bottom:2rem}

/* ---------- CAROUSEL CONTROLS KUSTOM ---------- */
.carousel-control-prev-icon,.carousel-control-next-icon{display:none!important}
.custom-control{width:auto;opacity:1;top:50%;transform:translateY(-50%);z-index:5}
.carousel-control-prev.custom-control{left:24px}
.carousel-control-next.custom-control{right:24px}
.slider-btn{
  width:48px;height:48px;display:grid;place-items:center;
  background:#fff;border-radius:999px;box-shadow:0 8px 24px rgba(0,0,0,.15)
}
.slider-btn i{font-size:18px;color:var(--brand-primary)}
.custom-control:hover .slider-btn{box-shadow:0 10px 28px rgba(0,0,0,.2)}
@media (max-width:991.98px){
  .carousel-control-prev.custom-control{left:12px}
  .carousel-control-next.custom-control{right:12px}
  .slider-btn{width:44px;height:44px}
}

/* Desktop: tombol prev/next hanya muncul saat hover di area carousel */
@media (hover: hover) and (pointer: fine){
  .hero .carousel .carousel-control-prev,
  .hero .carousel .carousel-control-next{
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .hero .carousel:hover .carousel-control-prev,
  .hero .carousel:hover .carousel-control-next{
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile/Touch: SEMBUNYI default, tampil saat disentuh (punya class .show-controls) */
@media (hover: none) and (pointer: coarse){
  .hero .carousel .carousel-control-prev,
  .hero .carousel .carousel-control-next{
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .hero .carousel.show-controls .carousel-control-prev,
  .hero .carousel.show-controls .carousel-control-next{
    opacity: 1;
    pointer-events: auto;
  }
}



/* ---------- INDICATORS ---------- */
/* ---------- CAROUSEL INDICATORS: kotak rounded ---------- */
.hero .carousel .carousel-indicators{
  left: 1rem;          /* jarak dari kiri */
  right: auto;         /* jangan full lebar */
  bottom: 1.25rem;     /* jarak dari bawah */
  margin: 0;           /* hilangkan margin default */
  width: auto;         /* biar selebar konten indikator saja */
  justify-content: flex-start; /* rata kiri, bukan center */
}
.carousel-indicators{
  gap: 8px;
  margin-bottom: 1.4rem;
}

.carousel-indicators [data-bs-target]{
  width: 12px;                 /* kotak */
  height: 12px;
  border-radius: 6px;          /* sudut bulat */
  background-color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.35);
  opacity: 1;                  /* jangan pudar */
}

.carousel-indicators .active{
  width: 24px;                 /* sedikit lebih panjang biar elegan */
  height: 12px;
  border-radius: 8px;          /* ujung lebih bulat */
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* ukuran sedikit lebih kecil di mobile */
@media (max-width: 991.98px){
  .carousel-indicators [data-bs-target]{ width: 10px; height: 10px; border-radius: 5px; }
  .carousel-indicators .active{ width: 20px; height: 10px; border-radius: 6px; }
}

@media (max-width: 991.98px){
  .hero .carousel .carousel-indicators{ left: 1rem; bottom: 5rem; }
}
@media (min-width: 992px){
  .hero .carousel .carousel-indicators{ left: 2rem; bottom: 1.5rem; }
}

/* Safety: sembunyikan menu mobile di desktop */
@media (min-width:992px){#mobileMenu{display:none!important}}


/* MOBILE: navbar overlay transparan di TOP, fixed saat scroll */
@media (max-width: 991.98px){
  /* saat di TOP (belum scroll): overlay di atas carousel */
  #mainNavbar{
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  /* saat sudah scroll (JS menambah .is-fixed & .is-scrolled) */
  #mainNavbar.is-fixed{ position: fixed; }
  #mainNavbar.is-scrolled{
    background: #fff !important;
    border-bottom-color: rgba(0,0,0,.06) !important;
    box-shadow: 0 6px 24px rgba(0,0,0,.06) !important;
  }
}

/* spacer default: tersembunyi; ditampilkan via JS saat fixed */
#navSpacer{ display: none; width: 100%; }


/* Ukuran logo */
.brand-logo{ height:36px; width:auto; display:block; }
@media (min-width:992px){ .brand-logo{ height:42px; } }

/* MOBILE: di TOP (navbar BELUM .is-scrolled) -> burger & border putih */
@media (max-width: 991.98px){
  
  #mainNavbar:not(.is-scrolled) .navbar-toggler-icon{
    /* ikon burger putih */
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.98)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

  /* Saat sudah scroll -> kembali normal (biar jelas) */
  #mainNavbar.is-scrolled .navbar-toggler{
    
    box-shadow: none !important;
    border-color: rgba(0,0,0,.15) !important;
  }
}

/*------*/

/* ukuran tombol ikon (lokasi & burger sama) */
.btn-icon{
  display: grid; place-items: center;
  border-radius: 12px;

  background: transparent;
}
.btn-icon i{ font-size: 20px; line-height: 1; }

/* LOKASI: tanpa outline/border */
.btn-locate{
  border: none !important;
  box-shadow: none !important;
}

/* Warna mengikuti state navbar (TOP = putih, scroll = gelap) */
@media (max-width: 991.98px){
  /* TOP (navbar belum .is-scrolled) */
  #mainNavbar:not(.is-scrolled) .btn-icon{ color: #fff; }
  #mainNavbar:not(.is-scrolled) .btn-locate{ box-shadow: none !important; } /* pastikan tanpa outline */
  

  /* SCROLL (navbar .is-scrolled) */
  #mainNavbar.is-scrolled .btn-icon{ color: #333; }
}


/* MATIKAN SEMUA OUTLINE/RING/BORDER tombol burger – final kill */
#mainNavbar .navbar-toggler,
#mainNavbar .navbar-toggler:focus,
#mainNavbar .navbar-toggler:active,
#mainNavbar .navbar-toggler:focus-visible {
  outline: none !important;              /* outline browser */
  box-shadow: none !important;            /* ring Bootstrap */
  -webkit-box-shadow: none !important;    /* Safari */
  border: none !important;                /* garis tepi */
  -webkit-tap-highlight-color: transparent;  /* highlight iOS */
}


/* === Cari Lokasi: rapi & overlap slider tipis === */
.feature .loc-card{
  max-width: 1100px;
  border-radius: 18px;
  margin-top: -64px;      /* sedikit “naik” ke area slider */
}
@media (min-width: 992px){ .feature .loc-card{ margin-top: -60px; } }

/* Form sizing konsisten */
.loc-form .loc-group .input-group-text{
  height: 52px; min-width: 48px;
  border-top-left-radius: 12px; border-bottom-left-radius: 12px;
  background:#fff;
}
.loc-form .loc-group .form-select,
.loc-form .loc-group .form-control{
  height: 52px;
  border-top-right-radius: 12px; border-bottom-right-radius: 12px;
}
.loc-form .form-select{ padding-right: 2.25rem; } /* ruang caret */
.loc-form .loc-group{ width:100%; }

/* Dropdown suggestion */
.suggestion-list{
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px; box-shadow: 0 10px 28px rgba(0,0,0,.08);
  max-height: 280px; overflow: auto; z-index: 20;
}
.suggestion-item{ padding: .625rem .875rem; cursor: pointer; }
.suggestion-item:hover{ background: #f6f7f9; }
.suggestion-empty{
  padding: .625rem .875rem; color: #6c757d; cursor: default;
}

/* Spacing mobile agar tidak “berantakan” */
@media (max-width: 991.98px){
  .loc-form .col-12 + .col-12{ margin-top: .25rem; }
  #btnDaftar{ height: 52px; }        /* sama tinggi dengan input */
}

/* style untuk item kosong di dropdown */
.suggestion-empty{
  display: flex; align-items: center; gap: .5rem;
  padding: .625rem .875rem;
  color: #6c757d;
}
.suggestion-empty i{ opacity: .8; }


/* ==== STAT KEUNGGULAN ==== */
.stat-feats{ --stat-accent:#a3a3a3; }
.stat-row{
  display:flex; align-items:stretch; gap:24px;
}
.stat-item{
  flex:1; text-align:center; padding:12px 8px; position:relative;
}
.stat-item + .stat-item::before{
  content:""; position:absolute; left:-12px; top:12px; bottom:12px;
  width:1px; background:rgba(0,0,0,.12); /* pemisah vertikal */
}
.stat-number{
  font-weight:600; color:var(--stat-accent);
  font-size:clamp(1.75rem,2.4vw + 1rem,2.75rem); line-height:1.1;
}
.stat-label{
  margin-top:.4rem; color:#111827; font-weight:600;
}

/* Pastikan item bisa mengecil dan tetap 1 baris */
.stat-item{ flex: 1 1 0; min-width: 0; }

/* Mobile: tetap row, tapi diperkecil ukurannya */
@media (max-width: 767.98px){
  .stat-row{ 
    flex-direction: row; 
    gap: 8px;                 /* lebih rapat */
  }
  .stat-item{ 
    padding: 8px 0; 
  }
  .stat-item + .stat-item::before{
    left: -8px;               /* sesuaikan dengan gap 8px */
    top: 8px; 
    bottom: 8px; 
    width: 1px; 
    height: auto;             /* pemisah tetap vertikal */
  }
  .stat-number{
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    font-weight: 500;         /* tipis */
    line-height: 1.1;
  }
  .stat-label{
    font-size: clamp(.72rem, 3.4vw, .9rem);
    font-weight: 400;         /* tipis */
    line-height: 1.2;
  }
}

/* ===== PRICING: warna hanya di header ===== */
.plan-card{
  background:#fff;                 /* body putih */
  color:#1f2937;                   /* teks gelap */
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  overflow:hidden;
  min-width:82vw;
  position:relative;
}

.plan-card .plan-head{
  padding:18px 16px 14px;
  color:#fff;                      /* teks header putih */
}

/* header gradient per-variant */
.plan-blue   .plan-head{ background:linear-gradient(160deg,#e31b54 0%, #b800ff 55%, #ff2e80 100%); }
.plan-orange .plan-head{ background:linear-gradient(160deg,#ff6d19 0%, #ff7f2f 55%, #ff9a54 100%); }
.plan-spid .plan-head{ background:linear-gradient(160deg,#1800d0 0%, #2fd9ff 55%, #070561 100%); }

/* angka kecepatan besar di header */
.plan-speed{ margin-top:.25rem; }
.plan-speed span{ font-size:40px; font-weight:700; line-height:1; }

/* area fitur (body) */
.plan-features{ list-style:none; padding:14px 16px; margin:0; }
.plan-features li{ display:flex; justify-content:space-between; gap:.75rem; margin:.45rem 0; }
.plan-features i{ color:#0d6efd; }                 /* ikon biru */
.plan-features strong{ color:#111; }

/* bar harga di bawah (seperti contoh) */
.plan-price{
  padding:14px 16px;
  border-top:1px solid rgba(0,0,0,.06);
  background:#fff;
}
.plan-price .amount{ font-size:1rem; color:#e31b54; } /* sesuaikan warna aksen */
.plan-price .amount strong{ font-size:1.6rem; font-weight:700; }
.plan-price .period{ font-size:.9rem; color:#6b7280; }

/* CTA di bawah harga */
.plan-cta{ padding:0 16px 16px; }
.plan-cta .btn{ border-radius:12px; }
.plan-cta .btn + .btn{ margin-top:.5rem; }

/* ribbon tetap */
.plan-ribbon{
  position:absolute; top:12px; right:12px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  color:#fff; padding:.22rem .55rem; border-radius:999px; font-size:.78rem;
  backdrop-filter: blur(4px);
}

/* MOBILE: horizontal scroll + snap */
@media (max-width: 991.98px){
  .plan-track{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .plan-card{
    min-width: 82vw;             /* lebar kartu saat digeser */
    scroll-snap-align: start;
    width: auto;
  }
}

/* DESKTOP: grid auto-fit, DICENTER */
@media (min-width: 992px){
  .plan-track{
    display: grid;
    /* kolom otomatis, kartu tidak melar jadi 1fr → bisa di-center */
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;     /* <== center otomatis */
    gap: 24px;
    overflow: visible;
  }
  .plan-card{
    min-width: 0;                /* matikan setelan mobile */
    width: clamp(280px, 24vw, 320px);
  }
}


/* 2) Isi kartu: paksa label kiri & nilai kanan sejajar */
.plan-card{ display: flex; flex-direction: column; }     /* biar bagian bawah rata */
.plan-cta{ margin-top: auto; }                            /* dorong CTA ke bawah */

.plan-features li{
  display: flex; align-items: center;
}
.plan-features li span{ 
  flex: 1; min-width: 0;                                  /* label kiri melebar */
}
.plan-features li strong{
  text-align: right; white-space: nowrap;                 /* nilai kanan nempel tepi */
}

/* ===== Insight Carousel (kartu) ===== */
.insight-section{
  background:
    radial-gradient(900px 300px at 10% -40%, rgba(13,110,253,.10), transparent 60%),
    radial-gradient(900px 300px at 95% -35%, rgba(255,109,25,.10), transparent 60%);
}

/* shell untuk posisikan tombol mobile */
.insight-shell{ position: relative; }

/* Track: horizontal scroll + snap */
.insight-track{
  display: flex; gap: 16px;
  overflow-x: auto; padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.insight-track::-webkit-scrollbar{ height: 8px; }
.insight-track::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.12); border-radius: 10px; }

/* Kartu */
.ins-card{
  scroll-snap-align: start;
  flex: 0 0 85vw;        /* mobile: 1 kartu layar */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  overflow: hidden;
}
@media (min-width: 768px){
  .ins-card{ flex: 0 0 calc(50% - 8px); } /* tablet: 2 per view */
}
@media (min-width: 992px){
  .ins-card{ flex: 0 0 calc(33.333% - 11px); } /* desktop: 3 per view */
}

.ins-media{ position: relative; }
.ins-media img{
  display: block; width: 100%; height: 160px; object-fit: cover;
}
.ins-tag{
  position: absolute; top: 10px; left: 10px;
  background: rgba(13,110,253,.95); color:#fff;
  font-size: .75rem; padding: .25rem .5rem; border-radius: 999px;
}

.ins-body{ padding: 14px; }
.ins-title{ margin: 0 0 .35rem; font-weight: 600; }
.ins-excerpt{ margin: 0 0 .75rem; color:#6b7280; }

.ins-meta{
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
}
.ins-author{ display:flex; align-items:center; gap:.6rem; }
.ins-author img{
  width:32px;height:32px;border-radius:50%;object-fit:cover;background:#e9ecef;
}
.ins-author .name{ font-weight:600; line-height:1; }
.ins-author .role{ color:#6b7280; }

/* tombol */
.btn-soft-primary{
  --c:#0d6efd;
  background: rgba(13,110,253,.12);
  border: 1px solid rgba(13,110,253,.18);
  color: var(--c);
}
.btn-soft-primary:hover{ background: rgba(13,110,253,.18); color: var(--c); }

/* Prev/Next */
.btn-nav{
  width:40px;height:40px;border-radius:12px;
  background:#fff;border:1px solid rgba(0,0,0,.10);
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  display:grid;place-items:center;
}
.btn-nav i{ font-size:18px;color:#6c5ce7; } /* ungu lembut */
.btn-nav:hover{ transform: translateY(-1px); }

/* Mobile nav (overlay kiri/kanan) */
.btn-nav-mobile{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index: 3;
}
.btn-nav-mobile.left{ left:-6px; }
.btn-nav-mobile.right{ right:-6px; }

/* Dots: bulat → aktif jadi pil rounded */
/* Perbaiki indikator insight */
.ins-dots .ins-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;          /* bulat, bukan cemet */
  background: #cfd3d8;         /* abu-abu */
  border: none;                 /* hilangkan border */
  outline: none;                /* hilangkan outline fokus */
  box-shadow: none;             
  padding: 0;
  appearance: none;             /* matikan style default button */
  -webkit-appearance: none;
  cursor: pointer;
}

/* yang aktif tetap pil (rounded) */
.ins-dots .ins-dot.active{
  width: 26px;
  height: 10px;
  border-radius: 999px;
  background: #0d6efd;
  border: none;
  outline: none;
  box-shadow: none;
}

/* kalau masih muncul ring saat fokus/klik */
.ins-dots .ins-dot:focus,
.ins-dots .ins-dot:active,
.ins-dots .ins-dot:focus-visible{
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}


/* Garis pemisah sebelum area author + tombol */
.ins-meta{
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: .75rem;
  margin-top: .75rem;
}

/* Tombol prev/next di header (semua ukuran) */
.insight-nav .btn-nav{
  width: 36px; height: 36px; border-radius: 12px;
  background:#fff; border:1px solid rgba(0,0,0,.10);
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  display:grid; place-items:center;
}
.insight-nav .btn-nav i{ font-size:18px; color:#6c5ce7; }

/* Desktop sedikit lebih besar */
@media (min-width:992px){
  .insight-nav .btn-nav{ width: 40px; height: 40px; }
}

/* Matikan tombol overlay mobile lama kalau masih ada */
.btn-nav-mobile{ display:none !important; }


/* ====== FAQ Style (mirip referensi) ====== */
:root{
  --faq-divider:#e8edf3;
  --faq-title:#0b2b5e;  /* biru gelap */
  --faq-text:#12263a;   /* teks */
  --faq-accent:#e81f3f; /* merah chevron */
}

#faq .faq{ max-width: 920px; margin: 0 auto; }
#faq h2{ letter-spacing:.3px; }

.faq-item{
  border-top:1px solid var(--faq-divider);
}
.faq-item:last-child{
  border-bottom:1px solid var(--faq-divider);
}

.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 12px;
  background:transparent;
  border:0;
  text-align:left;
  font-weight:800;
  color:var(--faq-title);
  font-size:clamp(18px, 2.6vw, 28px);
  line-height:1.2;
  outline:none;
}
.faq-q:focus-visible{ box-shadow:0 0 0 3px rgba(232,31,63,.15); border-radius:8px; }

.faq-q .chev{
  transition: transform .25s ease;
}
.faq-item.is-open .faq-q .chev{
  transform: rotate(180deg);
}

.faq-a{
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
  will-change: max-height;
  padding:0 12px 0 12px;
}
.faq-item.is-open .faq-a{
  padding-bottom:18px;
}
.faq-a p{
  margin:0 0 6px 0;
  color:var(--faq-text);
  font-size:clamp(14px, 1.6vw, 18px);
}

/* ====== Banner CTA FAQ ====== */
/* ===== CTA persis seperti sample ===== */
.ih-cta-wrap{
  /* bayangan tipis mengambang seperti contoh */
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.ih-cta{
  /* tinggi bar dan align tengah */
  height: 84px;                       /* match visual */
  display:flex; align-items:center;
  gap: 28px;
  padding: 0 28px;
  border-radius: 2px;                  /* sudut nyaris kotak */
  /* gradasi biru gelap -> biru */
  background: linear-gradient(90deg,#0c2b53 0%, #143c69 100%);
  color:#fff;
}
/* teks kiri: tebal, ukuran sesuai contoh */
.ih-cta-text{
  font-weight: 800;
  font-size: 24px;                     /* ≈ sample */
  letter-spacing:.2px;
  white-space: nowrap;
}
/* garis tipis di tengah */
.ih-cta-divider{
  flex:1 1 auto;
  height: 1px;                         /* gunakan pseudo container */
  position: relative;
}
.ih-cta-divider::after{
  content:"";
  position:absolute;
  right:0; top:50%;
  transform: translateY(-50%);
  width:1px; height:32px;              /* tinggi garis di gambar */
  background: rgba(255,255,255,.7);
}

/* tombol oval border putih tipis */
.ih-cta-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 18px;
  border:1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  color:#fff; text-decoration:none;
  font-size: 16px;
  line-height:1;
  transition: background .2s ease,border-color .2s ease, box-shadow .2s ease;
}
.ih-cta-btn:hover{
  background: rgba(255,255,255,.12);
  border-color:#fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,.12) inset;
}
.ih-cta-btn svg{ display:block }

/* responsif agar tetap mirip di tablet/HP */
@media (max-width: 992px){
  .ih-cta{ height:78px; padding:0 20px; gap:20px }
  .ih-cta-text{ font-size:20px }
  .ih-cta-divider::after{ height:28px }
  .ih-cta-btn{ padding:8px 16px; font-size:15px }
}
@media (max-width: 576px){
  .ih-cta{
    height: auto;
    padding: 12px 14px;
    gap: 10px;
    flex-wrap: nowrap; /* jangan pindah ke bawah */
  }
  .ih-cta-text{
    font-size: 14px;   /* diperkecil supaya muat */
    white-space: normal; /* tetap bisa wrap jika kepanjangan */
    flex: 1;
  }
  .ih-cta-divider{
    flex: 0 0 auto;
  }
  .ih-cta-divider::after{
    height: 24px;
  }
  .ih-cta-btn{
    padding: 6px 12px;
    font-size: 13px;
    flex-shrink: 0; /* cegah tombol mengecil terlalu kecil */
  }
}


/* judul lebih kecil */
.section-title.small{
  color:#0b2b5e;
  font-weight:800;
  font-size:clamp(22px,3.2vw,36px); /* diperkecil */
  line-height:1.2;
  margin:0;
}
/* garis merah di atas judul */
.section-accent{
  display:inline-block; width:110px; height:5px;
  background:#ff6d19; border-radius:4px;
}

/* card seragam */
.feat-card{
  border:1px solid #eef1f5;
  border-radius:16px;
  padding:18px 10px;
  background:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  min-height:140px;          /* seragam */
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feat-card:hover{
  transform: translateY(-2px);
  box-shadow:0 8px 24px rgba(6,24,44,.08);
  border-color:#e8edf3;
}

/* ikon bulat */
.feat-icon{
  width:64px; height:64px;
  border-radius:50%;
  display:grid; place-items:center;
  margin-bottom:10px;
  background: radial-gradient(125% 125% at 30% 30%, #ff6d19 0%, #ff6d19 55%, #ff6d19 100%);
  color:#fff;
}
.feat-icon i{ font-size:28px; line-height:1; }

/* label */
.feat-label{
  color:#0b2b5e; font-weight:700; font-size:14px; letter-spacing:.2px;
}

/* responsif */
@media (min-width:768px){
  .feat-card{ min-height:160px; padding:22px 12px; }
  .feat-icon{ width:72px; height:72px; }
  .feat-icon i{ font-size:30px; }
  .feat-label{ font-size:15px; }
}

  /* ===== Section 1 (Hero Kontak) ===== */
   /* Section 1 */
  .contact-hero {
    background: var(--dark);
    color: #fff;
    padding: 72px 0 120px;
  }
  .contact-hero h1 {
    font-weight: 800;
  }
  .contact-hero .accent {
    color: var(--orange);
  }
  .cs-illustration {
    max-width: 520px;
  }
  @media (max-width: 991.98px) {
    .cs-illustration {
      display: none;
    }
  }

  /* Card */
  .contact-card {
    margin-top: -96px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 38, 66, 0.12);
  }
  .contact-left {
    background: var(--dark);
    color: #fff;
    padding: 40px;
  }
  .contact-left .info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }
  .contact-left i {
    font-size: 1.2rem;
    color: var(--orange);
  }
  .contact-right {
    background: #fff;
    padding: 40px;
  }

  /* Form style persis gambar */
  .form-control,
  .form-check-input {
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.15);
  }
  .subject-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .subject-options .form-check {
    background: #f6f8fb;
    border-radius: 50px;
    padding: 6px 16px;
    border: 1px solid #e6edf5;
  }
  .btn-send {
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-send:hover {
    filter: brightness(0.95);
  }