/* =========================
   NUCLEAR RESET LAYOUT
========================= */

html, body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  padding-top: 0 !important;
}

/* MATIKAN SEMUA SPACER */
.navbar-spacer,
.page-spacer,
.header-spacer {
  display: none !important;
  height: 0 !important;
}

/* =========================
   NAVBAR FIXED HEIGHT
========================= */
.main-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  z-index: 9999;
}

/* =========================
   HERO FORCE ATTACH
========================= */
.hero-slider {
  position: relative;
  margin-top: 96px !important;
  padding-top: 0 !important;
  height: calc(100vh - 96px);
  overflow: hidden;
  background: #000;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 991px) {
  .main-navbar {
    height: 72px;
  }

  .hero-slider {
    margin-top: 72px !important;
    height: calc(100vh - 72px);
  }
}


/* =========================
   TOPBAR
========================= */
.topbar {
  height: 36px;
  background: #0b0e11;
  color: #000;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #ccc;
  text-decoration: none;
}

.topbar a:hover {
  color: #facc15;
}


/* =========================
   TOPBAR
========================= */
.topbar {
  height: 36px;
  background: #0b0e11;
  color: #ccc;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #ccc;
  text-decoration: none;
}

.topbar a:hover {
  color: #facc15;
}


/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  margin-top: 108px; /* = topbar + navbar */
  width: 100%;
  height: calc(100vh - 108px);
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

/* Background image */
.hero-slider .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 40px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-title .text-accent {
  color: #facc15;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 520px;
  margin-top: 16px;
  color: #ddd;
}


@media (max-width: 991px) {

  .topbar {
    display: none;
  }

  .main-navbar {
    top: 0;
    height: 64px;
  }

  .hero-slider {
    margin-top: 64px;
    height: calc(100vh - 64px);
  }

  .hero-title {
    font-size: 32px;
  }
}
footer img,
.footer-logo,
.footer-brand img {
  position: static !important;
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
  z-index: 1;
}
.hero-slider {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.main-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navbar-spacer {
  height: 80px; /* sesuaikan tinggi navbar */
}
/* =========================================================
   ARUTALA — ULTRA PREMIUM CSS (FROM ZERO)
   Works with: Bootstrap 5 + your classes
   ========================================================= */

/* ---------- 0) RESET + BASE ---------- */
:root{
  --bg: #0b0f14;
  --surface: #0f1620;
  --surface-2: #121c28;
  --text: #e9eef6;
  --muted: rgba(233,238,246,.72);

  --brand: #f4c430;     /* gold */
  --brand-2: #ff3b5c;   /* accent red/pink */
  --line: rgba(255,255,255,.10);

  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.25);

  --radius: 16px;
  --radius-lg: 22px;

  --nav-h: 78px;
  --topbar-h: 34px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #fff; /* content background */
  overflow-x: hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ text-decoration:none; }
.container{ position:relative; }

/* If you previously had weird absolute elements */
section, footer{ position:relative; z-index:1; }

/* ---------- 1) TOPBAR (optional but recommended) ---------- */
/* If your topbar uses class .topbar */
.topbar{
  position:fixed;
  top:0; left:0; right:0;
  height: var(--topbar-h);
  z-index: 1200;
  background: linear-gradient(180deg, rgba(10,14,20,.92), rgba(10,14,20,.75));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.topbar .topbar-left,
.topbar .topbar-right{
  display:flex; align-items:center; gap:16px;
  font-size:13px;
  color: rgba(255,255,255,.78);
}
.topbar .topbar-left i,
.topbar .topbar-right i{ opacity:.9; }
.topbar a{
  color: rgba(255,255,255,.82);
}
.topbar a:hover{ color:#fff; }
.topbar .wa-link{
  color: var(--brand);
  font-weight: 700;
  letter-spacing:.2px;
}

/* ---------- 2) MAIN NAVBAR (sticky, premium) ---------- */
.main-navbar{
  position:fixed;
  top: var(--topbar-h);
  left:0; right:0;
  z-index: 1100;
  height: var(--nav-h);
  padding: 10px 0;
  background: radial-gradient(1200px 220px at 50% 0%, rgba(255,255,255,.10), transparent 60%),
              linear-gradient(180deg, rgba(12,18,26,.92), rgba(10,14,20,.88));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.main-navbar .navbar-brand{
  gap: 12px;
  padding:0;
}

/* logo */
.logo-header{
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
  border-radius: 10px;
}

/* optional: brand text beside logo (you asked “samping logo ada tulisan itu”) */
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-text .brand-title{
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255,255,255,.92);
}
.brand-text .brand-tagline{
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(244,196,48,.88);
}

/* nav links */
.main-navbar .navbar-nav .nav-link{
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  letter-spacing: .2px;
  transition: all .25s ease;
}
.main-navbar .navbar-nav .nav-link:hover{
  color:#fff;
  background: rgba(255,255,255,.07);
}
.main-navbar .navbar-nav .nav-link.active{
  color: var(--brand);
  background: rgba(244,196,48,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.20);
}

/* CTA button (WhatsApp Sales) */
.main-navbar .btn.btn-danger{
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: .2px;
  background: linear-gradient(180deg, rgba(255,72,97,1), rgba(230,42,72,1));
  box-shadow: 0 18px 40px rgba(230,42,72,.22);
}
.main-navbar .btn.btn-danger:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(230,42,72,.28);
}

/* mobile collapse panel */
.main-navbar .navbar-collapse{
  border-radius: 18px;
}
@media (max-width: 991.98px){
  .main-navbar{
    height: auto;
    padding: 10px 0;
  }
  .main-navbar .navbar-collapse{
    margin-top: 10px;
    background: rgba(10,14,20,.92);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-soft);
    padding: 10px;
  }
  .main-navbar .nav-cta .btn{
    border-radius: 14px;
    padding: 12px 14px;
  }
}

