/* =========================================================
   Honda Denpasar Bali - Stylesheet
   ========================================================= */
:root {
  --red: #e2091a;
  --red-dark: #b3070f;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --light-bg: #f7f7f9;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #000;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
  text-align: center;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  gap: 24px;
  padding: 8px 20px;
  align-items: center;
}
.topbar-tagline {
  margin-left: auto;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-honda {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
}
.logo-city {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--red);
}
.nav-highlight {
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px;
}
.nav-highlight:hover {
  background: var(--red-dark);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* ===== HERO SLIDER (iklan geser) ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 420px;
  overflow: hidden;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #333; /* fallback jika gambar belum ada */
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}
.slide-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
}
.slide-content p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #eee;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--red);
}
.slider-arrow.prev {
  left: 20px;
}
.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--red);
  width: 26px;
  border-radius: 6px;
}

/* ===== QUICK STRIP ===== */
.quick-strip {
  background: var(--dark);
  color: #fff;
  padding: 24px 0;
}
.quick-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}
.quick-icon {
  font-size: 28px;
}
.quick-item strong {
  display: block;
  font-size: 15px;
}
.quick-item p {
  font-size: 13px;
  color: #aaa;
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}
.product-body {
  padding: 20px;
}
.product-body h3 {
  margin-bottom: 12px;
  font-size: 18px;
}
.product-price {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
  font-size: 15px;
}

/* Badge ribbon di pojok kiri atas gambar (mirip "DP HANYA 10% SAJA") */
.product-badge {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px 7px 12px;
  border-radius: 0 6px 6px 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.badge-icon {
  font-size: 13px;
}

/* Spesifikasi mobil (liter, penumpang, tipe bodi, bbm) */
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.spec-item {
  font-size: 12.5px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.section-more {
  text-align: center;
  margin-top: 36px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--light-bg);
  padding: 14px 0;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb a {
  color: var(--gray);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--red);
}
.breadcrumb span {
  color: var(--dark);
  font-weight: 600;
}

/* ===== DETAIL PRODUK ===== */
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.detail-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.detail-img {
  height: 380px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}
.detail-kategori {
  display: inline-block;
  background: #fff3f3;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.detail-info h1 {
  font-size: 32px;
  margin-bottom: 14px;
}
.detail-desc {
  color: var(--gray);
  margin-bottom: 22px;
  font-size: 15px;
}
.detail-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
}
.detail-price-note {
  display: block;
  color: var(--gray);
  font-size: 12px;
  margin: 6px 0 24px;
}
.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== SPESIFIKASI ===== */
.spek-section {
  background: var(--light-bg);
}
.spek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: #e2e2e2;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.spek-item {
  background: #fff;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spek-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spek-value {
  font-size: 15px;
  font-weight: 600;
}

.spek-subtitle {
  font-size: 20px;
  margin-bottom: 18px;
}
.fitur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.fitur-item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.warna-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.warna-chip {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 800px) {
  .detail-wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== PROMO GRID ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.promo-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}
.promo-body {
  padding: 20px;
}
.promo-body h3 {
  margin-bottom: 8px;
}
.promo-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 10px;
}
.promo-body small {
  color: var(--red);
  font-weight: 600;
}

/* ===== CTA KREDIT ===== */
.cta-kredit {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-inner h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.cta-inner p {
  color: #ffe1e1;
}
.cta-kredit .btn-primary {
  background: #fff;
  color: var(--red);
}
.cta-kredit .btn-primary:hover {
  background: #f2f2f2;
}

/* ===== TESTIMONI ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
}
.testi-rating {
  margin-bottom: 10px;
  font-size: 14px;
}
.testi-card p {
  font-style: italic;
  margin-bottom: 14px;
  color: var(--dark);
}

/* ===== PAGE HERO (halaman dalam) ===== */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}
.page-hero p {
  color: #bbb;
}

