* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  background: #1f1f1f;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #e63946;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}

.menu a:hover {
  background: #e63946;
  color: #fff;
  transform: translateY(-2px);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #e63946;
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 80%;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  background: #e63946;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  padding: 20px 40px;
  background: #000;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.slide img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* ===== SOCIAL SECTION ===== */
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  background: #000;
  flex-wrap: wrap;
}

.social-item {
  text-align: center;
  min-width: 70px;
}

.social-item a {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}

.social-item p,
.social-item span {
  font-size: 11px;
  margin: 0;
  color: #ffffff;
}

/* ===== HERO DESCRIPTION SECTION (GABUNGAN) ===== */
.hero-description {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #e63946;
}

.hero-description .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Teks deskripsi perusahaan */
.company-description {
  color: #ccc;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 0 20px;
  position: relative;
}

.company-description strong {
  color: #e63946;
  font-size: 20px;
}

/* Garis dekoratif antara deskripsi dan brand box */
.company-description::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, #ffaa00, transparent);
  margin: 30px auto 0;
  border-radius: 3px;
}

/* Kotak brand / hero content */
.hero-brand-box {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #e63946, #ffaa00, #00d084);
  border-image-slice: 1;
  border-radius: 30px;
  padding: 50px 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(230, 57, 70, 0.3),
    0 0 30px rgba(230, 57, 70, 0.5);
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand-box:hover {
  transform: scale(1.02);
  box-shadow: 
    0 30px 50px rgba(230, 57, 70, 0.5),
    0 0 0 3px #e63946,
    0 0 40px #e63946;
  transition: all 0.3s ease;
}

.hero-brand-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.5),
    0 0 20px #e63946;
  letter-spacing: 1px;
}

.hero-brand-box .brand-subtitle {
  font-size: 24px;
  color: #e63946;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

/* Garis dekoratif di samping subtitle */
.hero-brand-box .brand-subtitle::before,
.hero-brand-box .brand-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e63946);
}