/* spacer so content doesn’t hide behind fixed bars */
.navbar-spacer{
  height: calc(var(--topbar-h) + var(--nav-h));
}

/* ---------- 3) HERO SLIDER (premium + responsive) ---------- */
.hero-slider{
  position:relative;
  z-index: 2;
  background: #0b0f14;
}

/* If hero should touch navbar nicely */
.hero-slider .carousel{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.hero-slide{
  min-height: calc(100vh - (var(--topbar-h) + var(--nav-h)));
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  position:relative;
  overflow:hidden;
}

/* overlay: deep cinematic */
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 18% 45%, rgba(0,0,0,.58), transparent 55%),
    linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.22) 65%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}

/* hero content box */
.hero-content{
  position:relative;
  padding: 42px 0;
  max-width: 640px;
}

/* badge */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* title */
.hero-title{
  margin: 14px 0 10px;
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1.05;
  font-size: clamp(32px, 4.6vw, 60px);
  color: #fff;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.hero-title span{
  color: var(--brand);
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* subtitle */
.hero-subtitle{
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.78);
  font-size: 15.5px;
  line-height: 1.65;
}

/* actions */
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-actions .btn{
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 800;
  letter-spacing: .2px;
}
.hero-actions .btn.btn-danger{
  background: linear-gradient(180deg, rgba(255,72,97,1), rgba(230,42,72,1));
  border: 0;
  box-shadow: 0 18px 40px rgba(230,42,72,.22);
}
.hero-actions .btn.btn-danger:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(230,42,72,.28);
}
.hero-actions .btn.btn-outline-light{
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.hero-actions .btn.btn-outline-light:hover{
  background: rgba(255,255,255,.10);
}

/* carousel arrows */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{
  width: 9%;
  opacity: 1;
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon{
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.55));
}

/* progress bar (optional, if you use .hero-progress) */
.hero-progress{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 3px;
  background: rgba(255,255,255,.10);
  z-index: 5;
}
.hero-progress-bar{
  display:block;
  height:100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 30px rgba(244,196,48,.25);
  animation: heroProgress 6s linear infinite;
}
@keyframes heroProgress{
  from{ width:0%; }
  to{ width:100%; }
}

/* responsive hero */
@media (max-width: 991.98px){
  .hero-content{ padding: 28px 0; max-width: 92%; }
  .hero-overlay{
    background:
      radial-gradient(700px 360px at 18% 45%, rgba(0,0,0,.62), transparent 55%),
      linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.60) 45%, rgba(0,0,0,.30) 100%);
  }
}

/* ---------- 4) SECTION HEADER (used in brands, etc.) ---------- */
.section-header{
  padding: 56px 0 18px;
}
.section-header h2{
  margin:0 0 8px;
  color:#111827;
  font-weight: 950;
  letter-spacing: -0.6px;
  font-size: clamp(22px, 2.4vw, 34px);
}
.section-header p{
  margin:0 auto;
  max-width: 780px;
  color: rgba(17,24,39,.72);
  line-height: 1.7;
  font-size: 15px;
}

/* ---------- 5) BRANDS (Marquee ultra clean) ---------- */
.brand-slider-light{
  background:#fff;
  padding: 10px 0 26px;
}

