html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #faf8f2;
  color: #222222;
}

/* NAVBAR */
.navbar {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 70px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
  height: 110px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #222222;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #eed582;
}

/* HERO */
#hero {
  position: relative;
  min-height: 90vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-text {
  color: white;
  max-width: 450px;
}

.hero-text h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.hero-text h2,
#tentang h2,
.section-title {
  line-height: 1.2;
  text-align: center;
}

.hero-text p {
  font-size: 22px;
  line-height: 1.7;
  margin: 10px 0;
}

.hero-slider {
  width: 620px;
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #eed582;
  color: #1f3b2d;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #e4c96d;
}

/* SECTION TENTANG */
#tentang {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.tentang-label {
  display: inline-block;
  background-color: #eed582;
  color: #222222;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

#tentang h2 {
  font-size: 48px;
  max-width: 1000px;
  margin: auto;
  line-height: 1.3;
  color: #222222;
  margin-bottom: 35px;
}

#tentang p {
  max-width: 1100px;
  margin: auto;
  font-size: 20px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

/* SECTION KEUNGGULAN */
#keunggulan {
  padding: 100px 80px;
  background: #f8f8f8;
}

.keunggulan-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.keunggulan-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.keunggulan-image img {
  width: 650px;
  height: 650px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.keunggulan-content {
  flex: 1;
}

.keunggulan-label {
  display: inline-block;
  background: #eed582;
  color: #222222;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
}

.keunggulan-content h2 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 50px;
  color: #222;
}

.fitur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 35px;
}

.fitur-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.fitur-icon {
  width: 70px;
  height: 70px;
  background: #1d75d8;
  color: white;
  border-radius: 18px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.fitur-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  color: #222;
}

.fitur-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 260px;
}

/* SECTION PAKET */
#paket {
  padding: 60px 20px;
  text-align: center;
}

.card-paket {
  max-width: 400px;
  margin: auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-paket{
  display:flex;
  flex-direction:column;
  height:100%;
}

.card-paket p{
  flex:1;
}

.card-paket img {
  width: 100%;
  display: block;
}

.card-paket h3 {
  margin-top: 20px;
  color: #1f3b2d;
}

.card-paket p {
  padding: 0 20px;
  color: #555;
  line-height: 1.6;
}

.card-paket a {
  margin-bottom: 20px;
}

.paket-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1400px;
  margin:auto;
  align-items:stretch;
}

.card-paket {
  width: 400px;
}

/* HUBUNGI */
#hubungi {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.hubungi-header {
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

.hubungi-label {
  display: inline-block;
  background: #eed582;
  color: #222222;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hubungi-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hubungi-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.instagram-embed {
  max-width: 540px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.instagram-embed iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* TESTIMONI */
#testimoni {
  padding: 100px 20px;
  background: #faf8f2;
  text-align: center;
}

.testimoni-header {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.testimoni-label {
  display: inline-block;
  background: #eed582;
  color: #222222;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimoni-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.testimoni-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.video-showcase {
  position: relative;
  max-width: 520px;
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.video-showcase:hover {
  transform: translateY(-8px);
}

.video-showcase img {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  color: #1d75d8;
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.video-showcase {
  width: 480px;
  cursor: pointer;
}

/* POPUP VIDEO */
.popup-video {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.35s ease;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 850px;
}

.popup-content video {
  width: 100%;
  border-radius: 20px;
}

.close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 42px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* SECTION MAPS */
#maps {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.maps-header {
  max-width: 850px;
  margin: auto;
  margin-bottom: 40px;
}

.maps-label {
  display: inline-block;
  background: #eed582;
  color: #222222;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.maps-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.maps-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.maps-container {
  max-width: 1100px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* PARTNER */
#partner {
  padding: 100px 20px;
  background: #faf8f2;
  text-align: center;
  overflow: hidden;
}

.partner-header {
  margin-bottom: 50px;
}

.partner-label {
  display: inline-block;
  background: #eed582;
  color: #222222;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.partner-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.partner-header p {
  font-size: 18px;
  color: #666;
}

.partner-slider {
  width: 100%;
  overflow: hidden;
}

.partner-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: slidePartner 35s linear infinite;
}

.partner-track img {
  width: 220px;
  height: 110px;
  object-fit: contain;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

@keyframes slidePartner {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* FOOTER */
#footer {
  background-color: #132a46;
  width: 100%;
  display: block;
  position: relative;
  z-index: 10;
  color: white;
  padding: 90px 0 0;   /* tadinya 70px, naikkan */
  margin-top: 60px;    /* tambahkan jarak dari partner */
  clear: both;
}

/* bagian logo + deskripsi atas */
.footer-top {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;      /* center atas bawah */
  justify-content: center;  /* center kiri kanan */
  gap: 35px;
  padding: 0 60px 50px;
  text-align: left;
}

.footer-top img {
  width: 170px;
  height: auto;
  display: block;
}

.footer-top p {
  font-size: 17px;
  line-height: 1.8;
  color: #f1f1f1;
  max-width: 700px;
  margin: 0;              /* ini penting biar sejajar */
}

/* bagian bawah */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 0 60px 50px;
  text-align: center;   /* biar centre */
}

.footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;  /* biar centre presisi */
  justify-content: flex-start;
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.footer-box p,
.footer-box a {
  color: #e7e7e7;
  font-size: 16px;
  line-height: 1.9;
  text-decoration: none;
  text-align: center;
}

.footer-box a:hover {
  color: #eed582;
}

/* hapus garis bawah */
.footer-bottom {
  text-align: center;
  padding: 22px;
  font-size: 14px;
  color: #ddd;
  border-top: none;   /* ini menghilangkan garis */
}

/* partner spacing */
#partner {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* FLOATING WHATSAPP */
.floating-wa {
  position: fixed;
  bottom: 95px;
  right: 20px;
  z-index: 9999;
  transition: 0.3s;
}

.floating-wa img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.18));
}

.floating-wa:hover {
  transform: scale(1.08);
}

/* ANIMASI WA */
.floating-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse-wa 2s infinite;
  z-index: -1;
}

@keyframes pulse-wa {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* SCROLL TOP */
#scrollTopBtn {
  position: fixed;
  bottom: 22px;
  right: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #132a46;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .navbar {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    width: 92%;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-slider {
    width: 100%;
    height: 300px;
  }

  .keunggulan-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .keunggulan-image img {
    width: 100%;
    height: auto;
  }

  .keunggulan-content h2 {
    font-size: 38px;
    text-align: center;
  }

  .fitur-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .instagram-embed iframe {
    height: 550px;
  }

  .maps-container iframe {
    height: 350px;
  }

  .partner-track img {
    width: 130px;
    height: 70px;
  }

}

@media (max-width: 600px) {

  #tentang h2,
  #paket h2,
  .hubungi-header h2,
  .testimoni-header h2 {
    font-size: 30px;
  }

  .hero-text h2 {
    font-size: 34px;
  }

  .hero-slider {
    height: 220px;
  }

  .card-paket {
    width: 100%;
  }

  .floating-wa,
  #scrollTopBtn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

}

/* ANIMASI SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* biar smooth seluruh website */
* {
  transition: all 0.3s ease;
}

/* ==========================
   FIX TESTIMONI VIDEO
========================== */

.video-grid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:30px;
  flex-wrap:wrap;
}

/* card video */
.video-showcase{
  width:320px;
  height:570px;
}

.video-showcase img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* popup video */
.popup-content{
  width:90%;
  max-width:1000px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.popup-content video{
  width:100%;
  max-height:85vh;
  object-fit:contain;
  border-radius:20px;
  background:#000;
}