@font-face {
  font-family: 'Manrope';
  src: url('Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;  /* ✅ Diubah ke putih */
  padding-top: 0;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.navbar {
  background-color: white;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 0 20px;
}

.navbar nav {
  width: 100%;
  max-width: 1200px;
}

.navbar ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  flex-wrap: nowrap;
  gap: 10px;
}

.navbar li:not(.logo) a {
  background-color: #003366;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.navbar li:not(.logo) a:hover {
  background-color: #005599;
  transform: translateY(-1px);
}

.navbar .logo {
  margin-left: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar .logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.navbar .logo img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* ✅ Hover hanya efek halus pada gambar */
.navbar .logo a:hover img {
  transform: scale(1.03);
}


.spacer-navbar {
  height: 72px; /* Sesuaikan dengan tinggi navbar */
  background-color: white; /* Agar menyatu dengan background */
}

.hero-bg {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 72px;
}

.hero-background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  top: 0;
  left: 0;
}



.overlay {
  background-color: rgba(0, 102, 204, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 10px;
  color: white;
  gap: 20px;
  justify-content: space-between;
}

.left {
  flex: 1;
  min-width: 320px;
}

.right {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.brochure-box {
  font-family: 'Times New Roman', Times, serif; /* ✅ Font klasik */
  background: white;
  color: black;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1.05rem; /* sedikit lebih besar dari default */
  max-width: 440px;
}

.brochure-box strong {
  font-size: 1.15rem;    /* ✅ Lebih besar */
  font-weight: 700;      /* ✅ Lebih tebal */
}


.btn-products {
  background-color: white;
  padding: 10px 18px;
  color: #00BFFF; /* ✅ Teks dan ikon biru langit */
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-size: 0.95rem;
  border: none;
  transition: all 0.2s ease;
}

.btn-products:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.btn-products span {
  color: #00BFFF; /* ✅ Icon play juga biru langit */
  margin-left: 5px;
}


.btn-products span {
  margin-left: 5px;
}

.video-frame {
  border: 30px solid white;    /* ✅ Border putih */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;     /* ✅ Hapus latar belakang putih */
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* ✅ Hindari ruang kosong, isi penuh frame */
  border-radius: 0;
  display: block;
}

.whatsapp-custom {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.wa-bubble-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;                        /* ✅ Sedikit membulatkan sudut */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);  /* ✅ Efek bingkai bayangan */
  transition: all 0.3s ease;                 /* ✅ Smooth transition semua efek */
  border: 2px solid #ffffff;                 /* ✅ Bingkai putih tipis */
}

.wa-bubble-img:hover {
  transform: scale(1.05) translateY(-4px);   /* ✅ Efek 3D naik saat hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}




@media screen and (max-width: 992px) {
  .hero-content {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 40px 10px;
    max-width: 92%;
  }

  .left h1 {
    font-size: 2rem;
  }

  .video-frame video {
    max-width: 100%;
  }

  .navbar ul {
    gap: 8px;
  }

  .navbar li:not(.logo) a {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .navbar .logo img {
    max-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .left, .right {
    flex: 0 0 100%;
    min-width: 320px;
  }

  .left h1 {
    font-size: 1.8rem;
  }

  .navbar {
    flex-wrap: nowrap;
    padding: 0 10px;
  }

  .navbar .logo img {
    max-width: 120px;
  }

  .btn-products {
    font-size: 0.9rem;
  }
}
/* ===== MODAL BROCHURE POPUP ===== */
.modal-brochure {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content-brochure {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 640px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.modal-content-brochure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.close-brochure {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-brochure:hover {
  color: #000;
}