/* Full width marquee wrapper */
.brand-marquee{
  position:relative;
  overflow:hidden;
  width:100%;
  padding: 16px 0;
  border-top: 1px solid rgba(17,24,39,.08);
  border-bottom: 1px solid rgba(17,24,39,.08);
  background: linear-gradient(180deg, #ffffff, #fafafa);
}

/* soft fade edges */
.brand-marquee::before,
.brand-marquee::after{
  content:"";
  position:absolute; top:0; bottom:0;
  width: 90px;
  z-index: 2;
  pointer-events:none;
}
.brand-marquee::before{
  left:0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.brand-marquee::after{
  right:0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}

/* the moving track */
.brand-track{
  display:flex;
  align-items:center;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: marquee 22s linear infinite;
}
.brand-item{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 52px;
  padding: 0 6px;
  filter: grayscale(0);
  opacity: .86;
  transition: all .25s ease;
}
.brand-item img{
  height: 40px;
  width: auto;
  object-fit: contain;
}
.brand-item:hover{
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

/* marquee animation */
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* slow down on mobile */
@media (max-width: 767.98px){
  .brand-track{ animation-duration: 30s; gap: 18px; }
  .brand-item{ height: 46px; }
  .brand-item img{ height: 34px; }
  .brand-marquee::before,
  .brand-marquee::after{ width: 48px; }
}

/* Pause on hover (desktop) */
@media (hover:hover){
  .brand-marquee:hover .brand-track{ animation-play-state: paused; }
}

/* ---------- 6) SAFETY FIX (anti “logo niban hero”) ---------- */
/* If any footer/logo accidentally absolute/fixed, force normal flow */
footer img,
.footer-logo,
.footer-brand img{
  position: static !important;
}

/* ---------- 7) OPTIONAL: smooth reveal hooks (if you use reveal classes) ---------- */
.reveal-up, .reveal-fade{ will-change: transform, opacity; }

/* end */
body {
  padding-top: 0 !important;
}
/* ===============================
   FINAL NAVBAR + HERO FIX
================================ */

/* Tinggi real topbar + navbar */
:root {
  --topbar-height: 32px;
  --navbar-height-desktop: 72px;
  --navbar-height-mobile: 64px;
}

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-height);
  z-index: 1001;
}

/* NAVBAR */
.main-navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  height: var(--navbar-height-desktop);
  z-index: 1000;
}

/* HERO OFFSET — INI KUNCINYA */
.hero-slider {
  margin-top: calc(
    var(--topbar-height) + var(--navbar-height-desktop)
  );
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {

  .topbar {
    position: relative;
    height: auto;
  }

  .main-navbar {
    top: 0;
    height: var(--navbar-height-mobile);
  }

  .hero-slider {
    margin-top: var(--navbar-height-mobile);
  }
}
.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-item {
  padding-top: 0 !important;
}
/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */
.featured-products{
  background:#f8fafc;
  padding: 72px 0;
}

.featured-products h2{
  text-align:center;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:8px;
  color:#0f172a;
}

.featured-products .subtitle{
  text-align:center;
  max-width:720px;
  margin:0 auto 48px;
  color:#475569;
  font-size:15px;
}

/* GRID */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:28px;
}

/* CARD */
.product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition: all .35s ease;
  display:flex;
  flex-direction:column;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow:0 28px 60px rgba(0,0,0,.14);
}

/* IMAGE */
.product-image{
  position:relative;
  overflow:hidden;
}
.product-image img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition: transform .5s ease;
}
.product-card:hover .product-image img{
  transform: scale(1.05);
}

/* BRAND BADGE */
.brand-badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  color:#fff;
}
.brand-badge.red{ background:#e11d48; }
.brand-badge.blue{ background:#2563eb; }
.brand-badge.yellow{
  background:#facc15;
  color:#111;
}

/* CONTENT */
.product-content{
  padding:22px;
  flex:1;
}
.product-content h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:6px;
  color:#0f172a;
}
.product-content p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* BUTTON */
.btn-outline{
  margin-top:14px;
  display:inline-block;
  padding:10px 18px;
  border-radius:12px;
  border:2px solid #e11d48;
  color:#e11d48;
  font-weight:800;
  font-size:13px;
  transition:.25s;
}
.btn-outline:hover{
  background:#e11d48;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){
  .product-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:575px){
  .product-grid{ grid-template-columns:1fr; }
}
/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-choose-section{
  background:#fff;
  padding:80px 0;
}

.why-header h2{
  font-weight:900;
  margin-bottom:6px;
  color:#0f172a;
}
.why-header p{
  color:#475569;
}

.why-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:24px;
}

.why-card{
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  border-radius:20px;
  padding:28px 22px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:.35s;
  text-align:center;
}
.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(0,0,0,.14);
}

.why-icon{
  font-size:28px;
  margin-bottom:12px;
  color:#e11d48;
}

.why-card h5{
  font-weight:800;
  margin-bottom:6px;
  color:#0f172a;
}
.why-card p{
  font-size:14px;
  color:#475569;
}

