/* ============================================================
   BIONIC GARAGE × PRO7 — STYLE.CSS
   Theme: Dark Automotive · Accent: Red · Text: White
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #141414;
  --black-4: #1a1a1a;
  --black-5: #222222;
  --red: #cc0000;
  --red-bright: #ff1a1a;
  --red-dim: rgba(204, 0, 0, 0.15);
  --red-glow: rgba(204, 0, 0, 0.4);
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.08);
  --green: #22c55e;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-ui: "Rajdhani", sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-red: 0 0 30px rgba(204, 0, 0, 0.25), 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-red: 1px solid rgba(204, 0, 0, 0.3);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---- NOISE OVERLAY ---- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(204, 0, 0, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
.cursor-ring.hover {
  width: 48px;
  height: 48px;
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.05);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.text-red {
  color: var(--red);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before {
  opacity: 1;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}
.btn-red:hover {
  background: var(--red-bright);
  box-shadow: 0 0 35px rgba(204, 0, 0, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #000;
}
.btn-green:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---- SECTION SHARED ---- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-dim);
  padding: 5px 16px;
  border-radius: 100px;
  border: var(--border-red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ==================================
   NAVBAR & LOGO WRAPPER FIX
================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-subtle);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: rgba(204, 0, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Kotak putih pembungkus logo biar rapi (Trik tanpa remove background) */
.logo-wrapper {
  background-color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.brand-x {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 20px rgba(204, 0, 0, 0.6);
  padding: 0 4px;
  transform: skewX(-12deg);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: rgba(8, 8, 8, 0.98);
  border-top: var(--border-red);
  padding: 20px 24px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
}

/* ==================================
   HERO
================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(204, 0, 0, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(204, 0, 0, 0.08) 0%,
    transparent 70%
  );
  bottom: 50px;
  left: -50px;
  animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.hero-stripe {
  position: absolute;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.3;
  pointer-events: none;
}
.hero-stripe-1 {
  left: 8%;
}
.hero-stripe-2 {
  right: 8%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--red);
  }
  50% {
    opacity: 0.4;
    box-shadow: none;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.title-line {
  display: block;
}
.title-accent {
  color: var(--red);
}
.title-outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.hero-desc {
  color: var(--white-60);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
}

.hero-ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  border: var(--border-red);
  border-radius: 100px;
  padding: 7px 16px;
  background: var(--red-dim);
  margin-bottom: 32px;
  transition: var(--transition);
}
.hero-ig-tag svg {
  width: 16px;
  height: 16px;
}
.hero-ig-tag:hover {
  background: rgba(204, 0, 0, 0.25);
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual - REAL CAR IMAGE TRANSPARENT */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-frame {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
.car-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(204, 0, 0, 0.15);
  animation: ringExpand 3s ease-in-out infinite;
}
@keyframes ringExpand {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }
}

.real-car-img {
  width: 100%;
  position: relative;
  z-index: 2;
  /* Efek melayang sedikit */
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
  animation: floatCar 4s ease-in-out infinite;
}

@keyframes floatCar {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Stat badges floating */
.stat-badge {
  position: absolute;
  background: var(--black-4);
  border: var(--border-red);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.stat-badge-1 {
  top: 10%;
  right: -10px;
}
.stat-badge-2 {
  bottom: 10%;
  left: -10px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-60);
}

/* GROUPED STATS BOX */
.hero-stats-container-box {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-60);
}

/* ==================================
   SERVICES
================================== */
.services {
  background: var(--black-2);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(204, 0, 0, 0.05) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.service-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--white-60);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: var(--border-red);
  border-radius: 100px;
  padding: 3px 12px;
  background: var(--red-dim);
}

/* ==================================
   PRICING
================================== */
.pricing {
  position: relative;
  overflow: hidden;
}
.pricing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(204, 0, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pricing-featured {
  background: var(--black-5);
  border-color: rgba(204, 0, 0, 0.4);
  transform: scale(1.03);
  box-shadow: var(--shadow-red);
}
.pricing-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price-currency {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--white-60);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.price-period {
  font-size: 0.85rem;
  color: var(--white-60);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-90);
}
.check {
  font-size: 0.85rem;
  color: var(--red);
}
.check.muted {
  color: var(--white-30);
}
.pricing-features li:has(.check.muted) {
  color: var(--white-30);
}

.pricing-note {
  text-align: center;
  color: var(--white-30);
  font-size: 0.85rem;
  margin-top: 32px;
  font-style: italic;
}

