/* =====================================================================
   main.css — WulingUpdate Theme v1.0
   BERSIH: tidak ada duplikat, tidak ada !important bertumpuk.
   Semua behavior visual identik dengan versi original.
   Font: Inter (display + body)
   Skema: Wuling Red #ED1C24 · Blue #2563EB · Dark #111111
   ===================================================================== */

/* ─── CSS VARIABLES ──────────────────────────────────────────────── */
:root {
  --red:    #ED1C24;
  --red-dk: #b81018;
  --blue:   #2563EB;
  --blue-dk:#1d4ed8;
  --dark:   #111111;
  --gray-1: #F9FAFB;
  --gray-2: #F3F4F6;
  --gray-3: #E5E7EB;
  --gray-5: #6B7280;
  --gray-7: #374151;
  --white:  #FFFFFF;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);

  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 64px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--gray-1); color: var(--gray-7); line-height: 1.6; overflow-x: hidden; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ──────────────────────────────────────────────────── */
.hidden    { display: none !important; }
.invisible { visibility: hidden; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #1a1a1a; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

/* ─── PERFORMANCE: ASPECT RATIO ─────────────────────────────────── */
.deal-img-wrap img,
.card-img-wrap img,
.spec-car-img-wrap img,
.mini-car-img-wrap img {
  aspect-ratio: 16/9;
  object-fit: contain;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.25,.46,.45,.94),
              transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Lazy load */
img[data-src] { opacity: 0; transition: opacity .3s; }
img[data-src].loaded { opacity: 1; }

/* Backdrop */
#backdrop {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(2px);
  transition: opacity var(--transition);
}

/* Focus & Click */
:focus-visible { outline: none; box-shadow: none; }
button:active, a:active,
.deal-card:active, .product-card:active,
.news-item:active { transform: scale(0.96); transition: transform 0.15s; }

/* ─── NAVIGATION ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-3);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 36px; width: auto; object-fit: contain; cursor: pointer; transition: transform var(--transition); pointer-events: auto; }
.nav-logo:hover { transform: scale(1.05); }
.nav-links { display: none; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { font-weight: 700; font-size: .8125rem; letter-spacing: .06em; color: var(--gray-7); transition: color var(--transition); }
  .nav-links a:hover { color: var(--red); }
  .nav-links a.active { color: var(--red); }
}
.nav-actions { display: flex; align-items: center; gap: 20px; min-width: 72px; justify-content: flex-end; }
.nav-btn { color: var(--gray-5); transition: color var(--transition); font-size: 1.2rem; line-height: 1; }
.nav-btn:hover { color: var(--red); }
.nav-btn:active { transform: scale(0.9); }
.nav-cta {
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: .8rem;
  padding: 9px 20px; border-radius: var(--radius-sm);
  transition: background var(--transition);
  display: none;
}
@media (min-width: 1024px) { .nav-cta { display: inline-block; } }
.nav-cta:hover { background: var(--red-dk); }

/* Search overlay */
#searchOverlay {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); padding: 16px 20px;
  border-top: 1px solid var(--gray-3);
  box-shadow: var(--shadow); z-index: 50;
}
.search-wrap { max-width: 720px; margin: 0 auto; position: relative; }
.search-input-row { display: flex; gap: 10px; position: relative; z-index: 1; }
#searchInput {
  flex: 1; background: var(--gray-2); border: none;
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .875rem; outline: none;
  transition: box-shadow var(--transition);
}
#searchInput:focus { box-shadow: 0 0 0 2px var(--red); }
.btn-search {
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: .875rem;
  padding: 12px 24px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.btn-search:hover { background: var(--red-dk); }
.btn-search:active { transform: scale(0.96); }

#searchSuggestions {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1px solid var(--gray-3);
  border-top: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow); z-index: 60; max-height: 240px; overflow-y: auto;
}
#searchSuggestions li {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .875rem; border-bottom: 1px solid var(--gray-2);
  cursor: pointer; transition: background var(--transition);
  padding: 10px 16px;
}
#searchSuggestions li:hover { background: var(--gray-1); }

/* Kredit type suggestions — dark background per design */
#typeSuggestions {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 60; max-height: 240px; overflow-y: auto;
}
#typeSuggestions li {
  color: #ffffff;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; font-size: .875rem;
  transition: background var(--transition);
}
#typeSuggestions li:hover { background: rgba(255,255,255,0.1); }

/* Mobile menu */
#mobileMenu {
  position: absolute; top: var(--nav-h); right: 0; width: 260px;
  background: var(--white); border: 1px solid var(--gray-3);
  border-radius: 0 0 0 var(--radius); box-shadow: var(--shadow-lg); z-index: 50; overflow: hidden;
}
#mobileMenu a {
  display: block; padding: 16px 24px; font-weight: 700;
  font-size: .8125rem; letter-spacing: .08em;
  border-bottom: 1px solid var(--gray-2);
  transition: background var(--transition), color var(--transition);
}
#mobileMenu a:hover { background: var(--gray-1); color: var(--red); }
#mobileMenu a:active { background: var(--gray-2); }