/* RESPONSIVE */
@media(max-width:991px){
  .why-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:575px){
  .why-grid{ grid-template-columns:1fr; }
}
/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries-section{
  background:#f8fafc;
  padding:80px 0;
}

.section-title{
  text-align:center;
  font-weight:900;
  color:#0f172a;
}
.section-subtitle{
  text-align:center;
  color:#475569;
  margin-bottom:46px;
}

.industries-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:26px;
}

.industry-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  height:220px;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
}
.industry-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .5s ease;
}
.industry-card:hover img{
  transform:scale(1.08);
}

.industry-card span{
  position:absolute;
  bottom:16px;
  left:16px;
  padding:8px 14px;
  background:rgba(0,0,0,.65);
  color:#fff;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .industries-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:575px){
  .industries-grid{ grid-template-columns:1fr; }
}
/* =========================================================
   CTA
   ========================================================= */
.cta-section{
  background: linear-gradient(135deg,#7f1d1d,#e11d48);
  color:#fff;
  padding:90px 0;
}

.cta-eyebrow{
  font-size:12px;
  letter-spacing:1.2px;
  opacity:.9;
}

.cta-section h2{
  font-weight:900;
  margin:10px 0;
}

.cta-section p{
  opacity:.9;
  max-width:620px;
  margin:0 auto 28px;
}

.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background:#0b0f14;
  color:#cbd5f5;
  padding:70px 0 30px;
}

footer h6{
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
}

footer p,
footer li{
  font-size:14px;
  line-height:1.7;
  color:#94a3b8;
}

footer a{
  color:#94a3b8;
}
footer a:hover{
  color:#fff;
}

footer .footer-logo img{
  max-width:120px;
  margin-bottom:14px;
}

footer .authorized-brands img{
  max-height:38px;
  margin:6px;
}

.footer-bottom{
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:18px;
  text-align:center;
  font-size:13px;
  color:#94a3b8;
}
/* =========================================================
   CTA SHINY METALLIC RED
   ========================================================= */
.cta-section{
  position: relative;
  padding: 96px 0;
  color:#fff;
  overflow:hidden;

  background:
    linear-gradient(135deg,
      #5f0f17 0%,
      #8b111f 25%,
      #e11d48 50%,
      #a31224 75%,
      #5f0f17 100%);
}

/* METALLIC SHINE OVERLAY */
.cta-section::before{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 30%,
      rgba(255,255,255,.18) 45%,
      rgba(255,255,255,.35) 50%,
      rgba(255,255,255,.18) 55%,
      rgba(255,255,255,0) 70%
    );
  animation: shineMove 6s linear infinite;
}

/* SOFT DEPTH SHADOW */
.cta-section::after{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top,
    rgba(255,255,255,.15),
    transparent 60%);
}

@keyframes shineMove{
  from{ transform: translateX(-40%); }
  to{ transform: translateX(40%); }
}

.cta-inner{
  position:relative;
  z-index:2;
}

/* TEXT */
.cta-eyebrow{
  font-size:12px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  opacity:.9;
}

.cta-section h2{
  font-size:34px;
  font-weight:900;
  letter-spacing:-.6px;
  margin:12px 0;
  text-shadow:0 4px 20px rgba(0,0,0,.4);
}

.cta-section p{
  max-width:620px;
  margin:0 auto 30px;
  opacity:.92;
  font-size:15px;
}

/* BUTTONS */
.cta-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.cta-actions .btn{
  padding:14px 26px;
  border-radius:14px;
  font-weight:900;
}

.cta-actions .btn-light{
  background:#fff;
  color:#8b111f;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.cta-actions .btn-outline-light{
  border:2px solid rgba(255,255,255,.8);
  color:#fff;
}
/* =========================================================
   FOOTER ULTRA PREMIUM
   ========================================================= */
footer{
  background:
    linear-gradient(180deg,#0b0f14 0%, #020617 100%);
  color:#94a3b8;
  padding:90px 0 30px;
  position:relative;
}

/* TOP ACCENT LINE */
footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,
    transparent,
    #facc15,
    transparent);
}

/* LOGO */
.footer-logo img{
  max-width:140px;
  margin-bottom:18px;
}

/* TITLES */
footer h6{
  color:#fff;
  font-weight:900;
  letter-spacing:.4px;
  margin-bottom:14px;
}

/* TEXT */
footer p,
footer li{
  font-size:14px;
  line-height:1.75;
  color:#94a3b8;
}

/* LINKS */
footer a{
  color:#94a3b8;
  transition:.2s;
}
footer a:hover{
  color:#facc15;
}

/* LIST */
footer ul{
  list-style:none;
  padding:0;
}
footer li{
  margin-bottom:6px;
}

