/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box}

/* ================= GLOBAL BACKGROUND ================= */
body{
  font-family:'Inter',system-ui,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(249,115,22,0.06), transparent 40%),
    #ffffff;
  color:#1f2933;
}

/* ================= HEADER ================= */
.top-header{
  background:#fff7ed;
  padding:14px 24px;
  border-bottom:1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{height:58px;mix-blend-mode:multiply}
.top-nav a{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  color:#f97316;
  text-decoration:none;
}
.top-nav a:hover{color:#c2410c}

/* ================= HERO ================= */
.banner-hero{text-align:center;padding:20px}
.banner-img{
  max-width:1200px;
  width:100%;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(0,0,0,.15);
}

/* ================= CTA ================= */
.cta-section{text-align:center;padding:35px 20px}
.btn-wa{
  background:#f97316;
  color:#fff;
  padding:16px 36px;
  border-radius:10px;
  font-family:'Poppins',sans-serif;
  font-weight:600;
  text-decoration:none;
}
.btn-wa:hover{background:#c2410c}

/* ================= SERVICES ================= */
.services-section{
  max-width:1100px;
  margin:0 auto 90px;
  padding:40px 20px;
  background:linear-gradient(180deg,rgba(255,247,237,.85),rgba(255,255,255,.95));
  border-radius:32px;
  position:relative;
}

.services-section h2{
  text-align:center;
  font-family:'Poppins',sans-serif;
  color:#f97316;
  margin-bottom:45px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

.service-card{
  background:linear-gradient(180deg,#fff7ed,#ffffff);
  padding:34px 30px;
  border-radius:22px;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
  text-align:center;
  transition:transform .35s ease, box-shadow .35s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 48px rgba(0,0,0,.15);
}

.service-card h3{
  font-family:'Poppins',sans-serif;
  color:#f97316;
  font-size:19px;
  margin-bottom:14px;
}

.service-card p{
  font-size:15px;
  line-height:1.65;
  color:#374151;
}

/* ================= ROUTES & JADWAL ================= */
.routes-section{
  background:linear-gradient(180deg,#fff7ed,#ffffff);
  padding:70px 20px;
}

.routes-section h2{
  position:relative;
  text-align:center;
  font-family:'Poppins',sans-serif;
  color:#f97316;
  margin-bottom:45px;
  z-index:2;
}

.routes-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.route-card{
  background:#ffffff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  text-align:center;
}

.route-card h3{
  font-family:'Poppins',sans-serif;
  color:#f97316;
}

.route-path{font-weight:500;margin:12px 0}

.route-tag{
  background:#f97316;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
}

/* JADWAL */
.schedule-grid{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.route-schedule{padding:20px}
.route-schedule h3{font-size:16px}
.route-schedule .route-path{font-size:14px;margin-bottom:8px}

.schedule-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}

.schedule-table th{
  text-align:left;
  padding:6px 8px;
  background:#fff7ed;
  width:70px;
  color:#c2410c;
}

.schedule-table td{padding:6px 8px}

.schedule-table tr:not(:last-child) td,
.schedule-table tr:not(:last-child) th{
  border-bottom:1px solid #f1f1f1;
}

/* ================= KONTAK CARD ================= */
.contact-wrapper{
  padding:90px 20px;
  background:
    linear-gradient(135deg,rgba(255,247,237,.85),rgba(255,255,255,1));
}

.contact-card{
  max-width:500px;
  margin:auto;
  background:#ffffff;
  padding:38px;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
  text-align:center;
}

.contact-card h2{
  font-family:'Poppins',sans-serif;
  color:#f97316;
  margin-bottom:10px;
}

.contact-phone{
  font-size:18px;
  font-weight:600;
  margin-bottom:20px;
}

.contact-card input,
.contact-card button{
  width:100%;
  padding:14px;
  margin-top:12px;
}

.contact-card button{
  background:#f97316;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
}

/* ================= INFO ================= */
.info-section{
  background:linear-gradient(180deg,#ffffff,#fff7ed);
  padding:70px 20px;
}

.info-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.info-card h4{
  font-family:'Poppins',sans-serif;
  color:#f97316;
  margin-bottom:10px;
}

.info-card iframe{
  width:100%;
  height:180px;
  border:none;
  border-radius:12px;
  margin-top:10px;
}

/* ================= FOOTER ================= */
.site-footer{
  background:#fff7ed;
  padding:20px;
}

.footer-bottom{
  text-align:center;
  font-size:14px;
  color:#c2410c;
}

/* ================= FLOATING WA ================= */
.wa-float{
  position:fixed;
  right:25px;
  bottom:25px;
  width:55px;
  height:55px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  z-index:999;
}

/* ================= DAFTAR MOBIL ================= */
.cars-section{
  max-width:1100px;
  margin:0 auto 80px;
  padding:40px 20px;
}

.cars-section h2{
  text-align:center;
  font-family:'Poppins',sans-serif;
  color:#f97316;
  margin-bottom:35px;
}

.cars-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.car-card{
  position:relative;
  background:linear-gradient(180deg,#fff7ed,#ffffff);
  padding:18px;
  border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.car-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 45px rgba(0,0,0,.15);
}

.car-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:14px;
}

.car-card h3{
  font-family:'Poppins',sans-serif;
  color:#f97316;
  font-size:18px;
  margin-bottom:10px;
}

.status{
  position:absolute;
  top:16px;
  left:16px;
  background:#22c55e;
  color:#ffffff;
  font-size:12px;
  font-weight:600;
  padding:6px 14px;
  border-radius:999px;
  box-shadow:0 6px 15px rgba(0,0,0,.2);
}

.car-spec{
  list-style:none;
  padding:0;
  margin:12px 0 18px;
}

.car-spec li{
  font-size:14px;
  color:#374151;
  margin-bottom:8px;
  display:flex;
  align-items:center;
  gap:8px;
}

.btn-car{
  display:block;
  text-align:center;
  background:#f97316;
  color:#ffffff;
  padding:12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  font-family:'Poppins',sans-serif;
  transition:background .25s ease, transform .25s ease;
}

.btn-car:hover{
  background:#c2410c;
  transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .cars-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
  .services-grid,
  .routes-grid,
  .schedule-grid,
  .info-grid,
  .cars-grid{
    grid-template-columns:1fr;
  }
}

/* ================= SMOOTH ANIMATION ================= */
.animate{
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease;
}
.animate.show{
  opacity:1;
  transform:translateY(0);
}

.delay-1{transition-delay:.15s}
.delay-2{transition-delay:.3s}
.delay-3{transition-delay:.45s}

.route-card,
.service-card,
.contact-card{
  transition:transform .35s ease, box-shadow .35s ease;
}

.route-card:hover,
.service-card:hover,
.contact-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.15);
}