/* ==================================
   TESTIMONIALS
================================== */
.testimonials {
  background: var(--black-2);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testi-card {
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  border-color: rgba(204, 0, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testi-featured {
  background: linear-gradient(
    135deg,
    var(--black-5) 0%,
    rgba(204, 0, 0, 0.08) 100%
  );
  border-color: rgba(204, 0, 0, 0.35);
}

.testi-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(204, 0, 0, 0.15);
  font-style: italic;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--white-90);
  font-style: italic;
  flex-grow: 1;
}
.testi-highlight {
  color: var(--red);
  font-style: normal;
  font-weight: 600;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--black-5);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-avatar-red {
  border-color: var(--red);
  background: var(--red-dim);
  color: var(--red);
}

.testi-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--white-60);
}

.testi-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--white-60);
  flex-shrink: 0;
}

/* Rating summary */
.rating-summary {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.rating-stars-big {
  font-size: 2rem;
  color: #f59e0b;
  letter-spacing: 4px;
}
.rating-summary p {
  color: var(--white-60);
  font-size: 0.9rem;
}

/* ==================================
   HOW IT WORKS
================================== */
.how-works {
  background: var(--black);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.step-item {
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.step-item:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(204, 0, 0, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.step-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--red);
}
.step-item p {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.5;
}

.step-arrow {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(204, 0, 0, 0.4);
  text-align: center;
  padding: 0 8px;
}

/* ==================================
   CONTACT
================================== */
.contact {
  background: var(--black-2);
  border-top: var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(204, 0, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition: var(--transition);
}
.contact-block:hover {
  border-color: rgba(204, 0, 0, 0.2);
}
.contact-block:last-child {
  margin-bottom: 0;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--red-dim);
  border: var(--border-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-block h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 6px;
}
.contact-block p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white-90);
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.contact-btn {
  font-size: 0.8rem !important;
  padding: 10px 14px !important;
}

/* Map */
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-directions-btn {
  border-radius: var(--radius) !important;
}

/* ==================================
   FOOTER
================================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(204, 0, 0, 0.15);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* White wrapper untuk logo footer */
.footer-logo .logo-wrapper {
  background-color: #ffffff;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 34px;
  width: auto;
}

.footer-tagline {
  color: var(--white-60);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--black-4);
  border: var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: var(--transition);
}
.footer-socials a svg {
  width: 18px;
  height: 18px;
}
.footer-socials a:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

.footer-links h5 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--white-60);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--red);
}

.footer-contact-col h5 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: var(--white-30);
  font-size: 0.8rem;
}

/* ==================================
   SCROLL TO TOP
================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--red);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--red-bright);
  box-shadow: 0 6px 28px rgba(204, 0, 0, 0.55);
  transform: translateY(-3px);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

/* ==================================
   RESPONSIVE
================================== */
/* ============================================================
   PERBAIKAN RESPONSIVITAS TOTAL (HP & TABLET) - GERAK CEPAT!
   ============================================================ */

@media (max-width: 900px) {
  /* Sembunyikan menu desktop, aktifkan hamburger */
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }

  /* Set kontainer hero menjadi satu kolom rata tengah */
  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 30px !important;
    padding: 20px 24px !important;
  }

  /* Atur teks judul agar posisinya pas di tengah layar */
  .hero-title {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .hero-desc {
    margin: 0 auto 20px !important;
  }

  /* Sembunyikan badge melayang kecil agar tidak menumpuk teks */
  .stat-badge {
    display: none !important;
  }

  /* Ubah semua grid layout (layanan, harga, ulasan) menjadi satu kolom */
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .contact-layout,
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .step-arrow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px !important;
    min-height: auto !important;
  }

  /* Buat area frame mobil melebar sempurna tanpa batas */
  .hero-visual {
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-car-frame {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  /* Kunci utama: Paksa gambar mobil merah muncul, no-background, dan ukurannya pas */
  .real-car-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    transform: none !important;
  }

  /* Atur kotak statistik 2x2 agar posisinya pas di bawah mobil */
  .hero-stats-container-box {
    margin: 20px auto 0 auto !important;
    width: 100% !important;
    max-width: 500px !important;
    padding: 10px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .stat-item {
    padding: 15px 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  /* Bersihkan border luar pada grid statis */
  .stat-item:nth-child(even) {
    border-right: none !important;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none !important;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  /* Set tombol kontak agar penuh saat dibuka di HP */
  .contact-buttons {
    grid-template-columns: 1fr !important;
  }

  .map-frame {
    height: 280px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }
}

/* ==================================
   SELECTION & SCROLLBAR
================================== */
::selection {
  background: rgba(204, 0, 0, 0.4);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-bright);
}