/* AUTHORIZED BRANDS */
.footer-brands{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-brands img{
  max-height:36px;
  filter:grayscale(1) brightness(.9);
  transition:.3s;
}
.footer-brands img:hover{
  filter:none;
}

/* MAP */
.footer-map iframe{
  width:100%;
  height:160px;
  border-radius:14px;
  border:none;
}

/* BOTTOM */
.footer-bottom{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:13px;
  color:#64748b;
}

/* MOBILE */
@media(max-width:575px){
  footer{
    padding:70px 0 26px;
  }
}
/* =========================================================
   ULTRA PREMIUM FOOTER – ENTERPRISE INDUSTRIAL
   ========================================================= */

.site-footer{
  position:relative;
  background:
    radial-gradient(circle at top,
      rgba(255,255,255,.05),
      transparent 60%),
    linear-gradient(180deg,#0b0f14 0%, #020617 100%);
  color:#9ca3af;
  padding:90px 0 30px;
  overflow:hidden;
  font-size:14px;
}

/* GOLD ACCENT LINE */
.site-footer::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:70%;
  height:2px;
  background:linear-gradient(90deg,
    transparent,
    #facc15,
    transparent);
  opacity:.8;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap:40px;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
}

/* =========================================================
   COMPANY COLUMN
   ========================================================= */
.footer-logo{
  max-width:150px;
  margin-bottom:18px;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.45));
}

.company-desc{
  color:#9ca3af;
  line-height:1.8;
  margin-bottom:18px;
}

/* BADGES */
.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-badges span{
  font-size:11px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(250,204,21,.12);
  color:#facc15;
  letter-spacing:.4px;
}

/* =========================================================
   TITLES
   ========================================================= */
.site-footer h4{
  font-size:15px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:18px;
  position:relative;
}

.site-footer h4::after{
  content:'';
  display:block;
  width:28px;
  height:2px;
  margin-top:6px;
  background:#facc15;
  opacity:.8;
}

/* =========================================================
   CONTACT
   ========================================================= */
.footer-contact li{
  margin-bottom:14px;
  line-height:1.7;
}
.footer-contact strong{
  color:#e5e7eb;
  font-weight:700;
}

/* =========================================================
   LINKS
   ========================================================= */
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  color:#9ca3af;
  text-decoration:none;
  position:relative;
  padding-left:14px;
  transition:.25s ease;
}
.footer-links a::before{
  content:'›';
  position:absolute;
  left:0;
  color:#facc15;
  opacity:.7;
}
.footer-links a:hover{
  color:#facc15;
}

/* =========================================================
   AUTHORIZED BRANDS
   ========================================================= */
.footer-brands{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer-brands img{
  max-height:38px;
  padding:6px 10px;
  border-radius:10px;
  background:rgba(255,255,255,.03);
  filter:grayscale(0) brightness(.9);
  transition:.3s ease;
}
.footer-brands img:hover{
  filter:none;
  background:rgba(255,255,255,.08);
  transform:translateY(-2px);
}

/* =========================================================
   MAP
   ========================================================= */
.footer-map iframe{
  width:100%;
  height:170px;
  border:none;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */
.footer-bottom{
  margin-top:60px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:13px;
  color:#6b7280;
}

.footer-bottom .trust{
  margin-top:6px;
  color:#facc15;
  font-weight:700;
  letter-spacing:.6px;
}
/* ================= TOP BAR ================= */
.topbar{
  background:linear-gradient(180deg,#0b0f14,#020617);
  font-size:13px;
  font-weight:600;
  color:#e5e7eb;
}

.topbar a{
  color:#e5e7eb;
  text-decoration:none;
}

.topbar i{
  color:#facc15; /* gold accent */
  margin-right:6px;
}

.topbar span,
.topbar a{
  opacity:1;
  letter-spacing:.3px;
}
/* ================= WHATSAPP BUTTON ================= */
.btn-whatsapp{
  background:#25D366;
  color:#fff !important;
  font-weight:700;
  border-radius:14px;
  padding:12px 22px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:
    0 12px 28px rgba(37,211,102,.45),
    inset 0 0 0 rgba(255,255,255,0);
  transition:.35s cubic-bezier(.4,0,.2,1);
}

.btn-whatsapp:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
  box-shadow:
    0 18px 40px rgba(37,211,102,.6);
}

/* ICON */
.btn-whatsapp svg{
  width:20px;
  height:20px;
  fill:#fff;
}
/* ================= HERO CINEMATIC ================= */
.hero-slider{
  position:relative;
  overflow:hidden;
}

.hero-slide{
  min-height:88vh;
  background-size:cover;
  background-position:center;
  position:relative;
  transform:scale(1.08);
  animation:heroZoom 12s linear infinite;
}

@keyframes heroZoom{
  0%{transform:scale(1.08)}
  100%{transform:scale(1.15)}
}

/* OVERLAY CINEMATIC */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.75) 0%,
      rgba(0,0,0,.45) 45%,
      rgba(0,0,0,.25) 100%),
    radial-gradient(circle at center,
      rgba(255,200,80,.08),
      transparent 60%);
  z-index:1;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.hero-badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  padding:8px 16px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#facc15;
}