/* ─── FLOAT WHATSAPP ─────────────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: #25D366; color: var(--white); border-radius: 999px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  animation: softBounce 2.5s ease-in-out infinite;
  will-change: transform;
}
.float-wa:hover { background: #1da851; transform: scale(1.08); animation: none; }
.float-wa:active { transform: scale(0.96); }
.wa-label { display: none; }
@media (min-width: 768px) {
  .float-wa { width: auto; height: auto; padding: 12px 22px; font-size: 1.1rem; gap: 8px; }
  .wa-label { display: block; font-weight: 700; font-size: .875rem; }
}
@keyframes softBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero-section { padding-top: var(--nav-h); }
.hero {
  min-height: 85vh;
  background: linear-gradient(rgba(0,0,0,.52),rgba(0,0,0,.52)),
              url('../images/ui/bg-hero.webp') center/cover no-repeat;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px; color: var(--white);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4); letter-spacing: -0.03em;
}
.hero p {
  font-size: clamp(.8rem, 2vw, 1.05rem);
  font-weight: 300; letter-spacing: .2em; text-transform: uppercase;
  color: #ddd; margin-bottom: 36px;
}
.btn-hero {
  background: #c8101a; color: var(--white);
  font-weight: 700; font-size: .875rem; padding: 16px 40px;
  border-radius: var(--radius-sm); width: 100%; max-width: 320px;
  box-shadow: 0 8px 24px rgba(237,28,36,.4); will-change: transform;
  display: inline-block; text-align: center;
}
.btn-hero:hover { background: #a00d15; transform: translateY(-2px); }
.btn-hero:active { transform: translateY(0) scale(0.96); }

/* ─── SECTION HEADERS ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900; letter-spacing: -.02em;
  color: var(--dark); text-transform: uppercase;
}
.section-sub { font-size: .8rem; color: var(--gray-5); margin: 4px 0 12px; letter-spacing: .1em; text-transform: uppercase; }
.section-bar { width: 72px; height: 4px; border-radius: 2px; margin: 0 auto; }
.bar-red  { background: var(--red); }
.bar-blue { background: var(--blue); }

/* ─── SPECIAL DEALS ──────────────────────────────────────────────── */
#promo, .section-promo { padding: 48px 20px 56px; background: var(--white); }
@media (min-width: 768px) { #promo, .section-promo { padding: 64px 20px 72px; } }

#specialDealsContainer {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}

/* ─── PRODUCT LINEUP ─────────────────────────────────────────────── */
#product-list, .section-products {
  padding: 48px 20px 56px;
  background: var(--gray-1);
  border-top: 1px solid var(--gray-3);
}
@media (min-width: 768px) { #product-list, .section-products { padding: 64px 20px 72px; } }

#homeProductContainer, #allProductsContainer {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}

/* ─── CARDS ──────────────────────────────────────────────────────── */
.deal-card, .product-card {
  background: var(--white); border: 1px solid var(--gray-3);
  border-radius: var(--radius-xl); box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative; display: flex; flex-direction: column;
  cursor: pointer; text-decoration: none; color: inherit;
}
.deal-card:hover, .product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.deal-card:active, .product-card:active { transform: scale(0.98); }

/* Card image wraps */
.deal-img-wrap {
  position: relative; height: 240px; background: var(--gray-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 20px; margin: 12px;
  border-radius: calc(var(--radius-xl) - 6px); flex-shrink: 0;
}
.card-img-wrap {
  position: relative; height: 160px; background: var(--gray-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 16px; margin: 10px;
  border-radius: calc(var(--radius-xl) - 8px); flex-shrink: 0;
}
.deal-img-wrap img, .card-img-wrap img {
  max-height: 90%; max-width: 90%; object-fit: contain;
  transition: transform var(--transition);
}
.deal-card:hover .deal-img-wrap img,
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

/* Mobile: product card row layout */
@media (max-width: 767px) {
  .product-card { flex-direction: row; align-items: stretch; }
  .card-img-wrap { width: 42%; height: auto; min-height: 110px; max-height: 140px; margin: 10px; flex-shrink: 0; padding: 10px; }
  .card-body { width: 58%; min-width: 0; padding: 12px 12px 12px 0; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
}

/* Badges */
.deal-badge, .card-badge {
  position: absolute; top: 0; left: 0; z-index: 10;
  background: var(--red); color: var(--white);
  font-weight: 700; padding: 5px 12px; font-size: .65rem;
  border-radius: calc(var(--radius-xl) - 8px) 0 var(--radius-sm) 0;
}
.deal-badge { font-size: .7rem; padding: 6px 14px; border-radius: calc(var(--radius-xl) - 6px) 0 var(--radius-sm) 0; }

/* Hover overlays */
.deal-img-overlay, .card-hover-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); border-radius: inherit;
}
.deal-card:hover .deal-img-overlay,
.product-card:hover .card-hover-overlay { opacity: 1; }
.deal-img-overlay span, .card-hover-overlay span {
  border: 2px solid var(--white); color: var(--white);
  padding: 8px 24px; border-radius: 999px;
  font-weight: 700; font-size: .8125rem; backdrop-filter: blur(4px);
}

/* Card body */
.deal-body {
  padding: 8px 20px 20px;
  display: flex; flex-direction: column; gap: 3px;
  text-align: center; align-items: center;
}
.card-body {
  padding: 10px 14px 14px;
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0; text-align: left; align-items: flex-start;
}
@media (min-width: 768px) {
  .deal-body { padding: 10px 24px 24px; }
  .card-body { padding: 12px 16px 16px; text-align: center; align-items: center; }
}

.deal-body h3, .card-body h3 {
  font-family: var(--font-display); font-weight: 900;
  color: var(--dark); letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2; width: 100%;
}
.deal-body h3 { font-size: clamp(1.05rem, 3.5vw, 1.4rem); }
.deal-body h3:hover { color: var(--red); }
.card-body h3 { font-size: clamp(.85rem, 3vw, 1.1rem); }

.deal-sub, .card-sub { font-size: .65rem; letter-spacing: .1em; color: var(--gray-5); text-transform: uppercase; }

/* Price */
.price-cross, .card-cross { font-size: .8rem; font-weight: 600; color: var(--gray-5); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.deal-price, .card-price { font-family: var(--font-display); font-weight: 900; color: var(--red); letter-spacing: -0.02em; }
.deal-price { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }
.card-price { font-size: clamp(.9rem, 2.5vw, 1.05rem); }

/* Buttons */
.btn-promo, .btn-book, .btn-preorder {
  display: block; width: 100%; font-weight: 700; font-size: .8rem;
  padding: 10px 12px; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: .05em;
  margin-top: 8px; text-align: center; will-change: transform;
}
@media (min-width: 768px) { .btn-promo, .btn-book, .btn-preorder { font-size: .875rem; padding: 12px 16px; } }

.btn-promo   { background: var(--blue); color: var(--white); }
.btn-promo:hover { background: var(--blue-dk); transform: translateY(-1px); }
.btn-book    { background: var(--dark); color: var(--white); }
.btn-book:hover { background: var(--red); transform: translateY(-1px); }
.btn-preorder { background: var(--gray-7); color: var(--white); }
.btn-preorder:hover { background: var(--red); }

.btn-see-all {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--blue); color: var(--blue);
  padding: 10px 28px; border-radius: 999px;
  font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-see-all:hover { background: var(--blue); color: var(--white); }

/* ─── QUICK SPECS ────────────────────────────────────────────────── */
#mini-specs, .section-mini-specs {
  padding: 48px 20px 56px;
  background: var(--white); border-top: 1px solid var(--gray-3); overflow: hidden;
}
@media (min-width: 768px) { #mini-specs, .section-mini-specs { padding: 64px 20px 72px; } }

#miniSpecsTabsContainer {
  display: flex; flex-wrap: nowrap; gap: 8px;
  background: var(--gray-2); padding: 6px;
  border-radius: 999px; width: max-content; max-width: 100%;
  overflow-x: auto; margin: 0 auto;
}
.mini-tab {
  flex-shrink: 0; white-space: nowrap; padding: 8px 20px;
  border-radius: 999px; font-weight: 700; font-size: .75rem;
  color: var(--gray-5); transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
}
.mini-tab.active { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.mini-tab:focus, .mini-tab:active { outline: none; }

.mini-spec-card { max-width: 420px; margin: 32px auto 0; text-align: left; }
.mini-car-img-wrap {
  background: var(--gray-2); border-radius: var(--radius-xl);
  height: 200px; display: flex; align-items: center; justify-content: center;
  padding: 16px; cursor: pointer; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg); transition: transform var(--transition);
}
@media (min-width: 768px) { .mini-car-img-wrap { height: 240px; } }
.mini-car-img-wrap img { max-height: 100%; width: 100%; object-fit: contain; transition: transform var(--transition); }
.mini-car-img-wrap:hover img { transform: scale(1.04); }
.mini-car-img-wrap:active { transform: scale(0.98); }

.mini-img-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); border-radius: inherit;
}
.mini-car-img-wrap:hover .mini-img-overlay { opacity: 1; }
.mini-img-overlay span {
  border: 2px solid var(--white); color: var(--white);
  padding: 8px 22px; border-radius: 999px;
  font-weight: 700; font-size: .8rem; backdrop-filter: blur(4px);
}

