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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #07111f;
  color: white;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */

nav{
  position:fixed;
  top:20px;
  left:50%;

  transform:translateX(-50%);

  width:92%;
  max-width:1300px;

  z-index:999;

  background:
    linear-gradient(
      135deg,
      rgba(6,18,35,0.88),
      rgba(4,12,24,0.92)
    );

  border:1px solid rgba(77,227,255,0.10);

  backdrop-filter:blur(18px);

  border-radius:24px;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.30),
    0 0 40px rgba(0,140,255,0.08);
}
nav::after{
  content:'';

  position:absolute;

  left:30px;
  right:30px;
  bottom:-1px;

  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(77,227,255,0.45),
      transparent
    );
}
.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:16px 28px;
}
@media(max-width:700px){

  nav{
    top:12px;
    width:94%;
    border-radius:20px;
  }

  .menu{
    display:none;
  }

  .nav-content{
    justify-content:center;
    padding:14px 18px;
  }

  .logo-wrapper{
    width:100%;
    justify-content:center;

    padding:10px 14px;
    gap:10px;
  }

  .logo-img{
    width:54px;
  }

  .logo-text h2{
    font-size:13px;
  }

  .logo-text span{
    font-size:8px;
    letter-spacing:1.5px;
  }
}

/* ===== LOGO AREA ===== */

.logo-wrapper{
  display:flex;
  align-items:center;
  gap:14px;

  padding:10px 18px;

  border-radius:20px;

  background:
    linear-gradient(
      135deg,
      rgba(77,227,255,0.10),
      rgba(0,89,255,0.10)
    );

  border:1px solid rgba(77,227,255,0.12);

  transition:0.35s;
}

.logo-wrapper:hover{
  transform:translateY(-2px);

  box-shadow:
    0 10px 30px rgba(0,140,255,0.12);
}

.logo-img {
  width: 82px;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 0 6px rgba(77, 227, 255, 0.35)) drop-shadow(0 0 14px rgba(0, 140, 255, 0.22)) brightness(1.12);

  transition: 0.3s;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.03);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text h2 {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin: 0;
}

.logo-text span {
  font-size: 11px;
  color: #4de3ff;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-top: 4px;
}

/* ===== MENU ===== */

.menu{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu a{
  position:relative;

  padding:12px 18px;

  border-radius:14px;

  color:#d5dbe4;
  text-decoration:none;

  font-weight:600;
  font-size:15px;

  transition:0.3s;
}

.menu a:hover{
  color:#4de3ff;

  background:
    rgba(77,227,255,0.08);

  box-shadow:
    inset 0 0 0 1px rgba(77,227,255,0.08),
    0 0 20px rgba(77,227,255,0.08);
}

/* ================= HERO ================= */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(4, 12, 22, 0.82),
      rgba(4, 12, 22, 0.88)),
    url('truck-bg.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top left,
      rgba(77, 227, 255, 0.18),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(0, 102, 255, 0.18),
      transparent 30%);

  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;
  align-items: center;

  padding-top: 140px;
}

.badge {
  display: inline-block;

  background: rgba(77, 227, 255, 0.12);
  border: 1px solid rgba(77, 227, 255, 0.25);

  padding: 10px 18px;
  border-radius: 999px;

  color: #67e8f9;

  margin-bottom: 24px;
  font-size: 14px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.05;

  margin-bottom: 24px;
  font-weight: 900;
}

.hero h1 span {
  color: #4de3ff;
}

.hero p {
  color: #b8c1cc;

  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 36px;
}

/* ================= BUTTON ================= */

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 28px;

  border-radius: 16px;
  border: none;

  cursor: pointer;

  font-weight: 700;
  font-size: 15px;

  transition: 0.3s;

  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #4de3ff;
  color: #00131c;

  box-shadow: 0 15px 40px rgba(77, 227, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #8cf0ff;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: white;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #4de3ff;
  color: #4de3ff;
}

/* ================= CARDS ================= */

