* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: #111827; overflow-x: hidden; background: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ea580c; border-radius: 4px; }

/* =============================================
   WARNA UTAMA — Edit di sini untuk ganti tema
============================================= */
:root {
  --orange:       #ea580c;   /* Warna oranye utama */
  --orange-dark:  #0056b3;   /* Orange lebih gelap (hover) */
  --dark:         #111827;   /* Warna teks gelap */
  --gray:         #6b7280;   /* Warna teks abu-abu */
  --bg-gray:      #f9fafb;   /* Latar belakang abu-abu muda */
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: all 0.3s; padding: 0 1rem;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-bottom: 1px solid #f0f0f0;
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon {
  width: 38px; height: 38px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.logo-icon i { color: white; font-size: 1.1rem; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: white; transition: color 0.3s; }
.navbar.scrolled .logo-text { color: var(--dark); }
.logo-text span { color: var(--orange); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s; position: relative;
}
.navbar.scrolled .nav-links a { color: #374151; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.2s;
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--orange); color: white;
  border: none; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-nav:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: white; font-size: 1.4rem; transition: color 0.3s;
}
.navbar.scrolled .hamburger { color: var(--dark); }

.mobile-menu {
  display: none; background: white; border-top: 1px solid #f0f0f0;
  padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 16px; color: #374151;
  text-decoration: none; font-weight: 500; border-radius: 8px;
  margin-bottom: 4px; transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: #fff7ed; color: var(--orange); }
.mobile-menu .btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; padding: 12px; background: var(--orange);
  color: white; border-radius: 10px; font-weight: 600; text-decoration: none;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #1a1a1a; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(234,88,12,0.2); border: 1px solid rgba(234,88,12,0.4);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fb923c; animation: pulse 2s infinite;
}
.hero-badge span { color: #fdba74; font-size: 0.85rem; font-weight: 500; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  color: white; line-height: 1.2; margin-bottom: 1.25rem; max-width: 700px;
}
.hero h1 .highlight { color: #fb923c; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem); color: #d1d5db;
  margin-bottom: 2rem; max-width: 560px; line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--orange); color: white;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(234,88,12,0.35); font-family: 'Poppins', sans-serif;
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234,88,12,0.4);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); color: white;
  border: 2px solid rgba(255,255,255,0.4); border-radius: 12px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline-white:hover { background: white; color: var(--dark); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; cursor: pointer;
  animation: bounce 2s infinite; text-decoration: none;
}
.scroll-indicator:hover { color: white; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar { background: #111827; padding: 2rem 1.5rem; }
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-card { border-radius: 14px; padding: 1.25rem; text-align: center; color: white; }
.stat-card.orange { background: var(--orange); }
.stat-card.dark   { background: #1f2937; }
.stat-number { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-label  { font-size: 0.8rem; opacity: 0.9; }

/* =============================================
   PENGATURAN SECTION UMUM
============================================= */
section { padding: 5rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: block; text-align: center; color: var(--orange);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.section-title {
  text-align: center; font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--dark); margin-bottom: 1rem;
}
.section-title .highlight { color: var(--orange); }
.section-title.white { color: white; }
.section-desc {
  text-align: center; color: var(--gray); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto 3.5rem; line-height: 1.7;
}
.section-desc.light { color: #9ca3af; }

/* =============================================
   TENTANG KAMI
============================================= */
.tentang { background: var(--bg-gray); }

.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.pillar-card {
  background: white; border-radius: 18px; padding: 2rem;
  text-align: center; border: 1px solid #f0f0f0; transition: all 0.3s;
}
.pillar-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pillar-icon {
  width: 56px; height: 56px; background: #fff7ed; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.pillar-icon i { color: var(--orange); font-size: 1.4rem; }
.pillar-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.pillar-card p  { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

.why-box { background: white; border-radius: 24px; border: 1px solid #f0f0f0; padding: 3rem; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 2rem; }
.why-title span { color: var(--orange); }
.why-list  { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item  { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon  {
  width: 40px; height: 40px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-icon i { color: white; font-size: 0.9rem; }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-item p  { color: var(--gray); font-size: 0.875rem; }

.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stats-2x2 .stat-card { border-radius: 18px; padding: 1.5rem; }
.stats-2x2 .stat-number { font-size: 2.25rem; }

/* =============================================
   JASA & LAYANAN
============================================= */
.layanan { background: white; }
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.layanan-card {
  background: white; border: 2px solid #f0f0f0; border-radius: 18px;
  padding: 1.75rem; transition: all 0.3s; position: relative;
}
.layanan-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(234,88,12,0.1); transform: translateY(-4px);
}
.badge-popular {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange); color: white; font-size: 0.7rem;
  font-weight: 700; padding: 4px 10px; border-radius: 50px;
}
.layanan-icon {
  width: 56px; height: 56px; background: #fff7ed; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background 0.3s;
}
.layanan-card:hover .layanan-icon { background: #fed7aa; }
.layanan-icon i { color: var(--orange); font-size: 1.4rem; }
.layanan-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.layanan-card p  { color: var(--gray); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.layanan-footer  { padding-top: 1rem; border-top: 1px solid #f0f0f0; }
.link-tanya {
  color: var(--orange); font-size: 0.875rem; font-weight: 700;
  text-decoration: none; transition: color 0.2s;
}
.link-tanya:hover { color: var(--orange-dark); }

/* =============================================
   ARMADA & GALERI
============================================= */
.armada { background: var(--bg-gray); }

.facilities-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem; margin-bottom: 3rem;
}
.facility-item {
  background: white; border: 1px solid #f0f0f0; border-radius: 14px;
  padding: 1rem 0.5rem; text-align: center; transition: all 0.3s;
}
.facility-item:hover { border-color: #fed7aa; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.facility-item .fac-icon {
  width: 40px; height: 40px; background: #fff7ed; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.facility-item .fac-icon i { color: var(--orange); font-size: 1rem; }
.facility-item span { font-size: 0.75rem; font-weight: 600; color: var(--dark); }

.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.fleet-card {
  background: white; border-radius: 18px; overflow: hidden;
  border: 1px solid #f0f0f0; transition: all 0.3s;
}
.fleet-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }

.fleet-img { position: relative; height: 300px; overflow: hidden; background: #e5e7eb; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fleet-card:hover .fleet-img img { transform: scale(1.08); }
.fleet-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.fleet-capacity {
  position: absolute; bottom: 14px; left: 14px; z-index: 1;
  background: var(--orange); color: white; font-size: 0.75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px; display: flex; align-items: center; gap: 5px;
}
.fleet-info { padding: 1.5rem; }
.fleet-info h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.fleet-info p  { color: var(--gray); font-size: 0.875rem; line-height: 1.5; margin-bottom: 1rem; }

.fleet-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }
.fleet-tag {
  background: #fff7ed; color: #c2410c;
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
}
.btn-check {
  display: block; width: 100%; text-align: center; padding: 10px;
  border: 2px solid var(--orange); color: var(--orange); border-radius: 10px;
  font-weight: 700; font-size: 0.875rem; text-decoration: none;
  transition: all 0.3s; cursor: pointer; background: none; font-family: 'Poppins', sans-serif;
}
.btn-check:hover { background: var(--orange); color: white; }

/* =============================================
   KONTAK & PEMESANAN
============================================= */
.kontak { background: #111827; }
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.kontak-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.kontak-icon {
  width: 48px; height: 48px; background: var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kontak-icon i { color: white; font-size: 1.1rem; }
.kontak-item .label { color: #9ca3af; font-size: 0.8rem; margin-bottom: 4px; }
.kontak-item .value {
  color: white; font-size: 1.1rem; font-weight: 700;
  display: block; margin-bottom: 4px; text-decoration: none; transition: color 0.2s;
}
.kontak-item .value:hover { color: #fb923c; }
.kontak-item .sub { color: #9ca3af; font-size: 0.825rem; }

.kontak-card {
  background: white; border-radius: 24px; padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.kontak-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.kontak-card > p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.75rem; }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; background: #22c55e; color: white;
  border-radius: 12px; font-weight: 700; font-size: 1rem;
  text-decoration: none; margin-bottom: 10px; transition: all 0.3s;
}
.btn-whatsapp:hover { background: #16a34a; box-shadow: 0 8px 20px rgba(34,197,94,0.3); }

.btn-instagram {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: linear-gradient(to right, #8b5cf6, #ec4899, #f97316);
  color: white; border-radius: 12px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.3s;
}
.btn-instagram:hover { opacity: 0.9; box-shadow: 0 8px 20px rgba(236,72,153,0.3); }

.kontak-note {
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #f0f0f0;
  text-align: center; font-size: 0.825rem; color: #9ca3af;
}

/* =============================================
   FOOTER
============================================= */
.footer { background: #030712; padding: 3rem 1.5rem; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid #1f2937;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand .icon {
  width: 34px; height: 34px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.footer-brand .icon i { color: white; font-size: 0.9rem; }
.footer-brand span { font-weight: 700; font-size: 1.1rem; color: white; }
.footer-brand span em { color: #fb923c; font-style: normal; }
.footer-col p     { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; }
.footer-col h4    { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col a {
  display: block; color: #9ca3af; text-decoration: none;
  font-size: 0.875rem; margin-bottom: 8px; transition: color 0.2s; cursor: pointer;
}
.footer-col a:hover { color: #fb923c; }
.jam-item  { font-size: 0.875rem; color: #9ca3af; margin-bottom: 6px; }
.wa-always { color: #fb923c; font-weight: 700; font-size: 0.875rem; margin-top: 8px; }

.footer-bottom {
  max-width: 1280px; margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { color: #6b7280; font-size: 0.825rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a {
  color: #6b7280; text-decoration: none;
  font-size: 0.825rem; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #fb923c; }

/* =============================================
   TOMBOL FLOAT WHATSAPP (pojok kanan bawah)
============================================= */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  display: flex; align-items: center; gap: 8px;
  background: #22c55e; color: white; padding: 12px 20px;
  border-radius: 50px; font-weight: 700; font-size: 0.875rem;
  text-decoration: none; box-shadow: 0 8px 24px rgba(34,197,94,0.4);
  transition: all 0.3s; font-family: 'Poppins', sans-serif;
}
.float-wa:hover { background: #16a34a; transform: scale(1.05); }

/* =============================================
   RESPONSIVE — TABLET & HP
============================================= */
@media (max-width: 1024px) {
  .layanan-grid     { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid  { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger            { display: block; }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid          { grid-template-columns: 1fr; }
  .why-inner            { grid-template-columns: 1fr; }
  .layanan-grid         { grid-template-columns: 1fr; }
  .facilities-grid      { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid           { grid-template-columns: 1fr; }
  .kontak-grid          { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .float-wa .wa-text    { display: none; }
  .float-wa             { border-radius: 50%; padding: 14px; }
}
@media (max-width: 480px) {
  section          { padding: 3.5rem 1rem; }
  .why-box         { padding: 1.75rem; }
  .kontak-card     { padding: 1.5rem; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}