#miniCarTitle {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  text-transform: uppercase; margin: 20px 0 14px; color: var(--dark);
  text-align: center; letter-spacing: -0.02em;
}
.mini-spec-table {
  background: var(--gray-1); border-radius: var(--radius);
  padding: 16px 20px; border: 1px solid var(--gray-3); margin-bottom: 20px;
}
.mini-spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--gray-3); font-size: .8125rem;
}
.mini-spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--gray-5); font-weight: 500; }
.spec-value { font-weight: 700; color: var(--dark); text-align: right; }

.btn-spec-link {
  display: flex; align-items: center; justify-content: flex-start; gap: 6px;
  color: var(--red); font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .1em;
  transition: gap var(--transition), color var(--transition);
}
.btn-spec-link:hover { gap: 12px; color: var(--red-dk); }

/* ─── KREDIT FORM ────────────────────────────────────────────────── */
#kredit, .section-kredit { padding: 48px 20px 40px; background: var(--dark); color: var(--white); }
@media (min-width: 768px) { #kredit, .section-kredit { padding: 64px 20px 56px; } }

.kredit-inner {
  max-width: 840px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 40px 32px;
  backdrop-filter: blur(12px); box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.kredit-inner h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  text-align: center; letter-spacing: .12em; margin-bottom: 32px; text-transform: uppercase;
}
.kredit-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .kredit-grid { grid-template-columns: 1fr 1fr; } }