.hero-title{
  font-size:clamp(36px,5vw,64px);
  font-weight:900;
  line-height:1.1;
  margin-bottom:18px;
  text-shadow:0 12px 40px rgba(0,0,0,.7);
}

.hero-title span{
  color:#facc15;
}

.hero-subtitle{
  max-width:520px;
  font-size:18px;
  line-height:1.7;
  color:#e5e7eb;
  margin-bottom:30px;
}

/* HERO BUTTONS */
.hero-actions .btn{
  padding:14px 26px;
  font-weight:700;
  border-radius:14px;
}
/* ================= HERO CINEMATIC ================= */
.hero-slider{
  position:relative;
  overflow:hidden;
}

.hero-slide{
  min-height:88vh;
  background-size:cover;
  background-position:center;
  position:relative;
  transform:scale(1.08);
  animation:heroZoom 12s linear infinite;
}

@keyframes heroZoom{
  0%{transform:scale(1.08)}
  100%{transform:scale(1.15)}
}

/* OVERLAY CINEMATIC */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.75) 0%,
      rgba(0,0,0,.45) 45%,
      rgba(0,0,0,.25) 100%),
    radial-gradient(circle at center,
      rgba(255,200,80,.08),
      transparent 60%);
  z-index:1;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.hero-badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  padding:8px 16px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#facc15;
}

.hero-title{
  font-size:clamp(36px,5vw,64px);
  font-weight:900;
  line-height:1.1;
  margin-bottom:18px;
  text-shadow:0 12px 40px rgba(0,0,0,.7);
}

.hero-title span{
  color:#facc15;
}

.hero-subtitle{
  max-width:520px;
  font-size:18px;
  line-height:1.7;
  color:#e5e7eb;
  margin-bottom:30px;
}

/* HERO BUTTONS */
.hero-actions .btn{
  padding:14px 26px;
  font-weight:700;
  border-radius:14px;
}
/* ================= HERO CINEMATIC POLISH ================= */
.hero-slider{
  position:relative;
  overflow:hidden;
  background:#000;
}

/* SLIDE */
.hero-slide{
  min-height:90vh;
  background-size:cover;
  background-position:center;
  position:relative;
  animation:cinematicZoom 14s linear infinite;
  will-change:transform;
}

@keyframes cinematicZoom{
  from{ transform:scale(1.08); }
  to{ transform:scale(1.16); }
}

/* OVERLAY LAYER */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.85) 0%,
      rgba(0,0,0,.55) 45%,
      rgba(0,0,0,.25) 100%
    ),
    radial-gradient(
      ellipse at center,
      rgba(255,215,120,.08),
      rgba(0,0,0,.85) 70%
    );
}
/* ================= FILM GRAIN ================= */
.hero-slider::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  opacity:.12;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero-content{
  position:relative;
  z-index:4;
}

.hero-badge{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  padding:8px 18px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:1.4px;
  color:#facc15;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
}

.hero-title{
  font-size:clamp(38px,5.2vw,68px);
  font-weight:900;
  letter-spacing:-.5px;
  text-shadow:
    0 10px 40px rgba(0,0,0,.75),
    0 0 30px rgba(255,200,100,.15);
}

.hero-title span{
  color:#facc15;
}

.hero-subtitle{
  font-size:18px;
  line-height:1.7;
  color:#e5e7eb;
  max-width:560px;
  text-shadow:0 6px 24px rgba(0,0,0,.6);
}
.carousel-fade .carousel-item{
  transition:opacity 1.4s ease-in-out;
}
/* ================= TOP BAR ================= */
.topbar{
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f3f4f6 100%
  );
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
  position: relative;
  z-index: 1100;
}
.topbar,
.topbar a,
.topbar span{
  color:#111827 !important; /* HITAM TAJAM */
  font-weight:600;
  text-shadow:none !important;
  opacity:1 !important;
}
.topbar i,
.topbar svg{
  color:#dc2626; /* merah premium */
  margin-right:6px;
}
.topbar .topbar-whatsapp{
  color:#16a34a !important;
  font-weight:700;
  text-decoration:none;
}

.topbar .topbar-whatsapp:hover{
  text-decoration:underline;
}
.main-navbar{
  top:40px; /* tinggi topbar */
}
@media(max-width:768px){
  .topbar{
    font-size:13px;
  }
}
/* ================= TOPBAR RESET ================= */
.topbar{
  all: unset;
  display: block;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}
