/* =============================================
   KING SOUVENIR - Global CSS
   Theme: Black & White Modern
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red-primary: #111111;
  --red-dark:    #000000;
  --red-deeper:  #1a1a1a;
  --red-light:   #f5f5f5;
  --gold:        #FFD700;
  --gold-dark:   #FFC107;
  --white:       #FFFFFF;
  --off-white:   #F9F9F9;
  --dark:        #0D0D0D;
  --dark-2:      #1A1A2E;
  --dark-3:      #16213E;
  --grey:        #6B7280;
  --grey-light:  #F3F4F6;
  --border:      #E5E7EB;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --shadow-red: 0 8px 30px rgba(0,0,0,.25);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
section { position: relative; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
}
.section-subtitle {
  color: var(--grey);
  font-size: 1rem;
  max-width: 560px;
}
.text-red { color: var(--red-primary); }
.text-gold { color: var(--gold-dark); }
.badge-red {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

/* ---- Buttons ---- */
.btn-king {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red-primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.btn-king:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
  color: var(--white);
}
.btn-king-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--red-primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .72rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--red-primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-king-outline:hover {
  background: var(--red-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  color: var(--white);
}
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }

/* ---- Navbar ---- */
.navbar-king {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(0,0,0,.1);
  padding: .6rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.navbar-king .container {
  display: flex;
  align-items: center;
}
.navbar-brand-king {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-brand-king .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  flex-shrink: 0;
  transition: var(--transition);
}
.navbar-brand-king:hover .logo-icon {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--shadow-red);
}
.navbar-brand-king .brand-name { color: var(--dark); }
.navbar-brand-king .brand-name span { color: var(--red-primary); }

/* Logo images – navbar & footer */
.logo-img,
.footer-logo-img {
  height: 40px;
  width: auto;
}

/* Nav Links */
.nav-link-king {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark) !important;
  padding: .55rem 1.1rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  letter-spacing: .01em;
}
.nav-link-king::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2.2rem);
  height: 2px;
  background: var(--red-primary);
  border-radius: 2px;
  transition: transform .25s ease;
}
.nav-link-king:hover {
  color: var(--red-primary) !important;
  background: var(--red-light);
}
.nav-link-king.active {
  color: var(--red-primary) !important;
  background: var(--red-light);
}
.nav-link-king:hover::after,
.nav-link-king.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Toggler */
.navbar-toggler-king {
  border: none;
  background: var(--red-light);
  border-radius: 10px;
  padding: .5rem .75rem;
  color: var(--red-primary);
  font-size: 1.3rem;
  line-height: 1;
  transition: var(--transition);
}
.navbar-toggler-king:hover { background: var(--red-primary); color: white; }
.navbar-toggler-king:focus { box-shadow: 0 0 0 3px rgba(0,0,0,.2); outline: none; }

/* ---- Floating Buttons Container ---- */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  align-items: center;
}
.wa-float,
.email-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  transition: var(--transition);
}
.wa-float {
  background: #25D366;
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
  animation: waPulse 2s infinite;
}
.wa-float:hover { background: #1ebe5a; transform: scale(1.1); color: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}
.email-float {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  animation: emailPulse 2.5s infinite;
}
.email-float:hover { background: #f5f5f5; transform: scale(1.1); }
@keyframes emailPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,.25); }
  50% { box-shadow: 0 8px 35px rgba(0,0,0,.35), 0 0 0 10px rgba(0,0,0,.05); }
}

/* ---- Hero – Full Width Image ---- */
.hero-section-img {
  width: 100%;
  line-height: 0; /* remove inline gap below img */
  position: relative;
}
.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100vh;
  object-fit: cover;
  object-position: center top;
}

/* ---- Hero Text Overlay ---- */
.hero-text-overlay {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 794px;
  pointer-events: none;
}
.hero-text-overlay a { pointer-events: all; }
.hero-overlay-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-overlay-sub {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 400;
}
.hero-overlay-types {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 700;
}
.hero-overlay-btn {
  display: inline-block;
  background: transparent;
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  padding: 0.8rem 2.8rem;
  border: 2px solid white;
  border-radius: 4px;
  text-transform: uppercase;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  text-shadow: none;
}
.hero-overlay-btn:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(0,0,0,.4);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--red-primary), #FF5252);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red-primary); }
.hero-stat-label { color: rgba(255,255,255,.5); font-size: .78rem; }
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-dark);
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255,193,7,.5);
}
.hero-shipping-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.hero-shipping-logos .ship-logo {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .4rem .8rem;
  color: white;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .8rem 1.2rem;
  color: white;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: 14%; left: -5%; animation-delay: 0s; }