.kredit-field { position: relative; }
.kredit-field input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.2); padding: 12px 0;
  font-size: .875rem; outline: none; color: var(--white);
  font-family: inherit; transition: border-color var(--transition);
}
.kredit-field input:focus { border-color: var(--red); }
.kredit-field input::placeholder { color: rgba(255,255,255,.4); }

/* Fix Autofill Chrome dark bg */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 50px var(--dark) inset;
  -webkit-text-fill-color: var(--white);
  transition: background-color 5000s ease-in-out 0s;
}

.btn-wa-submit {
  grid-column: 1 / -1; background: var(--red); color: var(--white);
  font-weight: 700; font-size: .875rem; padding: 16px; border-radius: var(--radius-sm);
  margin-top: 8px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.btn-wa-submit:hover { background: var(--red-dk); }
.kredit-note { text-align: center; font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 14px; }

/* Field validation */
.field-hint {
  display: block; font-size: .68rem; font-weight: 600; color: var(--red);
  margin-top: 5px; opacity: 0; transform: translateY(-4px); transition: .18s;
}
.kredit-field.has-error .field-hint { opacity: 1; transform: translateY(0); }
.kredit-field.has-error input { border-color: var(--red); }
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.kredit-field.shake { animation: fieldShake 0.35s ease; }

/* ─── LEASING PARTNERS ───────────────────────────────────────────── */
#leasing, .section-leasing { background: var(--dark); overflow: hidden; }
.leasing-inner { max-width: 860px; margin: 0 auto; padding: 28px 20px 48px; }
@media (min-width: 768px) { .leasing-inner { padding: 64px 40px 72px; } }
.leasing-header { text-align: center; }
#leasing .section-title, .section-leasing .section-title { color: var(--white); }
#leasing .section-sub, .section-leasing .section-sub { color: rgba(255,255,255,.5); }
#leasing .section-bar, .section-leasing .section-bar { background: rgba(255,255,255,.25); }
#leasing .section-header, .section-leasing .section-header { margin-bottom: 0; }

.leasing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px; margin-top: 24px;
  align-items: center; justify-items: center;
}
.leasing-item {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: none; border: none; border-radius: 0;
  padding: 0; height: auto;
  transition: opacity var(--transition), transform var(--transition);
}
.leasing-item:hover { transform: translateY(-2px); }
.leasing-item img {
  width: 100%; max-width: 72px; height: 28px;
  object-fit: contain; opacity: 0.82; transition: opacity var(--transition); display: block;
}
.leasing-item:hover img { opacity: 1; }
/* Last 2 center on mobile 4-col */
.leasing-item:nth-last-child(2) { grid-column: 2; }
.leasing-item:nth-last-child(1) { grid-column: 3; }

@media (min-width: 768px) {
  .leasing-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px; justify-items: stretch; }
  .leasing-item {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 18px 20px; height: 80px;
    transition: background var(--transition), transform var(--transition);
  }
  .leasing-item:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
  .leasing-item img { max-width: 100%; width: auto; height: 42px; opacity: 0.88; }
  .leasing-item:hover img { opacity: 1; }
  .leasing-item:nth-last-child(2) { grid-column: auto; }
  .leasing-item:nth-last-child(1) { grid-column: auto; }
}

/* ─── NEWS & GALLERY (home sections) ────────────────────────────── */
.news-section { padding: 72px 20px; max-width: 800px; margin: 0 auto; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; cursor: pointer; }
.section-eyebrow:hover h3 { color: var(--red); }
.eyebrow-bar { width: 5px; height: 32px; border-radius: 3px; background: var(--red); transition: transform var(--transition); }
.section-eyebrow:hover .eyebrow-bar { transform: scaleY(1.15); }
.section-eyebrow h3 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; color: var(--dark); transition: color var(--transition); }

