body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #002b5c;
  overflow-x: hidden;
  padding: 0;
}

.landing-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100vw;
  margin: 0;
  background-color: #002b5c;
  color: white;
  align-items: stretch;
  padding: 0;
  height: auto; /* perbaikan utama */
}

.left-content,
.right-content {
  display: flex;
  align-items: stretch;
}

.left-content {
  position: relative;
  flex: 1 1 60%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  margin: 0;
  padding: 0;
}

.main-image {
  width: 100%;
  height: auto; /* biarkan tinggi menyesuaikan gambar */
  object-fit: contain; /* agar tidak crop */
  display: block;
  margin: 0;
  padding: 0;
}

.right-content {
  flex: 1 1 40%;
  min-width: 0;
  padding: 40px 30px;
  background-color: #003b7a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wa-gloryf-container { 
  position: absolute;
  bottom: 4px; /* ⬇️ Lebih ke bawah dari sebelumnya */
  left: 20px;
  z-index: 10;
}

.wa-gloryf {
  max-width: 145px; /* ⬆️ Lebih besar dari 130px */
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 8px; /* sedikit lebih besar */
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-gloryf:hover {
  transform: scale(1.05); /* sedikit lebih besar saat hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.right-content h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.right-content ul {
  padding-left: 18px;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 15px;
}

.dream {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.brochure-box {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brochure-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.brochure-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.brochure-text .highlight {
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin: 2px 0;
}

.btn-brochure {
  background-color: #e74c3c;
  color: white;
  padding: 8px 24px;
  border: none;
  margin-top: 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.btn-brochure:hover {
  background-color: #c0392b;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.video-banner {
  width: 100%;
  background-color: #e53935;
  text-align: center;
  padding: 12px;
}

.video-banner button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold; /* ✅ Tambahan ini */
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


.video-banner button:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-content {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 90%;
  max-width: 960px;
  background-color: transparent;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.close-video-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffffffee;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.close-video-btn:hover {
  background-color: #dc3545;
  color: white;
  transform: scale(1.1);
}

.close-video-btn i {
  font-size: 14px;
}

.wa-float-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(145deg, #25d366, #1ebc59);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.wa-float-icon i {
  font-size: 22px;
  color: white;
}

.wa-float-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.bi-fire {
  font-size: 1.2em;
  color: #ff6f00 !important;
}

.bi-play-circle-fill {
  font-size: 1.3em;
  color: white;
}

.bi-whatsapp {
  font-size: 1.4em;
}

@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
  }

  .right-content {
    height: auto;
  }
}

@media screen and (orientation: portrait) {
  body::before {
    content: "Harap putar perangkat ke mode landscape untuk pengalaman terbaik";
    position: fixed;
    z-index: 99999;
    background: #002b5c;
    color: white;
    font-size: 1.2rem;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .landing-container,
  .video-banner,
  .modal,
  .wa-float-icon {
    display: none !important;
  }
}

.dream-highlight {
  font-size: 1.1rem;
  font-weight: bold;
  color: orange;
}
