* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background: #111827;
}

/* Semua section */
.section {
  width: 100%;
  margin-bottom: 30px; /* spasi antar gambar */
}

/* Gambar */
.banner {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ======================
   SLIDER
====================== */

.slider-wrapper {
  position: relative;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 25px;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  min-width: 100%;
}

/* Tombol slider */

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 26px;
  z-index: 10;
  transition: 0.3s;
}

.nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* ======================
   Halaman Biaya
====================== */

.halaman4 {
  position: relative;
}

.btn-wa {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.btn-wa:hover {
  transform: translateX(-50%) translateY(-3px);
}
@media (max-width: 768px) {
  .halaman4 {
    position: static;
  }

  .btn-wa {
    position: static;
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    transform: none;
    text-align: center;
    font-size: 16px;
    padding: 14px 28px;
  }

  .btn-wa:hover {
    transform: translateY(-3px);
  }
}

/* ======================
   Floating WA
====================== */

.wa-button {
  position: fixed;
  right: 25px;
  bottom: 100px; /* naik ke atas footer */
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s;
}

.wa-button:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .wa-button {
    right: 15px;
    bottom: 85px;
    padding: 14px 22px;
    font-size: 15px;
  }
}
.tentang-avesta {
  background: #fff;
  padding: 60px 25px;
  margin-bottom: 30px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.tentang-avesta {
  background: linear-gradient(135deg, #08111f, #1c2a3a);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tentang-avesta h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #d4af37;
  animation: fadeDown 1.2s ease-in-out;
}

.tentang-avesta p {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
  font-size: 18px;
  animation: fadeUp 1.5s ease-in-out;
}

.video-wrapper {
  max-width: 800px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  animation: zoomIn 1.5s ease forwards;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Decorative floating shapes */
.tentang-avesta::before,
.tentang-avesta::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

.tentang-avesta::before {
  top: -50px;
  left: -50px;
}

.tentang-avesta::after {
  bottom: -50px;
  right: -50px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
/* FAQ */

.faq-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  color: white;
  font-size: 40px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 18px;
}

.faq-item {
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #1e293b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.faq-question {
  width: 100%;
  background: #1e293b;
  color: white;
  border: none;
  outline: none;
  padding: 22px 25px;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 28px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  color: #475569;
  line-height: 1.8;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px;
  }
}
/* =======================
   TESTIMONI DRIVER
======================= */

.testimoni-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.testimoni-section h2 {
  color: white;
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}

.video-testimoni {
  margin-top: 40px;
  margin-bottom: 50px;
}

.video-testimoni video {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.testimoni-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimoni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.quote {
  color: #facc15;
  font-size: 24px;
  margin-bottom: 15px;
}

.testimoni-card p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimoni-card h4 {
  color: #fff;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {
  .testimoni-section h2 {
    font-size: 30px;
  }

  .testimoni-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================
   FOOTER
====================== */

.footer {
  background: black;
  margin-top: auto;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 50px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 25px;
}

.footer-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-box p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 15px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #25d366;
}

.alamat-title {
  margin-top: 30px;
}

.footer-bottom {
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* Responsive */

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-logo {
    width: 150px;
    margin: 0 auto 20px;
    display: block;
  }
}
/* Judul Pilihan Mobil */

.mobil-title {
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}

.mobil-title h2 {
  font-size: 42px;
  color: gold;
  margin-bottom: 15px;
}

.mobil-title p {
  max-width: 700px;
  margin: auto;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

/* HP */

@media (max-width: 768px) {
  .mobil-title h2 {
    font-size: 32px;
  }

  .mobil-title p {
    font-size: 16px;
  }
}