.news-item {
  display: flex; gap: 16px; cursor: pointer; padding: 14px;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  margin-bottom: 12px; text-decoration: none; color: inherit;
}
.news-item:hover { background: var(--gray-1); border-color: var(--gray-3); }
.news-item:active { transform: scale(0.98); }
.news-item img { width: 96px; height: 96px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.news-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-body h4 {
  font-weight: 700; font-size: .9375rem; color: var(--dark); line-height: 1.35;
  margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; transition: color var(--transition);
}
.news-item:hover .news-body h4 { color: var(--red); }
.news-body p {
  font-size: .75rem; color: var(--gray-5); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 6px;
}
.news-date { font-size: .7rem; color: var(--gray-5); display: flex; align-items: center; gap: 4px; }

.link-all {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--gray-5); font-weight: 700; font-size: .8125rem;
  border-bottom: 2px solid var(--gray-3); padding-bottom: 2px;
  transition: color var(--transition); text-decoration: none;
}
.link-all:hover { color: var(--gray-7); }

/* Pinned news card — same as regular */
.news-item--pinned { background: transparent; border: 1px solid transparent; }
.news-item--pinned:hover { background: var(--gray-1); border-color: var(--gray-3); }
.news-item--pinned img { object-position: center top; }
.news-pin-badge { display: none; }

/* Gallery preview */
.gallery-section { padding: 0 20px 72px; max-width: 800px; margin: 0 auto; }
#galleryPreviewContainer { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { #galleryPreviewContainer { grid-template-columns: repeat(4, 1fr); } }

.gallery-thumb, .gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-thumb { height: 128px; }
@media (min-width: 640px) { .gallery-thumb { height: 160px; } }
.gallery-thumb img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-thumb:hover img, .gallery-item:hover img { transform: scale(1.1); }

.gallery-thumb-overlay, .gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.32);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); color: var(--white); font-size: 1.25rem;
}
.gallery-thumb:hover .gallery-thumb-overlay,
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px); color: var(--white);
  padding: 6px 18px; border-radius: 999px; font-weight: 700; font-size: .75rem;
}

.btn-gallery-all {
  width: 100%; margin-top: 16px; padding: 16px;
  border: 2px solid var(--gray-3); border-radius: var(--radius);
  font-weight: 700; font-size: .75rem; color: var(--gray-7);
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-gallery-all:hover { background: var(--gray-2); }
.btn-gallery-all:active { transform: scale(0.98); }

/* Gallery item info overlay */
.gallery-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  padding: 28px 10px 10px; pointer-events: none;
}
.gallery-item-title {
  color: var(--white); font-size: .72rem; font-weight: 700;
  line-height: 1.3; margin: 0 0 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gallery-item-caption {
  color: rgba(255,255,255,.75); font-size: .65rem; font-weight: 400; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white); font-size: .7rem; font-weight: 500; padding: 20px 10px 8px;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.95); display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-content { position: relative; max-width: 900px; width: 100%; }
.lb-content img { max-height: 80vh; width: 100%; object-fit: contain; border-radius: 16px; }
.lb-caption { color: rgba(255,255,255,.85); font-size: .8125rem; text-align: center; margin-top: 10px; line-height: 1.6; }
.lb-caption strong { color: var(--white); font-size: .9rem; display: block; margin-bottom: 2px; }
.lb-counter { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: .8rem; }
.lb-close {
  position: fixed; top: 16px; right: 16px; z-index: 250; color: var(--white);
  font-size: 2.5rem; line-height: 1; background: rgba(0,0,0,0.6);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); cursor: pointer; transition: .2s;
}
.lb-close:hover { background: rgba(0,0,0,0.9); transform: scale(1.1); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 250;
  color: var(--white); font-size: 2.5rem; line-height: 1;
  background: rgba(0,0,0,0.3); width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: .2s;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
}
.lb-prev { left: 8px; } .lb-next { right: 8px; }
.lb-prev:hover, .lb-next:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.1); }
.lb-prev svg, .lb-next svg { width: 28px; height: 28px; stroke-width: 2.5px; }

/* ─── FULL PRODUCTS PAGE ─────────────────────────────────────────── */
.page-full-products { background: var(--gray-1); min-height: 100vh; }
.page-full-products .inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Filter buttons */
.filter-btn {
  padding: 8px 22px; border-radius: 999px; font-weight: 700;
  font-size: .75rem; letter-spacing: .1em;
  border: 2px solid var(--gray-3); color: var(--gray-5);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  background: var(--white); outline: none;
}
.filter-btn:focus, .filter-btn:active { outline: none; }
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 12px rgba(37,99,235,.2); }

/* ─── FULL SPECS PAGE ────────────────────────────────────────────── */
.page-full-specs { background: var(--white); min-height: 100vh; }
.page-inner { max-width: 1280px; margin: 0 auto; padding: calc(var(--nav-h) + 24px) 20px 72px; }
.spec-inner { max-width: 640px; margin: 0 auto; padding: calc(var(--nav-h) + 16px) 20px 72px; }