/* ===== SIMULASI KREDIT ===== */
.simulasi-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.simulasi-form,
.simulasi-hasil {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.simulasi-form h2,
.simulasi-hasil h2 {
  margin-bottom: 20px;
  font-size: 20px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}
.form-group input[type="range"] {
  padding: 0;
}
.form-msg {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}
.form-msg.success {
  color: #1a8a3d;
}
.form-msg.error {
  color: var(--red);
}

.hasil-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 10px 20px;
}
.hasil-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
}
.hasil-item:last-child {
  border-bottom: none;
}
.hasil-item.highlight {
  background: #fff3f3;
  margin: 6px -20px;
  padding: 16px 20px;
  border-radius: 8px;
}
.hasil-item.highlight strong {
  color: var(--red);
  font-size: 18px;
}
.disclaimer {
  font-size: 12px;
  color: var(--gray);
  margin-top: 16px;
}

/* ===== KONTAK ===== */
.kontak-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}

/* --- Kartu Sales --- */
.sales-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.sales-photo-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  box-shadow:
    0 0 0 2px var(--red),
    0 0 20px 4px rgba(226, 9, 26, 0.55),
    0 0 40px 8px rgba(226, 9, 26, 0.35);
  animation: salesGlow 2.4s ease-in-out infinite;
}
@keyframes salesGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 2px var(--red),
      0 0 20px 4px rgba(226, 9, 26, 0.55),
      0 0 40px 8px rgba(226, 9, 26, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 2px var(--red),
      0 0 26px 8px rgba(226, 9, 26, 0.75),
      0 0 55px 14px rgba(226, 9, 26, 0.5);
  }
}
.sales-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.sales-name {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.sales-jabatan {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}
.sales-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 16px 0;
}

