/* ================= RESET & BASE ================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #e2001a;
  --red-dark: #b8000f;
  --red-2: #ff2b3d;
  --green: #25d366;
  --green-dark: #1eb954;
  --ink: #1c1c1c;
  --muted: #6b7280;
  --line: #ececec;
  --bg: #ffffff;
  --gray: #f5f6f8;
  --shadow: 0 8px 30px rgba(0,0,0,.08);
  --radius: 14px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
[data-lucide] { width: 18px; height: 18px; stroke-width: 2.2; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  padding: 11px 20px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap; letter-spacing: .3px;
}
.btn i { width: 16px; height: 16px; }
.btn-block { width: 100%; }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(226,0,26,.3); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--red); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.btn-outline-red {
  background: #fff; color: var(--red); border: 1.5px solid var(--red);
  padding: 12px 28px; font-weight: 600;
}
.btn-outline-red:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 8px; background: var(--red);
  display: grid; place-items: center; color: #fff;
}
.brand-mark i { width: 18px; height: 18px; fill: #fff; }
.brand-text strong { display: block; color: var(--red); font-weight: 800; font-size: 20px; letter-spacing: .5px; line-height: 1; }
.brand-text small { display: block; color: #1447c9; font-weight: 600; font-size: 11px; letter-spacing: .5px; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { font-size: 12.5px; font-weight: 600; letter-spacing: .4px; color: #2a2a2a; position: relative; padding: 4px 0; transition: color .18s ease; }
.main-nav a::after { content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--red); transition:width .22s ease; }
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { width: 100%; }
.header-wa { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; color: var(--red); cursor: pointer; }
.nav-toggle i { width: 26px; height: 26px; }

/* ================= HERO ================= */
.hero {
  position: relative; overflow: hidden;
  background: url("../images/hero-showroom.jpg") center 55%/cover no-repeat;
}
.hero-overlay {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,12,18,.74) 0%, rgba(10,12,18,.46) 30%, rgba(10,12,18,.06) 55%, rgba(10,12,18,0) 72%),
    linear-gradient(0deg, rgba(10,12,18,.32) 0%, rgba(10,12,18,0) 42%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 430px 1fr 330px; align-items: center;
  gap: 24px; min-height: 600px; padding: 56px 20px;
}
.hero-panel {
  grid-column: 1;
  background: rgba(17,19,26,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px; padding: 30px 30px 34px; color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 28px; font-style: italic; letter-spacing: 1px; color: #fff; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: 68px; line-height: .9; color: #ff3143; letter-spacing: 1px; text-shadow: 0 4px 18px rgba(0,0,0,.4); }
.hero-sub { font-weight: 700; font-size: 15px; margin: 10px 0 18px; color: rgba(255,255,255,.92); }
.hero-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; margin: 10px 0; color: #fff; }
.hero-points li i { width: 14px; height: 14px; color: #fff; background: var(--red); border-radius: 50%; padding: 4px; box-sizing: content-box; stroke-width: 3.5; flex-shrink: 0; }
.hero-card { grid-column: 3; }
.hero-figure { grid-column: 2; align-self: end; justify-self: center; position: relative; text-align: center; }
.hero-person-img { height: 500px; width: auto; max-width: 100%; display: block; filter: drop-shadow(0 22px 34px rgba(0,0,0,.5)); }
.hero-name {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  background: rgba(17,19,26,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 8px 20px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 12px 26px rgba(0,0,0,.35);
}
.hero-name strong { display: block; font-size: 16px; font-weight: 800; letter-spacing: .6px; }
.hero-name span { font-size: 11px; color: rgba(255,255,255,.85); }
.hero-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 22px; text-align: center; border: 1px solid var(--line); }
.hero-card h3 { font-size: 20px; font-weight: 800; }
.hero-card-role { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.hero-phone { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.phone-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
.phone-ic i { width: 18px; height: 18px; }
.hero-card-feats { display: flex; justify-content: space-between; margin-top: 20px; gap: 6px; }
.hero-card-feats div { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; color: #444; }
.hero-card-feats i { width: 22px; height: 22px; color: var(--red); }
.hero-card-feats div:not(:last-child) { border-right: 1px solid var(--line); }

/* ================= FEATURE STRIP ================= */
.strip { margin-top: -26px; position: relative; z-index: 5; }
.strip-inner {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 20px 10px;
}
.strip-item { display: flex; align-items: center; gap: 14px; padding: 4px 22px; }
.strip-item:not(:last-child) { border-right: 1px solid var(--line); }
.strip-item i { width: 30px; height: 30px; color: var(--red); flex-shrink: 0; }
.strip-item strong { display: block; font-size: 13.5px; font-weight: 700; }
.strip-item span { font-size: 12px; color: var(--muted); }

/* ================= SECTIONS ================= */
.section { padding: 60px 0; }
.section-tight { padding: 40px 0; }
.section-gray { background: var(--gray); }
.section-title { text-align: center; font-size: 30px; font-weight: 800; letter-spacing: .5px; }
.section-title span { color: var(--red); }
.section-sub { text-align: center; color: #333; font-weight: 600; font-size: 13px; letter-spacing: 2px; margin: 4px 0 36px; }

/* ================= CAR GRID ================= */
.car-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-bottom: 34px; }
.car-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 14px; text-align: center; transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #e0e0e0; }
.car-img { height: 130px; margin-bottom: 10px; background: #f6f7f9; border-radius: 10px; overflow: hidden; }
.car-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-name { font-size: 14px; font-weight: 700; min-height: 34px; display: flex; align-items: center; justify-content: center; }
.car-from { font-size: 11px; color: var(--muted); }
.car-price { font-size: 15px; font-weight: 800; color: var(--red); margin-bottom: 12px; }
.car-card .btn { margin-top: auto; font-size: 11px; padding: 9px 12px; }

/* ================= PROMO ================= */
.promo { padding: 20px 0 50px; }
.promo-inner {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-2) 100%);
  border-radius: 18px; color: #fff; padding: 34px 38px;
  display: grid; grid-template-columns: 260px 1fr; align-items: center; gap: 30px;
  box-shadow: 0 16px 40px rgba(226,0,26,.28);
}
.promo-head { display: flex; align-items: center; gap: 16px; }
.promo-head i { width: 60px; height: 60px; color: #ffd84d; flex-shrink: 0; }
.promo-head h2 { font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: .5px; }
.promo-head h2 span { color: #ffd84d; }
.promo-boxes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.promo-box {
  background: #fff; color: var(--ink); border-radius: 12px; padding: 16px 10px;
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 118px;
}
.promo-box small { font-size: 10px; font-weight: 700; color: #555; letter-spacing: .5px; }
.promo-box strong { font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; }
.promo-box span { font-size: 11px; font-weight: 700; letter-spacing: .5px; }
.promo-box-alt i { width: 30px; height: 30px; color: var(--red); margin-bottom: 4px; }
.promo-box-alt strong { font-size: 22px; }
.promo-note { grid-column: 1 / -1; text-align: right; font-size: 11px; opacity: .85; margin-top: -6px; }

/* ================= PARTNERS ================= */
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: center; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; min-height: 96px; padding: 12px 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #333; gap: 6px; transition: box-shadow .2s ease, transform .2s ease;
}
.partner:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.partner-logo { height: 38px; width: auto; max-width: 88%; object-fit: contain; }
.partner-name { font-size: 12px; font-weight: 700; color: #444; text-align: center; letter-spacing: .3px; }
.partner small { font-size: 9px; font-weight: 600; color: #888; letter-spacing: .5px; }
.pt-strong { color: #0b3aa0; font-weight: 800; }
.pt-blue { color: #1447c9; }

/* ================= FEATURES / LAYANAN ================= */
.features { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.feature { text-align: center; padding: 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.feat-ic { width: 58px; height: 58px; border-radius: 50%; background: #fff5f5; display: grid; place-items: center; color: var(--red); border: 1px solid #ffdcdc; }
.feat-ic i { width: 26px; height: 26px; }
.feature strong { font-size: 13px; font-weight: 700; }
.feature span { font-size: 12px; color: var(--muted); }

/* ================= TESTIMONI ================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 4px 18px rgba(0,0,0,.04); }
.testi-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.testi-top img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.stars { color: #ffb400; font-size: 15px; letter-spacing: 1px; }
.testi blockquote { font-size: 13.5px; color: #444; font-style: italic; margin-bottom: 14px; }
.testi figcaption strong { display: block; font-size: 14px; }
.testi figcaption span { font-size: 12px; color: var(--red); font-weight: 600; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d3d3d3; }
.dot.active { background: var(--red); }

/* ================= BOOKING + LOKASI ================= */
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.block-title { font-size: 24px; font-weight: 800; }
.block-title span { color: var(--red); }
.block-sub { font-size: 13px; color: var(--muted); margin: 4px 0 18px; }
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form input, .booking-form select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 13px; color: #333; background: #fafafa;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.booking-form input:focus, .booking-form select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,0,26,.1); background: #fff;
}
.form-msg { font-size: 12.5px; color: var(--green-dark); font-weight: 600; opacity: 0; transition: opacity .2s ease; }
.form-msg.show { opacity: 1; }
.lokasi h3 { font-size: 18px; margin-bottom: 6px; }
.lokasi p { font-size: 13.5px; color: #444; margin-bottom: 12px; }
.lokasi-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 8px; border: 1px solid var(--line); color: #333; transition: all .18s ease; }
.chip i { width: 15px; height: 15px; color: var(--red); }
.chip:hover { border-color: var(--red); color: var(--red); }
.chip-wa { border-color: var(--green); color: var(--green-dark); }
.chip-wa i { color: var(--green-dark); }
.chip-wa:hover { background: var(--green); color: #fff; }
.chip-wa:hover i { color: #fff; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 230px; border: 0; display: block; }

/* ================= BOTTOM CTA ================= */
.cta { background: linear-gradient(120deg, var(--red) 0%, var(--red-2) 100%); color: #fff; padding: 26px 0; }
.cta-inner { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 24px; }
.cta-person { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; object-position: top center; background: rgba(255,255,255,.15); border: 3px solid rgba(255,255,255,.5); }
.cta-text h2 { font-size: 24px; font-weight: 800; line-height: 1.15; }
.cta-text p { font-size: 13.5px; opacity: .92; margin-top: 6px; }
.cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cta-phone { display: inline-flex; align-items: center; gap: 10px; font-size: 30px; font-weight: 800; }
.cta-phone i { width: 26px; height: 26px; }
.cta-action .btn { min-width: 240px; }

/* ================= FOOTER ================= */
.footer { background: #141414; color: #cfcfcf; text-align: center; padding: 20px 0; font-size: 12.5px; }

/* ================= FLOATING WA ================= */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2.2s infinite; transition: transform .2s ease;
}
.float-wa i { width: 28px; height: 28px; }
.float-wa:hover { transform: scale(1.08); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 300px; min-height: 500px; }
  .hero-panel { grid-column: 1; }
  .hero-card { grid-column: 2; }
  .hero-figure { display: none; }
  .car-grid { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .partners { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-nav {
    position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column;
    gap: 0; padding: 0 20px; max-height: 0; overflow: hidden; box-shadow: var(--shadow);
    transition: max-height .3s ease; margin-left: 0;
  }
  .main-nav.open { max-height: 400px; padding: 10px 20px; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .header-wa { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { grid-column: 1; }
  .hero-card { grid-column: 1; }
  .hero-title { font-size: 56px; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 10px; }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item { border-bottom: 1px solid var(--line); }
  .strip-item:nth-child(3), .strip-item:nth-child(4) { border-bottom: none; }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-inner { grid-template-columns: 1fr; text-align: center; }
  .promo-head { justify-content: center; }
  .promo-boxes { grid-template-columns: repeat(2, 1fr); }
  .promo-note { text-align: center; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .cta-action { align-items: center; }
  .section-title { font-size: 24px; }
}
@media (max-width: 420px) {
  .promo-boxes { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .cta-phone { font-size: 24px; }
}