.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .8125rem; color: var(--gray-5);
  margin-bottom: 20px; transition: color var(--transition); text-decoration: none;
}
.back-btn:hover { color: var(--red); }

.spec-car-img-wrap {
  background: var(--gray-2); border-radius: var(--radius-xl); height: 220px;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; margin-bottom: 16px; box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .spec-car-img-wrap { height: 280px; } }
.spec-car-img-wrap img { max-height: 100%; width: 100%; object-fit: contain; transition: transform .4s; }

/* Powertrain tabs */
#dbPowertrainTabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.spec-tab-btn {
  padding: 8px 28px; border-radius: 999px; font-weight: 700; font-size: .8125rem;
  border: 2px solid var(--gray-3); color: var(--gray-5);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  outline: none; background: transparent;
}
.spec-tab-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.spec-tab-btn:focus, .spec-tab-btn:active { outline: none; }

/* Sticky powertrain variant bar */
.var-tabs-sticky-wrap {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: transparent; backdrop-filter: none;
  border-bottom: 1px solid transparent; box-shadow: none;
  padding: 12px 16px; margin: 0 -20px 20px;
  display: flex; flex-wrap: nowrap; gap: 8px;
  overflow-x: auto; justify-content: center;
  scrollbar-width: none; -ms-overflow-style: none;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.var-tabs-sticky-wrap::-webkit-scrollbar { display: none; }
.var-tabs-sticky-wrap:empty { display: none; }
.var-tabs-sticky-wrap.is-stuck {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-3);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.var-btn {
  flex-shrink: 0; white-space: nowrap; padding: 8px 16px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .75rem;
  border: 2px solid var(--gray-3); color: var(--gray-7); background: transparent;
}
.var-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 12px rgba(37,99,235,.25); }
.var-btn:focus, .var-btn:active { outline: none; }

/* Sticky mirror tabs (powertrain in sticky bar) */
.sticky-tab-mirror {
  flex-shrink: 0; white-space: nowrap; padding: 6px 14px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .72rem;
  border: 2px solid var(--gray-3); color: var(--gray-7); background: #fff;
  cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition);
  outline: none;
}
.sticky-tab-mirror.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.sticky-tab-mirror:focus { outline: none; }

/* Divider between mirror tabs and var-btns */
.var-tabs-sticky-wrap:has(.sticky-tab-mirror) .var-btn:first-of-type {
  margin-left: 8px;
  padding-left: 18px;
  border-left: 2px solid var(--gray-3);
  position: relative;
}
.var-tabs-sticky-wrap .var-btn { font-size: .7rem; padding: 6px 12px; }

/* Color picker */
#dbColorContainer { display: flex; justify-content: center; gap: 14px; margin: 20px 0 0; flex-wrap: wrap; }
.color-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.08); outline: none;
  cursor: pointer; transition: transform .18s ease;
  position: relative; flex-shrink: 0; padding: 0;
}
.color-btn:focus, .color-btn:focus-visible, .color-btn:active { outline: none; }
.color-active {
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #6B7280;
}
.color-btn:hover:not(.color-active) { transform: scale(1.12); }
#dbColorName {
  font-size: .7rem; font-weight: 700; color: var(--gray-5);
  text-transform: uppercase; letter-spacing: .12em;
  text-align: center; margin: 14px 0 0; min-height: 1.4em; display: block;
}

/* OTR Price */
.otr-wrap { text-align: center; margin-bottom: 28px; }
.otr-label { font-size: .7rem; font-weight: 700; color: var(--gray-5); text-transform: uppercase; letter-spacing: .12em; }
#dbOtrCross { font-size: .875rem; color: var(--gray-5); text-decoration: line-through; text-decoration-thickness: 1.5px; margin: 4px 0 2px; transition: all .3s; }
#dbOtrPrice { font-family: var(--font-display); font-size: 2.25rem; font-weight: 900; color: var(--red); transition: all .3s; letter-spacing: -0.02em; }
#dbSpecTitle { font-family: var(--font-display); font-size: 2rem; font-weight: 900; text-align: center; text-transform: uppercase; color: var(--dark); margin: 12px 0 16px; letter-spacing: -0.02em; }

/* Spec tables */
.spec-cat-block { margin-bottom: 4px; }
.spec-cat-title {
  font-weight: 800; font-size: .8rem; color: var(--white);
  background: var(--dark); margin-top: 20px; margin-bottom: 0;
  padding: 7px 12px; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  text-align: left; letter-spacing: .06em; text-transform: uppercase;
}
.spec-cat-block:first-child .spec-cat-title { margin-top: 0; }
.spec-table { width: 100%; font-size: .8rem; border-collapse: collapse; border: 1px solid var(--gray-3); border-top: none; }
.spec-table th, .spec-table td { padding: 9px 12px; border-bottom: 1px solid var(--gray-2); vertical-align: middle; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) { background: var(--gray-1); }
.spec-table th { color: var(--gray-5); font-weight: 500; width: 58%; text-align: left; line-height: 1.4; }
.spec-table td { font-weight: 700; text-align: right; width: 42%; }