.hero-floating-card.card-2 { top: 15%; right: -5%; animation-delay: 1.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Client Logos Strip ---- */
.clients-strip {
  background: var(--off-white);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scrollLogos 22s linear infinite;
  white-space: nowrap;
}
.client-logo-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  color: var(--grey);
  opacity: .6;
  transition: var(--transition);
  white-space: nowrap;
}
.client-logo-item:hover { opacity: 1; color: var(--red-primary); }
.client-logo-item i { font-size: 1.2rem; }
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Section Spacing ---- */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

/* ---- Product Card ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,.25);
}
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-img-wrap { overflow: hidden; position: relative; }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red-primary);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-card-body { padding: 1.2rem; }
.product-card-cat {
  font-size: .72rem;
  color: var(--red-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.product-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.product-card-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.btn-detail {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--grey-light);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  padding: .55rem .8rem;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
}
.btn-detail:hover {
  background: var(--red-primary);
  color: white;
}
.btn-wa-icon {
  width: 36px;
  height: 36px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-wa-icon:hover { background: #1ebe5a; transform: scale(1.1); color: white; }

/* ---- Product Card Plakat Style ---- */
.product-card-plakat .btn-tanya {
  display: block;
  width: 100%;
  text-align: center;
  border: 2px solid #25D366;
  color: #25D366;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  padding: .55rem;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
}
.product-card-plakat .btn-tanya:hover {
  background: #25D366;
  color: white;
}

/* ---- Slider Controls ---- */
.slider-nav-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.slider-nav-btn:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: var(--white);
}
.slider-row { overflow: hidden; }

/* ---- Quality Section ---- */
.quality-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, #1a0a0a 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.quality-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23111111' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Decorative orb */
.quality-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  pointer-events: none;
}

/* Highlight box – left column */
.quality-highlight {
  background: linear-gradient(145deg, var(--red-primary), var(--red-dark));
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.quality-highlight::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}
.quality-highlight::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(0,0,0,.1);
  border-radius: 50%;
  bottom: -40px;
  left: -40px;
}
.quality-big-num {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.quality-highlight h4 { color: white; font-size: 1.1rem; margin: .8rem 0 .5rem; position: relative; z-index:1; }
.quality-highlight p { color: rgba(255,255,255,.82); margin-top: 0; font-size: .9rem; line-height: 1.7; position:relative;z-index:1; }
.quality-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
}
.quality-stars i { color: var(--gold-dark); font-size: 1rem; }
.quality-stars span { color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600; margin-left: .3rem; }