.hero-brand-box .brand-subtitle::before {
  left: -20px;
  background: linear-gradient(90deg, #e63946, transparent);
}

.hero-brand-box .brand-subtitle::after {
  right: -20px;
  background: linear-gradient(90deg, transparent, #e63946);
}

.hero-brand-box .brand-tagline {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 2px;
  word-spacing: 8px;
  background: rgba(230, 57, 70, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-brand-box .brand-url {
  font-size: 22px;
  color: #00d084;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: 12px 30px;
  background: rgba(0, 208, 132, 0.1);
  border-radius: 50px;
  border: 1px solid #00d084;
  transition: all 0.3s;
}

.hero-brand-box .brand-url:hover {
  background: #00d084;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 30px #00d084;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .hero-brand-box {
    padding: 40px 30px;
  }
  
  .hero-brand-box h2 {
    font-size: 36px;
  }
  
  .hero-brand-box .brand-subtitle {
    font-size: 22px;
  }
  
  .hero-brand-box .brand-tagline {
    font-size: 18px;
  }
  
  .hero-brand-box .brand-url {
    font-size: 20px;
  }
  
  .company-description {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-description {
    padding: 40px 15px;
  }
  
  .company-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .hero-brand-box {
    padding: 30px 20px;
  }
  
  .hero-brand-box h2 {
    font-size: 28px;
  }
  
  .hero-brand-box .brand-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }
  
  .hero-brand-box .brand-subtitle::before,
  .hero-brand-box .brand-subtitle::after {
    width: 25px;
  }
  
  .hero-brand-box .brand-tagline {
    font-size: 15px;
    padding: 8px 15px;
    letter-spacing: 1px;
    word-spacing: 5px;
  }
  
  .hero-brand-box .brand-url {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* HP kecil */
@media (max-width: 480px) {
  .company-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .hero-brand-box {
    padding: 25px 15px;
  }
  
  .hero-brand-box h2 {
    font-size: 22px;
  }
  
  .hero-brand-box .brand-subtitle {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .hero-brand-box .brand-subtitle::before,
  .hero-brand-box .brand-subtitle::after {
    width: 20px;
  }
  
  .hero-brand-box .brand-tagline {
    font-size: 12px;
    padding: 6px 12px;
    letter-spacing: 0.5px;
    word-spacing: 3px;
  }
  
  .hero-brand-box .brand-url {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* HP sangat kecil */
@media (max-width: 360px) {
  .hero-brand-box h2 {
    font-size: 18px;
  }
  
  .hero-brand-box .brand-subtitle {
    font-size: 14px;
  }
  
  .hero-brand-box .brand-tagline {
    font-size: 10px;
  }
  
  .hero-brand-box .brand-url {
    font-size: 12px;
  }
}

/* ===== BOOKING FORM ===== */
.booking {
  margin: 30px auto;
  width: 90%;
  max-width: 1200px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: #222;
  padding: 20px;
  border-radius: 15px;
}

.booking-form input,
.booking-form select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  width: 100%;
}

.booking-form button {
  grid-column: span 5;
  padding: 14px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.booking-form button:hover {
  background: #c82333;
}

/* ===== ARMADA SECTION ===== */
.armada {
  padding: 60px 20px;
  background: #000;
  color: #fff;
}

.armada .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.armada .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.armada .section-header .garis-merah {
  width: 80px;
  height: 4px;
  background: #e63946;
  margin: 0 auto 15px;
  border-radius: 2px;
}

.armada .section-header p {
  color: #ccc;
  font-size: 16px;
}

.armada .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.armada .card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 20px;
  color: #fff;
  transition: all 0.3s;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
}

.armada .card:hover {
  transform: translateY(-10px);
  border-color: #e63946;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.armada .card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
}

.armada .card:hover img {
  transform: scale(1.05);
}

.armada .card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.armada .card .harga-wrapper {
  margin: 8px 0;
  padding: 8px 0;
  border-top: 1px dashed #333;
  border-bottom: 1px dashed #333;
}

.armada .card .harga-lepas {
  color: #ccc;
  font-size: 14px;
  margin: 3px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.armada .card .harga-lepas span {
  color: #fff;
  font-weight: 600;
}

.armada .card .harga-driver {
  color: #00d084;
  font-size: 15px;
  margin: 3px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.armada .card .harga-driver span {
  color: #00d084;
  font-weight: 700;
}

.armada .card .kapasitas {
  color: #ccc;
  font-size: 13px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.armada .card .kapasitas i {
  color: #e63946;
  width: 16px;
}

.armada .card .fitur {
  color: #e63946;
  font-size: 12px;
  margin: 3px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.armada .card button {
  background: #e63946;
  border: none;
  padding: 12px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  margin-top: 15px;
  transition: 0.2s;
  width: 100%;
}

.armada .card button:hover {
  background: #c82333;
}

/* Mobil Wajib Driver */
.armada .card.wajib-driver {
  border: 2px solid #e63946;
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #222 100%);
}

.armada .badge-wajib {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e63946;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.armada .card.wajib-driver .harga-driver-special {
  color: #ffaa00;
  font-size: 16px;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 170, 0, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
}

.armada .card.wajib-driver .harga-driver-special span {
  color: #ffaa00;
  font-weight: 700;
  font-size: 18px;
}

.armada .card.wajib-driver button {
  background: #ffaa00;
  color: #000;
  font-weight: bold;
}

.armada .card.wajib-driver button:hover {
  background: #ffc107;
}

/* ===== STRIP MERAH ===== */
.strip {
  background: #e63946;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.strip p {
  font-size: 18px;
}

/* ===== TENTANG KAMI ===== */
.tentang {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 60px 20px;
  color: #fff;
}

.tentang .container {
  max-width: 1200px;
  margin: 0 auto;
}

.tentang-header {
  text-align: center;
  margin-bottom: 50px;
}

.tentang-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.garis-merah {
  width: 80px;
  height: 4px;
  background: #e63946;
  margin: 0 auto;
  border-radius: 2px;
}

.tentang-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.tentang-text h3 {
  font-size: 24px;
  color: #e63946;
  margin-bottom: 20px;
  font-weight: 600;
}

.tentang-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
  text-align: justify;
}

.keunggulan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.keunggulan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.keunggulan-item:hover {
  background: rgba(230, 57, 70, 0.1);
  transform: translateX(5px);
}

.keunggulan-item i {
  color: #00d084;
  font-size: 18px;
}

.keunggulan-item span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.tentang-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #e63946;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== KEYWORD SECTION ===== */
.keunggulan-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 60px 20px;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header .garis-merah {
  width: 80px;
  height: 4px;
  background: #e63946;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  font-size: 16px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.keunggulan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
}

.keunggulan-card:hover {
  transform: translateY(-10px);
  border-color: #e63946;
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  background: rgba(230, 57, 70, 0.1);
}

.keunggulan-icon {
  width: 70px;
  height: 70px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #e63946;
  transition: 0.3s;
}

.keunggulan-card:hover .keunggulan-icon {
  background: #e63946;
  color: #fff;
}

.keunggulan-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.keunggulan-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* ===== AREA LAYANAN ===== */
.area-section {
  background: #000;
  padding: 60px 20px;
  color: #fff;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.area-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
  transition: 0.3s;
}

.area-card:hover {
  border-color: #e63946;
  transform: translateY(-5px);
}

.area-card.full-width {
  grid-column: span 2;
}

.area-header {
  background: #e63946;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-header i {
  font-size: 24px;
  color: #fff;
}

.area-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.area-content {
  padding: 20px;
}

.area-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-content ul li {
  color: #ccc;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-content ul li i {
  color: #00d084;
  font-size: 12px;
}

.rute-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rute-grid div h4 {
  color: #e63946;
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rute-grid div p {
  color: #ccc;
  font-size: 13px;
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  padding: 2rem 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 280px;
}

.footer-section h3 {
  color: #e63946;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}

.footer-section h3 strong {
  color: #fff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-section i {
  color: #e63946;
  margin-right: 10px;
  width: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #888;
}

.footer-bottom p {
  margin: 5px 0;
}

.highlight {
  color: #00d6cd;
  font-weight: bold;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
  overflow-y: auto;
}

.modal-box {
  width: 500px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e63946;
}

.modal-header h2 {
  color: #111;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.close-modal {
  font-size: 32px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}

.close-modal:hover {
  color: #e63946;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group label i {
  color: #e63946;
  width: 18px;
}

.required {
  color: #e63946;
  margin-left: 3px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
  background: #f9f9f9;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: #e63946;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 5px;
}

.tujuan-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 12px;
}

.tujuan-check div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tujuan-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #e63946;
}

.tujuan-check label {
  margin: 0;
  font-size: 13px;
  color: #444;
  cursor: pointer;
}

.total {
  background: linear-gradient(135deg, #1e2b3a, #2c3e50);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.total-amount {
  font-size: 1.4rem;
  color: #00d084;
}

.info-harga {
  background: #fff3cd;
  color: #856404;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #ffc107;
}

.info-harga i {
  margin-right: 5px;
}

.btn-wrap {
  display: flex;
  gap: 12px;
}

.btn-wa {
  background: #25D366;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-wa:hover {
  background: #128C7E;
}

.btn-cancel {
  background: #e63946;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.2s;
}

.btn-cancel:hover {
  background: #c82333;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tentang-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tentang-stats {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Header */
  .hamburger {
    display: flex;
  }
  
  .menu {
    display: none;
    flex-direction: column;
    background: #1f1f1f;
    position: absolute;
    top: 75px;
    right: 20px;
    left: 20px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  
  .menu.active {
    display: flex;
  }
  
  .menu a {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #333;
  }
  
  .menu a:last-child {
    border-bottom: none;
  }
  
  /* Hero Text - Rata Tengah */
.hero-text {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text .subtitle {
  font-size: 22px;
  color: #e63946;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-text .tagline {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-text .url {
  font-size: 16px;
  color: #00d084;
  font-weight: 500;
}

/* Responsive untuk HP */
@media (max-width: 768px) {
  .hero-text {
    padding: 30px 15px;
    margin: 15px 10px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text .subtitle {
    font-size: 18px;
  }
  
  .hero-text .tagline {
    font-size: 15px;
  }
  
  .hero-text .url {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }
  
  .hero-text .subtitle {
    font-size: 16px;
  }
  
  .hero-text .tagline {
    font-size: 14px;
  }
}
  
  /* Description */
  .description {
    width: 95%;
    padding: 15px;
  }
  
  .description p {
    font-size: 13px;
  }
  
  /* Booking Form */
  .booking-form {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  
  .booking-form button {
    grid-column: span 1;
  }
  
/* ===== ARMADA SECTION ===== */
.armada {
  padding: 60px 20px;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.armada .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.armada .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.armada .section-header .garis-merah {
  width: 80px;
  height: 4px;
  background: #e63946;
  margin: 0 auto 15px;
  border-radius: 2px;
}

.armada .section-header p {
  color: #ccc;
  font-size: 16px;
}

.armada .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.armada .card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 15px;
  color: #fff;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
}

.armada .card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.armada .card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.armada .card .harga-wrapper {
  margin: 8px 0;
  padding: 8px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.armada .card .harga-lepas {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
}

.armada .card .harga-driver {
  color: #00d084;
  font-size: 14px;
  font-weight: 700;
}

.armada .card .kapasitas {
  color: #ccc;
  font-size: 12px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.armada .card .kapasitas i {
  color: #e63946;
  width: 14px;
}

.armada .card .fitur {
  color: #e63946;
  font-size: 11px;
  margin: 3px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.armada .card button {
  background: #e63946;
  border: none;
  padding: 10px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  margin-top: 10px;
  width: 100%;
}

.armada .card button:hover {
  background: #c82333;
}

/* Mobil Wajib Driver */
.armada .card.wajib-driver {
  border: 2px solid #e63946;
  position: relative;
}

.armada .badge-wajib {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e63946;
  color: white;
  font-size: 9px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 12px;
  z-index: 2;
}

.armada .card.wajib-driver .harga-wrapper {
  justify-content: center;
}

.armada .card.wajib-driver .harga-driver-special {
  color: #ffaa00;
  font-size: 15px;
  font-weight: 700;
}

.armada .card.wajib-driver button {
  background: #ffaa00;
  color: #000;
}

.armada .card.wajib-driver button:hover {
  background: #ffc107;
}

/* ===== RESPONSIVE ARMADA ===== */
@media (max-width: 992px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .armada {
    padding: 40px 10px;
  }
  
  .armada .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .armada .card {
    padding: 8px;
  }
  
  .armada .card img {
    height: 60px;
  }
  
  .armada .card h3 {
    font-size: 11px;
    margin-bottom: 4px;
  }
  
  .armada .card .harga-lepas,
  .armada .card .harga-driver,
  .armada .card .harga-driver-special {
    font-size: 9px;
  }
  
  .armada .card .kapasitas,
  .armada .card .fitur {
    font-size: 8px;
  }
  
  .armada .card .kapasitas i,
  .armada .card .fitur i {
    font-size: 8px;
  }
  
  .armada .card button {
    padding: 6px;
    font-size: 9px;
    margin-top: 5px;
  }
  
  .armada .badge-wajib {
    font-size: 7px;
    padding: 2px 4px;
  }
}

@media (max-width: 480px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  
  .armada .card {
    padding: 5px;
  }
  
  .armada .card img {
    height: 50px;
  }
  
  .armada .card h3 {
    font-size: 9px;
  }
  
  .armada .card .harga-lepas,
  .armada .card .harga-driver,
  .armada .card .harga-driver-special {
    font-size: 8px;
  }
  
  .armada .card .kapasitas,
  .armada .card .fitur {
    font-size: 7px;
  }
  
  .armada .card button {
    padding: 4px;
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  
  .armada .card {
    padding: 3px;
  }
  
  .armada .card img {
    height: 40px;
  }
  
  .armada .card h3 {
    font-size: 8px;
  }
  
  .armada .card .harga-lepas,
  .armada .card .harga-driver,
  .armada .card .harga-driver-special {
    font-size: 7px;
  }
  
  .armada .card button {
    padding: 3px;
    font-size: 7px;
  }
}

/* Mobil Wajib Driver */
.armada .card.wajib-driver {
  border: 2px solid #e63946;
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #222 100%);
}

.armada .badge-wajib {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e63946;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.armada .card.wajib-driver .harga-driver-special {
  color: #ffaa00;
  font-size: 16px;
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 170, 0, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.armada .card.wajib-driver .harga-driver-special span {
  color: #ffaa00;
  font-weight: 700;
  font-size: 18px;
}

.armada .card.wajib-driver button {
  background: #ffaa00;
  color: #000;
  font-weight: bold;
}

.armada .card.wajib-driver button:hover {
  background: #ffc107;
}

/* ===== RESPONSIVE ARMADA ===== */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr); /* 3 kolom di tablet */
    gap: 20px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .armada {
    padding: 40px 10px;
  }
  
  .armada .grid {
    grid-template-columns: repeat(3, 1fr); /* PASTI 3 KOLOM */
    gap: 8px;
  }
  
  .armada .card {
    padding: 8px;
  }
  
  .armada .card img {
    height: 60px;
    margin-bottom: 8px;
  }
  
  .armada .card h3 {
    font-size: 11px;
    margin-bottom: 3px;
  }
  
  .armada .card .harga-wrapper {
    margin: 4px 0;
    padding: 4px 0;
  }
  
  .armada .card .harga-lepas,
  .armada .card .harga-driver {
    font-size: 8px;
    margin: 2px 0;
  }
  
  .armada .card .harga-lepas span,
  .armada .card .harga-driver span {
    font-size: 8px;
  }
  
  .armada .card .kapasitas {
    font-size: 7px;
    margin: 2px 0;
  }
  
  .armada .card .kapasitas i {
    font-size: 7px;
    width: 12px;
  }
  
  .armada .card .fitur {
    font-size: 7px;
  }
  
  .armada .card button {
    padding: 5px;
    font-size: 8px;
    margin-top: 5px;
  }
  
  .armada .badge-wajib {
    font-size: 6px;
    padding: 2px 4px;
    top: 3px;
    right: 3px;
  }
  
  .armada .card.wajib-driver .harga-driver-special {
    font-size: 9px;
    padding: 4px 6px;
  }
  
  .armada .card.wajib-driver .harga-driver-special span {
    font-size: 10px;
  }
}

/* HP kecil (max-width: 480px) */
@media (max-width: 480px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr); /* TETAP 3 KOLOM */
    gap: 5px;
  }
  
  .armada .card {
    padding: 5px;
  }
  
  .armada .card img {
    height: 50px;
  }
  
  .armada .card h3 {
    font-size: 9px;
  }
  
  .armada .card .harga-lepas,
  .armada .card .harga-driver {
    font-size: 7px;
  }
  
  .armada .card .kapasitas {
    font-size: 6px;
  }
  
  .armada .card button {
    padding: 4px;
    font-size: 7px;
  }
}

/* HP sangat kecil (max-width: 360px) */
@media (max-width: 360px) {
  .armada .grid {
    grid-template-columns: repeat(3, 1fr); /* TETAP 3 KOLOM, JANGAN TURUNKAN */
    gap: 3px;
  }
  
  .armada .card {
    padding: 3px;
  }
  
  .armada .card img {
    height: 40px;
  }
  
  .armada .card h3 {
    font-size: 8px;
  }
  
  .armada .card .harga-lepas,
  .armada .card .harga-driver {
    font-size: 6px;
    margin: 1px 0;
  }
  
  .armada .card .kapasitas {
    font-size: 5px;
  }
  
  .armada .card .kapasitas i {
    font-size: 5px;
    width: 8px;
  }
  
  .armada .card button {
    padding: 3px;
    font-size: 6px;
    margin-top: 3px;
  }
}
  
  /* Tentang */
  .tentang {
    padding: 40px 15px;
  }
  
  .tentang-header h2 {
    font-size: 28px;
  }
  
  .tentang-text h3 {
    font-size: 20px;
  }
  
  .tentang-text p {
    font-size: 14px;
  }
  
  .keunggulan {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .keunggulan-item {
    padding: 10px 12px;
  }
  
  .keunggulan-item span {
    font-size: 13px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  /* Area Layanan */
  .area-section {
    padding: 40px 15px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .area-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .area-card.full-width {
    grid-column: span 1;
  }
  
  .area-content ul {
    grid-template-columns: 1fr;
  }
  
  .rute-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-section {
    text-align: left;
  }
}

/* HP Kecil (max-width: 480px) */
@media (max-width: 480px) {
  /* Armada tetap 3 kolom */
  .armada .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  
  .armada .card {
    padding: 8px;
  }
  
  .armada .card img {
    height: 60px;
  }
  
  .armada .card h3 {
    font-size: 11px;
  }
  
  .armada .card .harga-lepas {
    font-size: 8px;
  }
  
  .armada .card .harga-driver {
    font-size: 9px;
  }
  
  .armada .card .kapasitas {
    font-size: 8px;
  }
  
  .armada .card button {
    padding: 6px;
    font-size: 9px;
  }
  
  /* Keunggulan */
  .keunggulan-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .keunggulan-card {
    padding: 20px;
  }
  
  .keunggulan-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .keunggulan-card h3 {
    font-size: 16px;
  }
  
  .keunggulan-card p {
    font-size: 13px;
  }
  
  /* Modal */
  .modal {
    align-items: flex-end;
  }
  
  .modal-box {
    border-radius: 20px 20px 0 0;
    padding: 20px;
    animation: slideUpMobile 0.3s ease;
  }
  
  @keyframes slideUpMobile {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .tujuan-check {
    grid-template-columns: 1fr;
  }
  
  .btn-wrap {
    flex-direction: column;
  }
  
  .btn-wa, .btn-cancel {
    width: 100%;
  }
  
  .tentang-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px;
  }
}

/* HP sangat kecil (max-width: 360px) */
@media (max-width: 360px) {
  .armada .grid {
    grid-template-columns: repeat(2, 1fr); /* Turun jadi 2 kolom */
    gap: 5px;
  }
  
  .armada .card {
    padding: 6px;
  }
  
  .armada .card img {
    height: 50px;
  }
  
  .armada .card h3 {
    font-size: 10px;
  }
  
  .social-item {
    min-width: 50px;
  }
  
  .social-item img {
    width: 20px;
    height: 20px;
  }
  
  .social-item p,
  .social-item span {
    font-size: 8px;
  }
}
.hero-slider {
  position: relative;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 32px;
  text-align: center;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 8px;
}