/* Value states */
.val-yes     { color: #16a34a; font-size: 1rem; }
.val-no      { color: #d1d5db; font-weight: 400; font-size: 1rem; }
.val-num     { color: var(--blue); font-size: 1rem; font-weight: 900; }
.val-special { color: #7c3aed; font-size: .8rem; }
.val-text    { color: var(--dark); font-size: .75rem; }
.spec-empty  { text-align: center; color: var(--gray-5); padding: 40px 0; font-style: italic; }

/* Loading skeleton */
.spec-loading { padding: 8px 0; display: flex; flex-direction: column; gap: 8px; }
.spec-loading-bar {
  height: 44px;
  background: linear-gradient(90deg, var(--gray-2) 25%, #e5e7eb 50%, var(--gray-2) 75%);
  background-size: 200% 100%;
  border-radius: var(--radius-sm);
  animation: shimmer 1.4s ease-in-out infinite;
}
.spec-loading-bar.short { width: 60%; height: 36px; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.btn-wa-spec {
  display: flex; width: 100%; align-items: center; justify-content: center;
  background: #25D366; color: var(--white); font-weight: 700; font-size: .9rem;
  padding: 16px; border-radius: var(--radius); margin-top: 32px;
  text-transform: uppercase; letter-spacing: .08em;
  box-shadow: 0 6px 20px rgba(37,211,102,.3); transition: .2s;
}
.btn-wa-spec:hover { background: #1da851; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────── */
.about-page-wrap { max-width: 640px; margin: 0 auto; padding: calc(var(--nav-h) + 20px) 20px 72px; }
@media (max-width: 480px) { .about-page-wrap { padding-top: 72px; } }

/* Title above photo */
.about-page-title {
  font-size: 1.3rem; font-weight: 700; color: var(--dark);
  margin: 0 0 16px; line-height: 1.25; display: block;
}

/* Hero image */
.about-hero {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 8px;
}
.about-hero-img {
  width: 100%; height: 210px; object-fit: cover;
  object-position: center 15%; display: block;
}
@media (max-width: 480px) { .about-hero-img { height: 240px; } }

/* Overlay inside hero (badge + sub) */
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 16px 16px 20px;
}
.about-pin-badge-inline {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: .06em; background: var(--red); color: #fff;
  border-radius: 50px; padding: 4px 12px; margin-bottom: 5px;
}
.about-hero-sub {
  font-size: .8rem; color: rgba(255,255,255,.9); font-weight: 500; margin: 0;
}
/* On #about-us, hero title is outside above photo — hide any title inside overlay */
.about-hero-title { display: none; }

/* Pressable hero (clickable to detail) */
.about-hero--pressable {
  cursor: pointer; -webkit-user-select: none; user-select: none;
  -webkit-touch-callout: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.about-hero--pressable:active { transform: scale(0.97); box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.about-hero--pressable img { pointer-events: none; -webkit-user-drag: none; }

/* Hover hint overlay on pressable hero */
.about-hero-press-hint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  border-radius: inherit; pointer-events: none;
}
.about-hero-press-hint span {
  border: 2px solid var(--white); color: var(--white);
  background: transparent; padding: 8px 22px; border-radius: 999px;
  font-weight: 700; font-size: .8rem; backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--transition);
}
.about-hero--pressable:hover .about-hero-press-hint { background: rgba(0,0,0,.22); }
.about-hero--pressable:hover .about-hero-press-hint span,
.about-hero--pressable:focus .about-hero-press-hint span,
.about-hero--pressable:active .about-hero-press-hint span { opacity: 1; }
/* Touch: always show hint */
@media (hover: none) { .about-hero-press-hint span { opacity: 1; } }

/* Clean hero (detail page, not clickable) */
.about-hero--clean { cursor: default; }
.about-hero--clean .about-hero-overlay { display: none; }

/* Quote — clean, no border */
.about-quote-plain {
  background: transparent; border: none; padding: 12px 0 8px; margin-bottom: 20px;
}
.about-quote-plain .about-quote,
.about-quote {
  font-size: .875rem; font-style: italic; color: #374151;
  line-height: 1.6; font-weight: 400; margin: 0 0 8px;
}

/* "Kenali tim kami →" link */
.about-quote-readmore {
  display: inline-block; font-size: .82rem; font-weight: 700;
  color: var(--gray-5); text-decoration: none; letter-spacing: .01em;
}
.about-quote-readmore:hover { text-decoration: underline; }

/* Profile cards grid */
.about-profiles-section { margin-bottom: 48px; }
.about-profiles-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .about-profiles-grid { grid-template-columns: 1fr 1fr; } }

.about-profile-card {
  border: 1.5px solid var(--gray-3); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
  background: #fff;
}
.about-profile-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }

.about-profile-avatar { width: 100%; height: 190px; overflow: hidden; }
.about-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-avatar-crop-left  { object-position: 20% center; }
.about-avatar-crop-right { object-position: 70% center; }

.about-profile-body { padding: 20px; }
.about-profile-badge {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: #fff0f0; color: var(--red); border-radius: 4px;
  padding: 3px 9px; display: inline-block; margin-bottom: 10px;
}
.about-profile-name { font-size: 1.25rem; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.about-profile-since { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--gray-5); margin-bottom: 12px; }
.about-profile-since strong { color: var(--dark); }
.about-profile-desc { font-size: .85rem; color: var(--gray-7); line-height: 1.65; margin-bottom: 16px; }
.about-profile-stats { display: flex; gap: 12px; border-top: 1px solid var(--gray-2); padding-top: 14px; }
.about-stat { flex: 1; text-align: center; }
.about-stat-num { display: block; font-size: 1rem; font-weight: 900; color: var(--red); }
.about-stat-lbl { display: block; font-size: .65rem; color: var(--gray-5); margin-top: 2px; line-height: 1.3; }

/* Trust grid */
.about-trust-section { margin-bottom: 56px; }
.about-trust-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.about-trust-title { font-size: 1.5rem; font-weight: 900; color: var(--dark); }
.about-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.about-trust-item {
  padding: 18px 10px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border: 1.5px solid var(--gray-3); border-radius: var(--radius);
  background: #fff; transition: box-shadow var(--transition), border-color var(--transition);
}
.about-trust-item:hover { border-color: var(--red); box-shadow: 0 4px 14px rgba(237,28,36,.08); }
.about-trust-icon { font-size: 1.6rem; margin-bottom: 8px; line-height: 1; }
.about-trust-item h3 { font-size: .78rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.about-trust-item p { display: none; } /* descriptions intentionally hidden */

/* CTA section */
.about-cta {
  background: linear-gradient(135deg, var(--red) 0%, #b81018 100%);
  border-radius: var(--radius-lg); padding: 40px 28px; text-align: center;
  margin-bottom: 56px; box-shadow: 0 8px 32px rgba(237,28,36,.25);
}
.about-cta-title { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.about-cta-sub { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 24px; line-height: 1.6; }
.about-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--red); font-weight: 800; font-size: .9rem;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* About news section */
.about-news-section { margin-bottom: 32px; }
.about-news-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }

/* ─── ABOUT DETAIL PAGE ──────────────────────────────────────────── */
.about-detail-text { margin-bottom: 40px; }
.about-detail-block { margin-bottom: 20px; }
.about-detail-heading { font-size: 1.4rem; font-weight: 900; color: var(--dark); margin: 0 0 6px; }
.about-detail-tag {
  display: inline-block; background: #1a1a1a; color: #fff;
  font-size: .72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; margin-bottom: 6px;
}
.about-detail-meta { font-size: .8rem; color: var(--red); font-weight: 600; margin: 0 0 14px; }
.about-detail-body { font-size: .9rem; color: #374151; line-height: 1.7; margin: 0; }
.about-detail-quote { background: transparent; border: none; padding: 20px 0 8px; margin-bottom: 24px; }
.about-detail-quote .about-quote { font-size: .88rem; font-style: italic; color: #374151; line-height: 1.65; font-weight: 400; margin: 0 0 10px; }

/* Products button on about detail */
.about-detail-produk-btn { text-align: center; margin: 32px 0 40px; }
.about-produk-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1a2d5a; color: #fff; font-weight: 800; font-size: .9rem;
  padding: 14px 28px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(26,45,90,.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.about-produk-link:hover { background: #142348; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,45,90,.35); }
.about-produk-link:active { transform: scale(.97); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  padding: 56px 20px; text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 40; min-height: 200px; contain: layout;
}
.footer-title { color: var(--white); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-size: .875rem; margin-bottom: 28px; }
.footer-links { display: flex; flex-direction: column; align-items: center; gap: 14px; font-size: .875rem; }
.footer-links a { display: flex; align-items: center; gap: 8px; transition: color var(--transition); text-decoration: none; color: inherit; }
.footer-links a:hover { color: var(--white); }
.footer-links .wa-link { color: #4ade80; }
.footer-links .wa-link:hover { color: #86efac; }
@media (min-width: 640px) { .footer-links { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 24px; } }
.footer-copy {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  max-width: 320px; margin-left: auto; margin-right: auto;
}

/* ─── IMAGE PROTECTION ───────────────────────────────────────────── */
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.gallery-thumb, .gallery-item, .lb-content { -webkit-touch-callout: none; }
/* Allow context menu / long-press on interactive elements */
.deal-img-wrap, .deal-body a, .product-card, .mini-car-img-wrap,
.btn-spec-link, .news-item, .btn-hero, .btn-see-all, #mobileMenu a {
  -webkit-user-select: none; user-select: none;
  -webkit-touch-callout: default;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