.sales-info-block {
  margin-bottom: 20px;
}
.sales-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.sales-link {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.sales-link:hover {
  color: var(--red-dark);
}

/* --- Konten kanan --- */
.kontak-content h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.kontak-content h3:first-of-type {
  margin-top: 0;
}
.kontak-content p {
  color: var(--gray);
  font-size: 14.5px;
  margin-bottom: 6px;
}
.kontak-lead {
  font-size: 16px;
  color: var(--dark) !important;
  margin-bottom: 10px !important;
}
.kontak-list {
  margin: 12px 0 6px 20px;
  color: var(--gray);
  font-size: 14.5px;
}
.kontak-list li {
  margin-bottom: 8px;
}
.kontak-note {
  color: var(--gray);
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

/* --- Alamat strip bawah --- */
.kontak-alamat {
  padding-top: 0;
}
.kontak-alamat-inner {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.kontak-alamat-inner h3 {
  margin-bottom: 8px;
}
.kontak-alamat-inner p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .kontak-layout {
    grid-template-columns: 1fr;
  }
  .sales-card {
    position: static;
  }
}

/* =========================================================
   KONTAK KAMI v2 — dark banner + floating sales card + tabs
   ========================================================= */
.kontak-v2{
  background: linear-gradient(135deg, #1a1a1a 0%, #2b0507 60%, #3a0507 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.kontak-v2::before{
  content:"";
  position:absolute;
  top:-120px; right:-120px;
  width:420px; height:420px;
  background: radial-gradient(circle, rgba(226,9,26,.35) 0%, transparent 70%);
  border-radius:50%;
}
.kontak-v2::after{
  content:"";
  position:absolute;
  bottom:-160px; left:-100px;
  width:380px; height:380px;
  background: radial-gradient(circle, rgba(226,9,26,.2) 0%, transparent 70%);
  border-radius:50%;
}
.kontak-v2 .container{position:relative; z-index:2;}
.section-title.light{color:#fff;}
.section-subtitle.light{color:#cfcfcf;}

.kontak-v2-wrap{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap:40px;
  align-items:start;
  margin-top:20px;
}

/* --- Kartu sales mengambang --- */
.sales-card-v2{
  background:#fff;
  border-radius:18px;
  padding:32px 24px;
  text-align:center;
  box-shadow: 0 25px 50px rgba(0,0,0,.35);
  transform: translateY(-10px);
}
.sales-photo-v2-wrap{
  position:relative;
  width:130px;
  height:130px;
  margin:0 auto 18px;
}
.sales-photo-v2{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  display:block;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}
.sales-online-dot{
  position:absolute;
  bottom:4px;
  right:4px;
  width:18px;
  height:18px;
  background:#2ecc71;
  border:3px solid #fff;
  border-radius:50%;
}
.sales-name-v2{
  font-size:17px;
  font-weight:800;
  color:var(--dark);
  margin-bottom:2px;
}
.sales-jabatan-v2{
  font-size:12.5px;
  color:var(--red);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:20px;
}

.sales-icon-row{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:18px;
}
.sales-icon-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--light-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  transition:var(--transition);
}
.sales-icon-btn:hover{background:var(--red); transform:translateY(-3px);}
.sales-icon-btn.whatsapp:hover{background:#25D366;}

.sales-cta{width:100%; margin-bottom:20px;}

.sales-detail-list{
  text-align:left;
  border-top:1px solid #eee;
  padding-top:16px;
}
.sales-detail-list li{
  display:flex;
  justify-content:space-between;
  font-size:12.5px;
  padding:6px 0;
  color:var(--gray);
}
.sales-detail-list strong{color:var(--dark); font-weight:600;}

/* --- Konten tab kanan --- */
.kontak-lead-v2{
  color:#e8e8e8;
  font-size:15.5px;
  margin-bottom:26px;
  max-width:640px;
}
.kontak-lead-v2 strong{color:#fff;}

.kontak-tabs{
  display:flex;
  gap:10px;
  margin-bottom:0;
  flex-wrap:wrap;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.tab-btn{
  background:transparent;
  border:none;
  color:#bbb;
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  padding:12px 18px;
  cursor:pointer;
  position:relative;
  transition:var(--transition);
}
.tab-btn::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:3px;
  background:var(--red);
  border-radius:3px 3px 0 0;
  transform:scaleX(0);
  transition:var(--transition);
}
.tab-btn:hover{color:#fff;}
.tab-btn.active{color:#fff;}
.tab-btn.active::after{transform:scaleX(1);}

.tab-panels{
  background:#fff;
  border-radius:0 14px 14px 14px;
  padding:28px 30px;
  min-height:220px;
}
.tab-panel{display:none;}
.tab-panel.active{display:block; animation: tabFade .35s ease;}
@keyframes tabFade{
  from{opacity:0; transform:translateY(6px);}
  to{opacity:1; transform:translateY(0);}
}
.tab-panel h3{font-size:19px; margin-bottom:10px;}
.tab-panel p{color:var(--gray); font-size:14.5px; margin-bottom:14px;}

.bonus-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:10px;
  margin-bottom:10px;
}
.bonus-chip{
  background:var(--light-bg);
  border-radius:8px;
  padding:10px 14px;
  font-size:13.5px;
  color:var(--dark);
}

.btn-outline-light{
  border:2px solid #fff;
  color:#fff;
  background:transparent;
}
.btn-outline-light:hover{background:#fff; color:var(--dark);}

@media (max-width: 900px){
  .kontak-v2-wrap{grid-template-columns:1fr;}
  .sales-card-v2{max-width:340px; margin:0 auto;}
  .tab-panels{border-radius:14px;}
}
@media (max-width:520px){
  .kontak-tabs{gap:4px;}
  .tab-btn{padding:10px 12px; font-size:12.5px;}
  .tab-panels{padding:22px 18px;}
}

/* ===== LOKASI (di halaman utama) ===== */
.lokasi-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px;
}
.lokasi-info h3 {
  margin-bottom: 14px;
  font-size: 20px;
}
.lokasi-info p {
  margin-bottom: 10px;
  font-size: 14px;
}
.lokasi-info .btn {
  margin-top: 12px;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .lokasi-wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--red);
}
.footer-col p {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #888;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 998;
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .simulasi-wrap,
  .kontak-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .topbar-inner {
    font-size: 11px;
    gap: 12px;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .hero-slider {
    height: 60vh;
  }
}
