* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px 30px;
  border-radius: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 100;
}

.logo img {
  width: 100px;
}

.navbar nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn:hover {
  background: #c66a35;
  transform: translateY(-2px);
}

.btn-booking {
  background: #d67b3f;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-booking:hover {
  background: #c66a35;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

/* TEXT */
.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  margin-left: 80px;
}

.hero-text h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* BUTTON HERO */
.btn-hero {
  display: inline-block;
  width: 180px;
  white-space: nowrap;
  background: #d67b3f;
  padding: 8px 10px;
  font-size: 14px;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: #c66a35;
  transform: translateY(-2px);
}

/* LANGUAGE SWITCH */
.language-switch button {
  background: #d67b3f;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-switch button:hover {
  background: #c66a35;
  transform: scale(1.05);
}

/* KEUNGGULAN MODERN */
.keunggulan-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap; /* Agar bisa wrap di layar kecil jika perlu */
}

.keunggulan-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  animation: float 6s ease-in-out infinite;
  flex: 1;
  min-width: 200px; /* Pastikan tidak terlalu kecil */
}

.keunggulan-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.keunggulan-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #d67b3f;
  transition: color 0.3s ease;
}

.keunggulan-item:hover h3 {
  color: #c66a35;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* TENTANG KAMI FLOATING */
#tentang {
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s; /* Sedikit delay agar berbeda dari item */
}

#tentang h2 {
  text-align: center; /* Pastikan di tengah */
}

/* KENDARAAN */
#kendaraan {
  background: #000;
  color: #fff;
  padding: 60px 0;
}

#kendaraan h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.kendaraan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.kendaraan-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  color: #000;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kendaraan-item h3,
.kendaraan-item p,
.kendaraan-item li {
  color: #000;
}

.kendaraan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.kendaraan-item a {
  display: block;
  text-align: center;
  margin-top: 10px;
}

.kendaraan-item .btn {
  margin-top: auto;
}

.kendaraan-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: white;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kendaraan-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* GALERI */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* TESTIMONI */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimoni-item {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s ease;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

.testimoni-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.testimoni-item p {
  font-style: italic;
  color: #555;
}

/* FAQ */
.faq-card {
  max-width: 1000px;
  margin: -40px auto 0;
  background: white;
  padding: 30px 25px;
  border-radius: 30px;
  box-shadow: 0 35px 100px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
}

.faq-item {
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-item h3 {
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.faq-item p {
  display: none;
  margin-top: 8px;
  color: #555;
  line-height: 1.6;
}

/* FAQ TITLE INSIDE CARD */
.faq-card h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #d67b3f;
}

#testimoni h2 {
  color: #d67b3f;
}

/* SECTIONS SPACING */
section {
  margin-top: 40px;
}

/* FOOTER SPACING */
footer {
  margin-top: 60px;
}

/* KONTAK ELEGAN */
#kontak {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
}

#kontak .container {
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d67b3f;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 15px;
  background: #d67b3f;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #c66a35;
}

#kontak .container p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* KONTAK H2 CENTER */
#kontak h2 {
  text-align: center;
}

.map-container {
  margin-top: 40px;
  text-align: center;
}

.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TEXT CENTER */
.text-center {
  text-align: center;
}

/* TESTIMONI BACKGROUND */
#testimoni {
  background: url('../images/faq2.jpg') no-repeat center/cover;
  position: relative;
  padding: 60px 0;
}

#testimoni::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

#testimoni .container {
  position: relative;
  z-index: 1;
}

/* RESPONSIVE DESIGN */
/* Tablet */
@media (max-width: 1024px) {
  .hero-text {
    margin-left: 40px;
  }

  .hero-text h1 {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navbar {
    padding: 15px 15px;
  }

  .logo img {
    width: 60px;
  }

  .btn-booking {
    padding: 8px 15px;
    font-size: 12px;
  }

  .hero-text {
    margin-left: 20px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .btn-hero {
    padding: 8px 12px;
    font-size: 12px;
  }

  .faq-card {
    padding: 20px 15px;
  }

  .contact-form {
    padding: 20px;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
  }

  footer .container {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }
}