/* 4 Feature Cards – right column 2x2 grid */
.quality-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.quality-card::before {
  content: '';
  position: absolute;
  width: 3px;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--red-primary), transparent);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: var(--transition);
}
.quality-card:hover {
  background: rgba(0,0,0,.12);
  border-color: rgba(0,0,0,.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.quality-card:hover::before { opacity: 1; }
.quality-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(0,0,0,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.quality-card:hover .quality-card-icon {
  background: var(--red-primary);
  color: white;
  border-color: var(--red-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.quality-card-num {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  color: rgba(0,0,0,.7);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.quality-card h5 { color: white; font-size: 1.05rem; margin: 0 0 .5rem; font-weight: 700; }
.quality-card p { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.65; margin: 0; }

/* ---- Process Steps ---- */
.process-section { background: var(--off-white); padding: 5rem 0; }
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.process-step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: var(--red-primary);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--red-light);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-icon {
  background: var(--red-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}
.process-step-num {
  position: absolute;
  top: 1.4rem;
  right: calc(50% - 50px);
  width: 26px;
  height: 26px;
  background: var(--red-primary);
  color: white;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.process-step p { font-size: .85rem; color: var(--grey); }
.process-connector {
  display: none;
  @media (min-width: 768px) { display: block; }
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0,0,0,.1);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}
.cta-banner h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .8rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ---- Footer ---- */
.footer-king {
  background: var(--dark-2);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}
.footer-brand-name span { color: var(--red-primary); }
.footer-desc { font-size: .88rem; max-width: 280px; line-height: 1.7; }
.footer-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--red-primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-links a:hover { color: var(--red-primary); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .8rem;
  font-size: .88rem;
}
.footer-contact-item i { color: var(--red-primary); margin-top: .1rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23111111' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 900;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; margin: .8rem auto 0; }
.page-hero .breadcrumb-king {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb-king a { color: var(--red-primary); }
.page-hero .breadcrumb-king a:hover { color: #FF5252; }

/* ---- Filter Pills ---- */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  color: var(--grey);
  background: white;
  cursor: pointer;
  transition: var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: white;
  box-shadow: var(--shadow-red);
}

/* ---- Pagination ---- */
.pagination-king {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: white;
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: white;
}

/* ---- About Page ---- */
.about-profile-box {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: white;
  height: 100%;
}
.about-profile-box h4 { color: var(--red-primary); margin-bottom: .8rem; font-size: 1.1rem; }
.about-profile-box ul li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .7rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.about-profile-box ul li i { color: var(--red-primary); margin-top: .15rem; flex-shrink: 0; }

.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,.3);
}
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: white;
}
.contact-card-icon.red { background: linear-gradient(135deg, var(--red-primary), var(--red-dark)); }
.contact-card-icon.green { background: linear-gradient(135deg, #25D366, #1ebe5a); }
.contact-card-icon.blue { background: linear-gradient(135deg, #1565C0, #0D47A1); }
.contact-card-icon.orange { background: linear-gradient(135deg, #F57C00, #E65100); }
.contact-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.contact-card p { font-size: .88rem; color: var(--grey); word-break: break-all; overflow-wrap: break-word; }

.stat-box {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  color: white;
  transition: var(--transition);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-red); }
.stat-box-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.stat-box p { font-size: .82rem; opacity: .85; margin-top: .4rem; }

/* ---- Plakat Hero ---- */
.plakat-hero {
  background: linear-gradient(135deg, var(--dark-2) 0%, #2d1010 100%);
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.plakat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23111111' fill-opacity='0.07'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.plakat-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: white;
  font-weight: 900;
  line-height: 1.1;
}
.plakat-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 480px; }
.benefit-card-overlap {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red-primary);
  transition: var(--transition);
}
.benefit-card-overlap:hover { transform: translateY(-4px); }
.benefit-card-overlap i { font-size: 2rem; color: var(--red-primary); display: block; margin-bottom: .8rem; }
.benefit-card-overlap h6 { font-size: .9rem; font-weight: 700; }
.benefit-card-overlap small { font-size: .78rem; color: var(--grey); }
.overlap-cards-wrap {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}
@media (max-width: 767.98px) {
  .overlap-cards-wrap {
    margin-top: 1.5rem;
  }
}

/* ---- FAQ Accordion ---- */
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,0,0,.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  gap: 1rem;
}
.faq-arrow {
  width: 32px;
  height: 32px;
  background: var(--grey-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--dark);
}
.faq-item.open .faq-arrow {
  background: var(--red-primary);
  color: white;
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Plakat CTA ---- */
.cta-plakat {
  background: linear-gradient(135deg, #111, #222);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-plakat h2 { color: white; margin-bottom: .8rem; }
.cta-plakat p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ---- Fix Horizontal Overflow (Mobile) ---- */
/* Mencegah ruang kosong di sisi kanan pada semua layar mobile */
section,
.clients-strip,
.clients-strip > div,
.swiper,
.swiper-wrapper,
.swiper-slide,
.hero-section-img,
.quality-section,
.process-section,
.cta-banner,
.cta-plakat,
.footer-king,
.navbar-king {
  max-width: 100%;
}

/* Row Bootstrap kadang bikin overflow karena negative margin */
.row {
  --bs-gutter-x: 1.5rem;
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.container, .container-fluid {
  overflow-x: hidden;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-stats { gap: 1.2rem; }
  .hero-floating-card { display: none; }
  .quality-highlight { margin-bottom: .5rem; }
}
@media (max-width: 767px) {
  .section-pad { padding: 3.5rem 0; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-plakat { padding: 3rem 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .quality-highlight { padding: 2rem 1.5rem; }
  .quality-section .col-lg-4,
  .quality-section .col-lg-8 { width: 100%; }
  .overlap-cards-wrap { margin-top: 0; }
  .footer-king { text-align: center; }
  .footer-title::after { left: 50%; transform: translateX(-50%); }
  .footer-contact-item { justify-content: center; }
  .footer-links a { justify-content: center; }
  .footer-logo-wrap { justify-content: center; }
  .footer-desc { margin: 0 auto; }
  /* Navbar mobile */
  .navbar-collapse {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,.1);
    border-radius: 0 0 16px 16px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    margin-top: .4rem;
  }
  .navbar-collapse .nav-link-king { display: block; padding: .75rem 1rem !important; border-radius: 10px; }
  .navbar-collapse .gap-1 { gap: .3rem !important; }
  .navbar-collapse .ms-lg-2 { margin-top: .5rem; }
  .navbar-collapse .btn-king { width: 100%; justify-content: center; border-radius: 12px; }
}
@media (max-width: 576px) {
  .hero-section { min-height: auto; padding: 4rem 0; }
  .plakat-hero { padding: 3rem 0 5rem; }
  .quality-card-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .quality-card { padding: 1.2rem 1rem; }
  /* Pastikan tidak ada elemen yang melebihi layar di HP kecil */
  .clients-strip-inner { gap: 2rem; }
  .hero-stats { gap: .8rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-full-img {
  width: 100%;
  /* height: 50vh; */
  display: block;
  max-height: 95vh;
  object-fit: cover;
  object-position: center top;

}
}
@media (max-width: 576px) {
  .hero-text-overlay {
  position: absolute;
  top: 50% !important;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 700px;
  pointer-events: none;
  font-family: 'bootstrap-icons';
}
}