.hero-card {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 32px;
  padding: 36px;

  backdrop-filter: blur(12px);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  background: #091525;

  border-radius: 24px;
  padding: 26px;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat h3 {
  font-size: 42px;
  color: #4de3ff;

  margin-bottom: 10px;
}

.stat-icon{
  width:72px;
  height:72px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;

  background:
    linear-gradient(
      135deg,
      rgba(77,227,255,0.22),
      rgba(0,89,255,0.18)
    );

  border:1px solid rgba(77,227,255,0.18);

  color:#67e8f9;

  font-size:30px;

  box-shadow:
    0 10px 30px rgba(0,140,255,0.18),
    inset 0 0 14px rgba(255,255,255,0.04);

  transition:0.35s;
}

.stat{
  transition:0.35s;
}

.stat:hover{
  transform:translateY(-8px);

  border-color:rgba(77,227,255,0.28);

  box-shadow:
    0 15px 40px rgba(0,140,255,0.18);
}

.stat:hover .stat-icon{
  transform:scale(1.12) rotate(-3deg);

  box-shadow:
    0 0 30px rgba(77,227,255,0.28),
    0 0 60px rgba(0,140,255,0.12);
}

.stat p{
  color:#aeb9c8;
  line-height:1.7;
  font-size:15px;
}

.stat h3{
  font-size:44px;
  font-weight:900;

  color:#4de3ff;

  margin-bottom:10px;

  text-shadow:
    0 0 18px rgba(77,227,255,0.18);
}

/* ================= SECTION ================= */

section{
  padding:110px 0;
  scroll-margin-top:90px;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #4de3ff;

  font-weight: 700;
  letter-spacing: 2px;

  text-transform: uppercase;
  font-size: 14px;
}

.section-title h2 {
  font-size: 52px;

  margin-top: 16px;
  font-weight: 900;
}

.section-title p {
  max-width: 700px;

  margin: auto;
  margin-top: 18px;

  color: #a9b4c2;
  line-height: 1.8;
}

/* ================= SERVICES ================= */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.service {
  background: #0d1726;

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 30px;
  padding: 36px;

  transition: 0.35s;
}

.service:hover {
  transform: translateY(-8px);

  border-color: rgba(77, 227, 255, 0.4);
}

.icon {
  width: 70px;
  height: 70px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(77, 227, 255, 0.12);

  font-size: 30px;
  margin-bottom: 24px;
}

/* ================= COVERAGE ================= */

.coverage-box {
  background: linear-gradient(135deg,
      rgba(77, 227, 255, 0.08),
      rgba(0, 89, 255, 0.08));

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 32px;
  padding: 50px;
}

.cities {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;
  margin-top: 30px;
}

.city {
  padding: 14px 22px;

  border-radius: 999px;

  background: #0d1726;

  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ================= CTA ================= */

.cta {
  text-align: center;
}

.cta-box {
  padding: 70px 40px;

  border-radius: 40px;

  background: #0d1726;

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta h2 {
  font-size: 54px;

  margin-bottom: 22px;
  font-weight: 900;
}

.cta p {
  color: #b2bcc8;

  max-width: 700px;

  margin: auto;
  margin-bottom: 36px;

  line-height: 1.8;
}

/* ================= TIMELINE ================= */

.timeline{
  position:relative;

  display:flex;
  flex-direction:column;

  gap:34px;

  max-width:950px;
  margin:auto;
}

.timeline::before{
  content:'';

  position:absolute;

  left:34px;
  top:0;
  bottom:0;

  width:2px;

  background:
    linear-gradient(
      to bottom,
      rgba(77,227,255,0.4),
      rgba(0,89,255,0.15)
    );
}

.timeline-item{
  position:relative;

  display:flex;
  gap:26px;

  z-index:2;
}

.timeline-number{
  min-width:70px;
  height:70px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  font-weight:800;

  color:#4de3ff;

  background:
    linear-gradient(
      135deg,
      rgba(77,227,255,0.16),
      rgba(0,89,255,0.12)
    );

  border:1px solid rgba(77,227,255,0.14);

  backdrop-filter:blur(10px);

  box-shadow:
    0 10px 30px rgba(0,140,255,0.10);
}

.timeline-content{
  flex:1;

  background:#0d1726;

  border-radius:28px;

  padding:34px;

  border:1px solid rgba(255,255,255,0.05);

  transition:0.35s;
}

.timeline-content:hover{
  transform:translateY(-6px);

  border-color:rgba(77,227,255,0.22);

  box-shadow:
    0 15px 35px rgba(0,140,255,0.08);
}

.timeline-icon{
  width:64px;
  height:64px;

  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;

  background:
    linear-gradient(
      135deg,
      rgba(77,227,255,0.16),
      rgba(0,89,255,0.14)
    );

  border:1px solid rgba(77,227,255,0.10);

  color:#4de3ff;

  font-size:24px;
}

.timeline-content h3{
  font-size:24px;
  margin-bottom:14px;
}

.timeline-content p{
  color:#a9b4c2;
  line-height:1.8;
}

/* ================= MOBILE ================= */

@media(max-width:700px){

  .timeline::before{
    left:24px;
  }

  .timeline-item{
    gap:18px;
  }

  .timeline-number{
    min-width:50px;
    height:50px;

    border-radius:16px;

    font-size:14px;
  }

  .timeline-content{
    padding:24px;
  }

  .timeline-icon{
    width:54px;
    height:54px;

    border-radius:16px;

    font-size:20px;
  }

  .timeline-content h3{
    font-size:20px;
  }
}

/* ================= FOOTER ================= */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);

  padding: 40px 0;

  text-align: center;
  color: #95a3b5;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px) {

  .hero-grid,
  .services {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 52px;
  }
}

@media(max-width:700px) {

  .menu {
    display: none;
  }

  .nav-content {
    justify-content: center;
    padding: 14px 0;
  }

  .logo-wrapper {
    padding: 8px 14px;
    gap: 10px;
    border-radius: 14px;
  }

  .logo-img {
    width: 58px;
  }

  .logo-text h2 {
    font-size: 14px;
  }

  .logo-text span {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-top: 2px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .cta h2 {
    font-size: 38px;
  }
}

/* ================= MOBILE MENU ================= */

.menu-toggle{
  display:none;

  width:52px;
  height:52px;

  border-radius:16px;

  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      rgba(77,227,255,0.12),
      rgba(0,89,255,0.12)
    );

  border:1px solid rgba(77,227,255,0.12);

  color:#4de3ff;

  font-size:20px;

  cursor:pointer;

  transition:0.3s;
}

.menu-toggle:hover{
  transform:scale(1.05);
}

/* ================= MOBILE ================= */

@media(max-width:900px){

  .menu-toggle{
    display:flex;
  }

  .menu{
    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:
      linear-gradient(
        180deg,
        rgba(5,14,28,0.98),
        rgba(4,10,20,0.98)
      );

    backdrop-filter:blur(18px);

    flex-direction:column;

    padding:120px 30px;

    gap:18px;

    transition:0.4s ease;

    border-left:
      1px solid rgba(77,227,255,0.08);

    z-index:1000;
  }

  .menu.active{
    right:0;
  }

  .menu a{
    width:100%;

    padding:16px 20px;

    border-radius:16px;

    background:
      rgba(255,255,255,0.03);

    border:
      1px solid rgba(255,255,255,0.04);
  }

  .menu a:hover{
    background:
      rgba(77,227,255,0.08);
  }
}

.map-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.map {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.map-image {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* DOT KOTA */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
  animation: pulse 1.5s infinite;
}

/* ANIMASI NYALA */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* POSISI TITIK (sesuaikan dengan map kamu) */
.jakarta { top: 60%; left: 28%; }
.bandung { top: 63%; left: 26%; }
.semarang { top: 60%; left: 35%; }
.yogyakarta { top: 66%; left: 34%; }
.surabaya { top: 62%; left: 42%; }
.medan { top: 35%; left: 18%; }
.makassar { top: 70%; left: 60%; }