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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b0d12;
  --text: #f2f3f5;
  --muted: #b9bdc7;
  --accent: #f9c418;
  --accent-dark: #d5a30d;
  --card: #141824;
  --border: #262b3a;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 88%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 18, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 4px solid var(--accent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 12px;
  font-weight: 600;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(249, 196, 24, 0.12);
}

.nav-logo-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
}

.hero {
  position: relative;
  min-height: 90vh;
  margin-top: -96px;
  padding-top: 96px;
  background-color: #0b0d12;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,13,18,0.3) 0%, rgba(11,13,18,0.6) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 480px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #0b0d12;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.btn-hero-cta:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-taksi-wrap {
  position: relative;
}

.hero-taksi {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: taksi-scale-in 0.8s ease-out forwards;
}

@keyframes taksi-scale-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  color: #0b0d12;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-badge i {
  color: var(--accent);
  font-size: 1.2rem;
}

.hero-contact-strip {
  background: var(--accent);
  padding: 16px 0;
  position: relative;
  z-index: 2;
}

.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b0d12;
  font-weight: 600;
  text-decoration: none;
}

.strip-item i {
  font-size: 1.1rem;
}

.btn-strip {
  background: #0b0d12;
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-strip:hover {
  background: #1a1d26;
  color: var(--accent);
}

.accent-text {
  color: var(--accent);
}

.subtitle {
  color: var(--muted);
  max-width: 560px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(249, 196, 24, 0.15);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #0b0d12;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(249, 196, 24, 0.1);
}

.btn-full {
  width: 100%;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.quick-card {
  background: var(--card);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.quick-card i {
  color: var(--accent);
  font-size: 1.3rem;
  background: rgba(249, 196, 24, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.info-title {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card .card {
  background: rgba(20, 24, 36, 0.95);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(20, 24, 36, 0.7);
  padding: 16px;
  border-radius: 14px;
}

.qr img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #fff;
}

.section {
  padding: 64px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.grid {
  display: grid;
  gap: 16px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(249, 196, 24, 0.12);
}

.service-card i {
  color: var(--accent);
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(249, 196, 24, 0.12);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
  background: rgba(249, 196, 24, 0.2);
}

.comment {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  font-weight: 600;
}

.trust-card {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  gap: 14px;
  align-items: center;
}

.trust-card i {
  color: var(--accent);
  font-size: 1.4rem;
  background: rgba(249, 196, 24, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.map-section {
  background: #0f1422;
}

#map {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  margin-top: 20px;
}

.leaflet-control-attribution {
  display: none !important;
}

.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.comments {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq details {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.contact {
  background: #0f1422;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.label {
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 600;
}

.footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.footer p {
  margin-bottom: 8px;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer a {
  color: var(--accent);
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 36px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  z-index: 997;
}

.whatsapp-float {
  position: relative;
  background: #25d366;
  color: #0b0d12;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease;
  bottom: 10px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 1.5s ease-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

.whatsapp-pulse-2 { animation-delay: 0.75s; }

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-float i {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.call-float {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #0b0d12;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(249, 196, 24, 0.35);
  transition: transform 0.2s ease;
  border: 1px solid #0b0d12;
}

.call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: call-pulse 1.5s ease-out infinite;
  opacity: 0.5;
  pointer-events: none;
}

.call-pulse-2 {
  animation-delay: 0.75s;
}

@keyframes call-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.call-float:hover {
  transform: scale(1.05);
  color: #0b0d12;
}

.call-float i {
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.scroll-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--card);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
  cursor: pointer;
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 720px) {
  body {
    padding-top: 112px;
  }

  .nav-logo-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo-mobile i {
    font-size: 1.1rem;
  }

  .nav-inner {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
    color: var(--accent);
    font-size: 1.5rem;
    padding: 10px 25px;
    margin-right: -8px;
    border-radius: 8px;
  }

  .nav-toggle:hover {
    background: rgba(249, 196, 24, 0.12);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(11, 13, 18, 0.98);
    align-items: center;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-hero-cta {
    margin: 0 auto;
  }

  .hero-taksi {
    max-height: 200px;
  }

  .hero-visual {
    padding-bottom: 50px;
  }

  .hero-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -42px;
    padding: 10px 20px;
    white-space: nowrap;
    min-width: max-content;
  }

  .hero-contact-strip {
    padding: 14px 12px;
    margin-top: 50px;
  }

  .hero-strip-inner {
    flex-direction: column;
    gap: 12px;
  }

  .strip-item {
    font-size: 0.9rem;
  }

  .btn-strip {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