.topbar *{
  color: #111827 !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
}
.topbar-whatsapp{
  color:#25D366 !important;
  font-weight:700;
  text-decoration:none;
}

.topbar-whatsapp:hover{
  text-decoration:underline;
}
.main-navbar{
  top: 40px;
}
@media(max-width:768px){
  .topbar{
    font-size:13px;
  }

  .topbar-left span{
    display:block;
    line-height:1.4;
  }
}
/* ================= TOPBAR AUTO HIDE ================= */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 2000;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

/* Topbar disembunyikan */
.topbar.hide{
  transform: translateY(-100%);
}

/* Navbar default ikut turun */
.main-navbar{
  top: 40px;
  transition: top .35s cubic-bezier(.4,0,.2,1);
}

/* Navbar naik saat topbar hilang */
.main-navbar.topbar-hidden{
  top: 0;
}
/* ===== TOPBAR ===== */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #fff;
  z-index: 3000;
  transition: transform .3s ease;
}

.topbar.hide{
  transform: translateY(-100%);
}

/* ===== NAVBAR ===== */
.main-navbar{
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 2500;
  background: linear-gradient(180deg,#0b0f14,#141a22);
  transition: top .3s ease;
}

/* navbar naik saat topbar hide */
.main-navbar.topbar-hidden{
  top: 0;
}

/* ===== PAGE OFFSET ===== */
body{
  padding-top: 112px; /* 40 + 72 */
}

.topbar.hide ~ .main-navbar{
  top: 0;
}

/* ================= CTA SECTION ================= */
.cta-section{
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    135deg,
    #7a0b18 0%,
    #b3122d 35%,
    #ff2f5c 55%,
    #9b0818 100%
  );
}

/* SHINY / CINEMATIC LAYER */
.cta-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 45%),
    linear-gradient(120deg, rgba(255,255,255,.12), transparent 60%);
  z-index:1;
  pointer-events:none; /* 🔥 SUPER IMPORTANT */
}

/* REVEAL WRAPPER FIX */
.cta-section .reveal-up,
.cta-section .reveal-fade{
  position: relative;
  z-index:2;
}

/* CONTENT */
.cta-inner{
  position: relative;
  z-index:3;
  max-width: 880px;
  margin: 0 auto;
}

/* EYEBROW */
.cta-eyebrow{
  display:inline-block;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.85;
  margin-bottom:14px;
}

/* TITLE */
.cta-section h2{
  font-size: clamp(32px,4vw,46px);
  font-weight:800;
  margin-bottom:14px;
}

/* TEXT */
.cta-section p{
  font-size:18px;
  opacity:.9;
  margin-bottom:36px;
}

/* BUTTON WRAP */
.cta-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* CONTACT BUTTON */
.cta-actions .btn-light{
  background:#fff;
  color:#8b0d1e;
  border-radius:14px;
  padding:14px 28px;
  font-weight:700;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* ================= WHATSAPP BUTTON ================= */
.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:14px 28px;
  border-radius:14px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 12px 32px rgba(37,211,102,.45);
  position: relative;
  z-index:5;
}

/* WA ICON */
.btn-whatsapp svg{
  width:20px;
  height:20px;
  fill:#fff;
}

