:root {
  /* Color Palette - Merah Hitam Premium */
  --primary: #e50914;
  --primary-hover: #b8050e;
  --bg-dark: #070707;
  --card-bg: rgba(229, 9, 20, 0.03);
  --border: rgba(229, 9, 20, 0.15);
  --text-main: #f5f5f5;
  --text-muted: #a1a1a1;
  --glass: rgba(20, 0, 0, 0.4);
  --glass-border: rgba(229, 9, 20, 0.2);
  --font-main: "Inter", sans-serif;
  --font-heading: "Outfit", sans-serif;
  --container-max: 1200px;
  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}
h1 {
  font-size: 4rem;
  line-height: 1.1;
}
h2 {
  font-size: 2.5rem;
}
span {
  color: var(--primary);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  font-family: var(--font-main);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #8a030b 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a26 0%, var(--primary-hover) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.6);
}
.btn-primary:hover::after {
  left: 200%;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--glass);
  border-color: var(--primary);
  box-shadow: inset 0 0 10px rgba(229, 9, 20, 0.2);
}
.btn-full {
  width: 100%;
}

/* ---- Navbar ---- */
.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: white;
  letter-spacing: -1px;
}
.brand-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ---- Hamburger Menu ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---- Glassmorphism ---- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}
.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s linear;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 7, 0.6);
  z-index: 1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  margin-bottom: 1.5rem;
}
.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
}
.hero-form {
  padding: 2.5rem;
}
.hero-form h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.hero-bg-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ---- Tentang Kami ---- */
.tentang-section {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background: var(--bg-dark);
}
.tentang-wrapper {
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 28, 0.8) 0%,
    rgba(10, 10, 10, 0.9) 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.tentang-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 1.05rem;
}
.tentang-body strong {
  color: #fff;
  font-weight: 600;
}

/* ---- Form Elements ---- */
.input-group {
  margin-bottom: 1.5rem;
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(30, 30, 30, 0.8);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.15);
  transform: translateY(-2px);
}

/* ---- Section Common ---- */
.section {
  padding: 8rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto;
}

/* Category filters removed */

/* ---- Car Cards ---- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.car-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.car-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 20px 40px rgba(229, 9, 20, 0.15);
}
.car-card:hover .car-image img {
  transform: scale(1.1);
}
.car-img, 
.car-image {
  overflow: hidden;
}
.car-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  background-color: #0f0f0f;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.car-info {
  padding: 1.5rem;
}
.car-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: #fff;
}
.car-merk {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.car-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  background: rgba(229, 9, 20, 0.1);
  color: var(--text-main);
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--border);
}
.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}
.car-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.car-meta span svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  stroke-width: 2.5px;
}
.car-price {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.car-price .amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}
.car-price .unit {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ---- Form Pemesanan & Cara Booking Flow ---- */
.booking-section {
  padding-bottom: 2rem !important;
}
.cara-booking-section {
  background: linear-gradient(to bottom, rgba(229, 9, 20, 0.04), var(--bg-dark));
  position: relative;
  overflow: hidden;
  padding-top: 2rem !important;
}
.timeline-wrapper {
  position: relative;
  padding-top: 2rem;
}
.timeline-line {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 1;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.timeline-card {
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 15px;
  cursor: default;
}
.timeline-card:hover {
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.timeline-step {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(229,9,20,0.5);
  z-index: 3;
}
.timeline-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  transition: all 0.4s ease;
}
.timeline-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}
.timeline-card:hover .timeline-icon {
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(229,9,20,0.6));
}
.timeline-card h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}
.timeline-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Tabel Harga ---- */
.harga-section {
  background: linear-gradient(
    to bottom,
    var(--bg-dark),
    rgba(229, 9, 20, 0.04)
  );
}
.table-wrapper {
  overflow-x: auto;
  padding: 0.5rem;
  border-radius: var(--radius-md);
}
.harga-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-size: 0.9rem;
}
.harga-table thead tr {
  background: linear-gradient(135deg, var(--primary), #8a030b);
}
.harga-table th {
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}
.harga-table th:first-child {
  text-align: left;
  border-radius: var(--radius-sm) 0 0 0;
}
.harga-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}
.harga-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.harga-table tbody tr:hover {
  background: rgba(229, 9, 20, 0.08);
}
.harga-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  color: var(--text-muted);
}
.harga-table td.car-name {
  text-align: left;
  color: var(--text-main);
  font-weight: 600;
  white-space: nowrap;
}
.vip-row td {
  color: #ffae00;
}
.vip-row td.car-name {
  color: #ffae00;
}
.harga-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ---- Testimoni ---- */
.testimoni-section {
  background: linear-gradient(
    to bottom,
    rgba(229, 9, 20, 0.04),
    var(--bg-dark)
  );
}
.ig-embed-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

/* ---- Syarat & Ketentuan ---- */
.syarat-section {
  background: var(--bg-dark);
}
.syarat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}
.syarat-card {
  padding: 2rem 1.5rem;
  text-align: center;
}
.syarat-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.syarat-card ul {
  list-style: none;
  text-align: left;
  display: block;
}
.syarat-card ul li {
  margin-bottom: 1rem;
  color: var(--text-muted);
  display: block;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.syarat-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ---- Kontak ---- */
.kontak-section {
  background: var(--bg-dark);
}
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
.kontak-info {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.kontak-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.kontak-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.kontak-item p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}
.wa-btn {
  margin-top: auto;
  gap: 0.5rem;
  font-size: 1rem;
}
.peta-wrapper {
  overflow: hidden;
  min-height: 400px;
  padding: 0.5rem;
}
.peta-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* ---- Modal ---- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-content {
  width: 100%;
  max-width: 900px;
  padding: 3rem;
  position: relative;
  animation: modalFade 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-modal:hover {
  color: white;
}

/* ---- WA Float ---- */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: waPulse 2.5s infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-5px);
}
.wa-float span {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---- Footer ---- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 0.7rem;
}
.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

@media (min-width: 993px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }
  .timeline-line {
    display: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(7, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: 0.5s cubic-bezier(0.85, 0.01, 0.2, 0.99);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    font-size: 1.5rem;
    color: white;
  }

  .nav-cta {
    display: none;
  }
  .kontak-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .syarat-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 1.5rem;
  }
  #modal-body > div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .booking-section {
    padding-bottom: 1.5rem !important;
  }
  .cara-booking-section {
    padding-top: 1.5rem !important;
  }
  .hero {
    padding-top: 0;
    background-color: var(--bg-dark);
    align-items: center;
  }
  .hero-slider .slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(7, 7, 7, 0.1) 0%,
      rgba(7, 7, 7, 0.6) 40%,
      rgba(7, 7, 7, 0.95) 100%
    );
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 35vh;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .car-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .wa-float {
    bottom: 1.5rem;
    right: auto;
    left: 1.5rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 1rem;
  }
  .hero-form {
    padding: 1.5rem 1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .harga-table th,
  .harga-table td {
    padding: 0.7rem 0.5rem;
    font-size: 0.75rem;
  }
  .car-grid {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .syarat-card {
    padding: 1.5rem 1rem;
  }
  .car-info {
    padding: 1.2rem;
  }
}

@media (min-width: 993px) {
  .mobile-only-link {
    display: none !important;
  }
}