/* HOVER */
.btn-whatsapp:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}
background: linear-gradient(135deg, #0F172A, #020617);
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.topbar {
  background: #ffffff;
  font-size: 14px;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.gt-premium select {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
}
/* ===== PREMIUM GOOGLE TRANSLATE ===== */
.gt-premium {
  display: flex;
  align-items: center;
}

.gt-premium select {
  appearance: none;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.gt-premium select:hover {
  border-color: #c9a227;
}
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-menu-frame {
  display: none !important;
}
/* ================= LANGUAGE SWITCHER ================= */
.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-switcher button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.lang-switcher img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  opacity: .8;
  transition: all .2s ease;
}

.lang-switcher button.active img,
.lang-switcher img:hover {
  opacity: 1;
  box-shadow: 0 0 0 2px #d4af37;
}

/* ================= HIDE GOOGLE UI ================= */
.gt-hidden,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-logo-link {
  display: none !important;
}

body {
  top: 0 !important;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

/* responsive switch */
.hero-desktop { display:block; }
.hero-mobile { display:none; }

@media (max-width: 575.98px) {
  .hero-desktop { display:none; }
  .hero-mobile { display:block; }
}

/* =====================================================
   HERO VISIBILITY FINAL (ANTI DOBEL)
   ===================================================== */

/* DEFAULT: DESKTOP & TABLET */
.hero-desktop {
  display: block !important;
}

.hero-mobile {
  display: none !important;
}

/* MOBILE SAJA (HP PORTRAIT) */
@media (max-width: 575.98px) {
  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }
}


/* =====================================================
   HERO MOBILE ANDROID — FINAL FIX
   ===================================================== */
@media (max-width: 575.98px) {

  .hero-mobile {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
  }

  .hero-mobile .carousel,
  .hero-mobile .carousel-inner,
  .hero-mobile .carousel-item {
    height: 100%;
  }

  .hero-mobile video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .hero-mobile .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2;
  }

  /* ===== INI PALING PENTING ===== */
  .hero-mobile-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 24px;
    color: #fff;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

/* =====================================================
   HERO VIDEO ONLY — STYLE OVERRIDE
   ===================================================== */

/* TITLE & SUBTITLE PUTIH KHUSUS VIDEO */
.hero-video .hero-title,
.hero-video .hero-subtitle {
  color: #ffffff;
}

/* subtitle sedikit soft */
.hero-video .hero-subtitle {
  opacity: 0.9;
}

/* BADGE MERAH */
.hero-video .badge-red {
  display: inline-block;
  background: linear-gradient(135deg, #c40000, #ff2d2d);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

/* BUTTON MERAH SHINY */
.btn-shiny-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #ff1e1e 0%,
    #c40000 45%,
    #ff4d4d 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 10px 30px rgba(255,0,0,.45);
  transition: all .3s ease;
}

/* hover effect */
.btn-shiny-red:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 14px 36px rgba(255,0,0,.6);
}

/* tombol kedua tetap terang */
.hero-video .btn-outline-light {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* =====================================================
   HERO VIDEO ONLY (DESKTOP + MOBILE)
   ===================================================== */

/* pastikan video cover */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video .hero-video-content {
  position: relative;
  z-index: 3;
}

/* TITLE & SUBTITLE PUTIH KHUSUS VIDEO */
.hero-video-title,
.hero-video-subtitle {
  color: #ffffff !important;
}

/* BADGE MERAH */
.badge-video-red {
  display: inline-block;
  background: linear-gradient(135deg, #b30000, #ff2d2d);
  color: #fff;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

/* BUTTON MERAH SHINY */
.btn-video-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #ff1e1e 0%,
    #b30000 45%,
    #ff4d4d 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 10px 28px rgba(255,0,0,.45);
  transition: all .3s ease;
}

.btn-video-red:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 14px 36px rgba(255,0,0,.6);
}

/* mobile fix */
@media (max-width: 575px) {
  .hero-mobile {
    height: 100dvh;
  }
}

/* =====================================================
   HERO VIDEO — MOBILE FINAL POLISH
   ===================================================== */
@media (max-width: 575.98px) {

  /* geser konten ke tengah layar */
  .hero-video .hero-video-content {
    padding: 24px;
    padding-top: 190px; /* aman dari navbar + topbar */
    text-align: left;
    max-width: 100%;
  }

  /* TITLE */
  .hero-video-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-video-title span {
    display: block;
    font-size: 26px;
  }

  /* SUBTITLE */
  .hero-video-subtitle {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: .95;
  }

  /* BUTTON AREA */
  .hero-video .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-video .btn-video-red,
  .hero-video .btn-outline-light {
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 26px;
  }
}
/* =====================================================
   HERO VIDEO — GOLD BUTTON FOR VIEW PRODUCTS
   ===================================================== */

/* KHUSUS video slide */
.hero-video .btn-outline-light {
  background: linear-gradient(
    135deg,
    #f5c542 0%,
    #d4a017 45%,
    #ffdd77 100%
  );
  color: #1a1a1a;
  border: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 10px 26px rgba(212,160,23,.45);

  transition: all .3s ease;
}

/* hover efek emas */
.hero-video .btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 14px 34px rgba(212,160,23,.6);
}
/* =====================================================
   HERO VIDEO — VIEW PRODUCTS GOLD SHINY (FINAL)
   ===================================================== */

.hero-video .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;
  border-radius: 999px; /* pill shape */
  font-weight: 600;
  font-size: 15px;

  color: #2b1a00;
  background: linear-gradient(
    135deg,
    #ffdc73 0%,
    #d4a017 45%,
    #ffef9a 100%
  );

  border: none;
  text-decoration: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -2px 0 rgba(0,0,0,.15),
    0 10px 28px rgba(212,160,23,.45);

  transition: all .3s ease;
}

/* hover effect */
.hero-video .btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    inset 0 -2px 0 rgba(0,0,0,.2),
    0 14px 36px rgba(212,160,23,.6);
}
/* ===== PRODUCTS SECTION ULTRA ===== */
.products-section-ultra {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c9a227;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  color: #5f6b7a;
  line-height: 1.7;
}

/* Premium card feel */
.premium-card {
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
/* ================= KOBE BADGE ================= */
.kobe-badge {
  background: linear-gradient(135deg, #0b3c8a, #1e6bd6);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
