/* RESET & DASAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  width: 100vw;
  height: auto;
}
section {
  position: relative;
  overflow: hidden;
}


/*--------------------------------HERO SECTION--------------------------------*/

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.layer-cloud {
  width: 105%;
  left: -1%;
  top: -5%;
  object-fit: cover;
}
.layer-bg { z-index: 1; }
.layer-gunung { z-index: 2; }
.layer-rumput { z-index: 3; }
.layer-awankecil { z-index: 4; }
.layer-awankanan { z-index: 5; }
.layer-awankiri { z-index: 6; }
.layer-awanatas { z-index: 7; }
.layer-burung { z-index: 8; }
.layer-siluet { z-index: 9; }

.hero-text-wrapper {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
}
.hero-text-inner {
  color: #fff;
}
.hero-text-inner h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.hero-text-inner .logo {
  margin-top: -7px;
  margin-left: 25px;
  width: 400px;
  }


/*--------------------------------LOGO BUBBLE--------------------------------*/
  .logo-bubble {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
  }
  .logo-bubble .bubble-img {
    position: absolute;
    top: 0px;
    left: -11px;
    width: 240px;
    transition: all 0.3s ease;
  }
  .logo-bubble:hover .bubble-img,
  .logo-bubble.active .bubble-img {
    top: 0;
    left: 0;
    width: 240px;
    height: auto;
  }
  .logo-bubble:hover,
  .logo-bubble.active {
    width: 240px;
    height: 80px;
    border-radius: 20px;
  }
  
/* ---------- INTRO SECTION  ---------- */
.intro-section {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000; 
  color: #fff;
  padding: 70px 40px;
  overflow: hidden;
  font-family: "Poppins", "Montserrat", sans-serif;
}
.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse; 
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}
.intro-image {
  position: relative;
  flex: 0 0 50%; 
  min-width: 320px;
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  position: relative;
  padding-left: 10px;
}
.intro-image img {
  position: absolute;
  display: block;
  width: 80%;           
  max-width: 60vw;        
  height: auto;
  object-fit: cover;
  transform: translateX(-30px); 
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
  opacity: 0;
  transition: opacity 1s ease;
}
.intro-text {
  flex: 1;
  min-width: 340px;
  line-height: 1.7;
  text-align: right;    /* penting: teks rata kanan */
  padding-right: 20px;
}
.intro-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #eab7a8; 
  letter-spacing: 1px;
  text-align: left;
}
.intro-text h2 {
  font-size: 2rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #eab7a8;
  font-weight: 800;
  text-align: center;
}
.intro-text p {
  font-size: 1.1rem;
  color: #f3e7e6;
  margin: 6px 0;
  text-align: justify;
}
.intro-text p strong,
.intro-text p b {
  color: #eab7a8;
  font-weight: 500;

}
.intro-text p:last-child {
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #eab7a8;
  margin-top: 25px;
}
.intro-text {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.intro-text.intro-parallax-show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gambar: posisi & animasi goyang lembut --- */

/* Gambar muncul dulu baru mulai goyang */
.intro-image.active img {
  opacity: 1;
}

/* Animasi floating */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.floating-img {
  animation: floatUpDown 4s ease-in-out infinite;
}

/* Biar tiap gambar goyangnya beda timing */
.delay-1 {
  animation-delay: 1s;
}
.delay-2 {
  animation-delay: 2s;
}
 
/*--------------------------------SECTION IPRO--------------------------------*/
  .ipro-section {
    position: relative;
    background-color: black;
    background-image: url('images/COKLAT.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10%;;
    margin-left: 0px;
  }
  .ipro-card {
    position: relative;
    background-size: contain;
    margin-left: 1%;
    background: #fff;
    border-radius: 1rem;
    width: auto;
    padding: 0.5rem 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    border: 3px solid #f4a261;
    z-index: 2;
  }
  .ipro-number {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #f4a261;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 3;
  }
  .ipro-title {
    font-family: 'Calibri', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    margin-left: 1.7rem;
  }
.ipro-image-box {
  position: relative;
  background: #f8f8f8;
  border-radius: 0.8rem;
  overflow: hidden;
  width: auto;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  cursor: grab;
}
.ipro-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease, opacity 0.4s ease;
  transform-origin: center center;
   -webkit-user-drag: none;
  
  user-select: none;
  pointer-events: auto;
  -webkit-touch-callout: none; /* mencegah menu muncul saat ditekan lama di mobile */
}
.ipro-image-box:active {
  cursor: grabbing;
}
 
  .char-floating {
    position: absolute;
    bottom: 0px;
    right: 25px;
    width: 100%;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  .char-floating.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
  }
  .char-floating.reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

/* -------------------- INTROPP SECTION -------------------- */ 
.intropp-section {
  position: relative;
  background-image: url('images/intropp1.png'); 
  background-color: #cea180;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover; 
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}
.intropp-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  flex-direction: row-reverse; 
  gap: 40px; 
  max-width: 1100px;
  width: 100%;
  margin: -80px;
}
.intropp-image {
  top: 270px;
  position: relative;
  flex: 1;
  width: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
 left: 160px;
 
}
.intropp-image img {
  position: absolute;
  left: -120px;
  bottom: 15px;
  width: 90vw;
  max-width: 500px;
  height: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}
.intropp-image.active img {
  opacity: 1;
  transform: translateY(0);
}
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.floating-imgpp {
  animation: floatUpDown 5s ease-in-out infinite;
}
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 2s; }
/* ---------- Area teks (kiri) ---------- */
.intropp-text {
  flex: 1;
  background: #fbf3f3;
  color: #544e55;
  padding: 70px 60px;
  border-radius: 25px;
  line-height: 1.8;
  box-shadow: 15px 20px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.intropp-text.intropp-parallax-show {
  opacity: 1;
  transform: translateY(0);
}
.intropp-text h1 {
  font-size:2.7rem;
  font-weight: 600;
  color: #503409;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1;
}
.intropp-text p {
  font-size: 1.5rem;
  text-align: justify;
  margin: 0;
}

  /*--------------------------------PETA POTENSI SECTION--------------------------------*/

.petapotensi-section {
  position: relative;
  background-image: url('images/BGPP.png');
  /* background: linear-gradient(to right, #5ebee2 50%, #51aed9 100%); */
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 1rem 1rem;
  overflow: hidden;
  margin-bottom: 4px;
}

.petapotensi-card {
  position: relative;
  margin-left: 5%;
  background: #fff;
  border-radius: 1rem;
  width: 400px;
  padding: 0.5rem 1rem 0.5rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  border: 0px solid #75a8c1;
  z-index: 2;
}

.petapotensi-title {
  font-family: 'Calibri', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.petapotensi-image-box {
  position: relative;
  background: #f8f8f8;
  border-radius: 0.8rem;
  overflow: hidden;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  cursor: grab;
}

.petapotensi-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.4s ease;
  transform-origin: center center;
  user-select: none;
  pointer-events: auto;
  -webkit-user-drag: none;
  -webkit-touch-callout: none; /* mencegah menu muncul saat ditekan lama di mobile */
}

.petapotensi-image-box:active {
  cursor: grabbing;
}
/* TOMBOL NAVIGASI IPRO*/
   .inav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f4a261;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    z-index: 4;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .prev-btn { left: -40px; }
  .next-btn { right: -40px; }

  .inav-btn:hover:not(:disabled) {
    background: #e2d3ff;
    transform: translateY(-50%) scale(1.1);
    }
  .inav-btn:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
  }

/* === Bagian bawah: navigasi di kiri, lihat kajian di kanan === */
.petapotensi-bottom {
  display: flex;
  justify-content: space-between; /* kiri - kanan */
  align-items: center;
  margin-top: 14px;
  padding: 0 10px; /* beri ruang biar nggak mepet */
}

/* Navigasi kiri (❮ ❯) */
.petapotensi-nav {
  display: flex;
  gap: 6px;
}

.nav-btn {
  background: #f4a261;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.nav-btn:hover:not(:disabled) {
  background: #e2d3ff;
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

/* Tombol lihat kajian kanan */
.kajian-button {
  background: #2a9d8f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.kajian-button:hover {
  background: #21867a;
  transform: translateY(-2px);
}


/* === Bagian bawah: navigasi di kiri, lihat kajian di kanan === */
.petapotensi-bottom {
  display: flex;
  justify-content: space-between; /* kiri - kanan */
  align-items: center;
  margin-top: 14px;
  padding: 0 10px; /* beri ruang biar nggak mepet */
}

/* Navigasi kiri (❮ ❯) */
.petapotensi-nav {
  display: flex;
  gap: 6px;
}



.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

/* Tombol Kajian */
.kajian-button {
  font-family: 'Calibri', sans-serif;
  display: inline-block;
  margin-top: 7px;
  padding: 10px 18px;
  background-color: #1a6575;
  color: #ffffff;
  font-weight: 700;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.kajian-button:hover {
  background-color: #430d0d;
  color: #ffffff;
  
  transform: translateY(-2px);
}
.button-container {
  text-align: center;
  margin-top: 100px;
}
/* Popup Overlay */
#book-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}
/* Container Buku */
.book-container {
  position: relative;
  width: auto;
  height: 100vw; 
  max-height: 100vh;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  overflow: hidden; 
  padding: 20px 10px 60px; 
  -webkit-user-drag: none;
   user-select: none;
  pointer-events: auto;
}
/* Area tampilan PDF */
#book {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
   overflow: hidden;
}
/* Gambar hasil render PDF */
#book img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  -webkit-user-drag: none;
  
  user-select: none;
  pointer-events: auto;
  -webkit-touch-callout: none; 
  
}
.close-book {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background-color: #b04603;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.close-book:hover {
  background-color: #000000;
  transform: scale(1.1);
}
/* Loader */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 25px;
  border-radius: 10px;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  z-index: 9999;
}
.book-nav {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  z-index: 1000;
  flex-wrap: wrap; 
}
.book-btn {
  background-color: #375e89;
  color: white;
  border: none;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.book-btn:hover {
  background-color: #005fcc;
  transform: scale(1.1);
}
.book-btn:disabled {
  opacity: 0.9; 
  cursor: not-allowed;
  pointer-events: none; 
  transform: none;
  background-color: #999; 
  box-shadow: none;
}
.page-indicator {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  background: #f2f2f2;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  min-width: 80px;
  text-align: center;
  order: -1;
  margin-bottom: 5px;
}
#book img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  transition: opacity 0.3s ease;
  opacity: 1;
}

/*FITUR ZOOM UNTUK POPUP KAJIAN (PDF)*/
#book img.zoomable-pdf {
  cursor: grab;
  transition: transform 0.25s ease;
  transform-origin: center center;
}
#book img.zoomable-pdf:active {
  cursor: grabbing;
}

/* === PARALLAX SCROLL UNTUK PETAPOTENSI === */
.peta-layer1{
  position: absolute;
  bottom: 2790px;;
  left: 230px;
  width: 85%;
  height: auto;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
 
}
.peta-layer2{
  position: absolute;
  bottom: 3250px;
  left: 250px;
  width: 80%;
  height: auto;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
 
}
/* urutan layer */
.peta-layer1 { z-index: 1; }
.peta-layer2 { z-index: 1; }


/* FOOTER INVOPAGE*/
.footer-invopage {
  position: relative;
  color: white;
  overflow: hidden;
  margin-top: -5px;
  padding: 40px 20px;
  max-height: auto;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-color:  #063a56 ;
  transition: transform 0.4s ease;
  z-index: 0;
}
.footer-invopage.show .footer-content {
  transform: translateY(0);
  opacity: 1;
}
.footer-content {
  margin-left: 10%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(40px);
  transition: transform 0.66s cubic-bezier(.22,.9,.3,1); /
  will-change: transform;
  gap: 0px;
}
.footer-invopage.slide-up .footer-content {
  opacity: 1;
  transform: translateY(0);
}
.footer-thanks {
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 10px;
}

.footer-form {
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
#footerForm input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 20px;
  outline: none;
  max-width: 200px;
}
#footerForm button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: #5794ce;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
#footerForm button:hover {
  background: white;
  color: #2da9e0;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-left{
  flex: 1;
  min-width: 260px;
}
.footer-left h2 {
  font-size: 1.7rem;
  margin-bottom: 5px;
  color: #76a8d6;
}
.footer-left p {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.back-top-btn {
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-top-btn:hover {
  background: white;
  color: #2da9e0;
  transform: translateY(-4px);
}
.footer-content p:last-child { 
  font-size: 0.5rem;
  color: #eab7a800;
  margin-top: 0px;
  margin-bottom: -20px;
}
.footer-stats p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footersos-section {
  background-color: black;
  display: flex;
  justify-content: center; 
  align-items: center;     
  height: auto;             
  text-align: center;      
  padding: 10px;
}
.footersos-section a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  margin: 0 10px;
}
.footersos-section a:hover {
  color: #007bff;
}
.sosmed-logo {
  width: 24px; 
  height: 24px;
  vertical-align: middle; 
  margin-right: 5px;
}

/*ANTI DRAG GAMBAR*/
img {
  -webkit-user-drag: none;
  
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none; 
}
.petapotensi-section{
  padding-left: 2px;
  margin-top: -5px;
} 
.ipro-section{
  gap: 8vw;
  padding-left: 5vw;
}
   .inav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f4a261;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
    z-index: 4;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .prev-btn { left: -60px; }
  .next-btn { right: -60px; }


  .close-book {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background-color: #b04603;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.close-book:hover {
  background-color: #000000;
  transform: scale(1.1);
}


@media (min-width: 1025px) and (max-width: 1280px){
/*--------------------------------LOGO BUBBLE--------------------------------*/
  .logo-bubble {
    top: 15px;
    right: 10px;
    width: 90px;
    height: 90px;
    border-radius: 100%;
  }
  .logo-bubble .bubble-img {
    position: absolute;
    top: 0px;
    left: -14px;
    width: 270px;
    transition: all 0.3s ease;
  }
  .logo-bubble:hover .bubble-img,
  .logo-bubble.active .bubble-img {
    top: 0;
    left: 0;
    width: 270px;
    height: auto;
  }
  .logo-bubble:hover,
  .logo-bubble.active {
    width: 270px;
    height: 90px;
    border-radius: 25px;
  }
  
    .hero-text-inner h1 {
      margin-top: -50px;
    font-size: 4vh;
    font-weight: 800;
    line-height: 1;
  }
  .hero-text-inner .logo {
    margin-top: 0px;
    height: 20vh;
    width: auto;
  }
  .layer-cloud{
    top: 10%;
  }
    .layer-awanatas {
    top: -15%;
    object-position: 45% top;
  }
  .layer-awankiri{
    object-position: 20% top;
  }
 .layer-awankanan {
    top: -35%;
    object-position: 70% top;
  }
.layer-awankecil{
  display: none;
}
.layer-siluet {
  object-position: 50% 100%;
  object-fit: contain;
}
.layer-rumput{
  object-position: 30% 100%;
  bottom: -5%;
}
.layer-gunung{
  
  display: none;

  }
/* ---------- INTRO SECTION  ---------- */
.intro-section { 
  padding: 25px 40px; 
}
.intro-container {
  gap: 0px;
  width: 100%;
}
.intro-image {
  padding-left: 30px;
}
.intro-image img {
  width: 80%;           
  height: auto;
}
.intro-text p:last-child {
  margin-top: 20px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
/* Animasi floating */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}


/* -------------------- INTROPP SECTION -------------------- */ 

.intropp-container {
  gap: 1px; 
  padding-right: 2vw ;
}
.intropp-image {
  top: 300px;
  position: relative;
  flex: 1;
  width: 300px;
  display: flex;
  left: 110px;
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}
.floating-imgpp {
  animation: floatUpDown 5s ease-in-out infinite;
}
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 2s; }



/* === PARALLAX SCROLL UNTUK PETAPOTENSI === */
.peta-layer1{
  position: absolute;
  bottom: 3300px;;
  left: 120px;
  width: 100%;
  height: auto;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
 
}
.peta-layer2{
  position: absolute;
  bottom: 3750px;
  left: 130px;
  width: 100%;
  height: auto;
  pointer-events: none;
  will-change: transform;
  z-index: 1;

}


}
@media  (max-width: 1024px){
/*--------------------------------LOGO BUBBLE--------------------------------*/
  .logo-bubble {
    top: 15px;
    right: 10px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
  }
  .logo-bubble .bubble-img {
    position: absolute;
    top: 0px;
    left: -14px;
    width: 300px;
    transition: all 0.3s ease;
  }
  .logo-bubble:hover .bubble-img,
  .logo-bubble.active .bubble-img {
    top: 0;
    left: 0;
    width: 300px;
    height: auto;
  }
  .logo-bubble:hover,
  .logo-bubble.active {
    width: 300px;
    height: 100px;
    border-radius: 25px;
  }
  
    .hero-text-inner h1 {
      margin-top: -50px;
    font-size: 4vh;
    font-weight: 800;
    line-height: 1;
  }
  .hero-text-inner .logo {
    margin-top: 0px;
    height: 20vh;
    width: auto;
  }
  .layer-cloud{
    top: 10%;
  }
    .layer-awanatas {
    top: -15%;
    object-position: 45% top;
  }
  .layer-awankiri{
    object-position: 20% top;
  }
 .layer-awankanan {
    top: -35%;
    object-position: 70% top;
  }
.layer-awankecil{
  display: none;
}
.layer-siluet {
  object-position: 50% 100%;
  object-fit: contain;
}
.layer-rumput{
  object-position: 30% 100%;
  bottom: -5%;
}
.layer-gunung{
  
  display: none;

  }
/* ---------- INTRO SECTION  ---------- */
.intro-section { 
  padding: 25px 40px; 
}

.intro-container {
  gap: 0px;
  width: 100%;
}
.intro-image {
  padding-left: 20px;
}
.intro-image img {
  width: 80%;           
  height: auto;
}
.intro-text p:last-child {
  margin-top: 20px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
/* Animasi floating */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/*--------------------------------SECTION IPRO--------------------------------*/
  .ipro-section {
    margin-left: 0px;
  }
   .ipro-card {
    position: relative;
    background-size: contain;
    margin-left:5%;
    background: #fff;
    border-radius: 1rem;
    width: 320px;
    padding: 0.5rem 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    border: 3px solid #f4a261;
    z-index: 2;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
  }
/* -------------------- INTROPP SECTION -------------------- */ 

.intropp-container {
  gap: 10px; 
  padding-right: 30px;
  padding-left: 10px;
  margin-top: -130px;
  
}
.intropp-image {
  top: 300px;
  position: relative;
  flex: 1;
  width: 250px;
  display: flex;
  left: 110px;
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}
.floating-imgpp {
  animation: floatUpDown 5s ease-in-out infinite;
}
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 2s; }



/* === PARALLAX SCROLL UNTUK PETAPOTENSI === */
.peta-layer1{
  position: absolute;
  bottom: 3500px;;
  left: 120px;
  width: 85%;
  height: auto;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
 
}
.peta-layer2{
  position: absolute;
  bottom: 4000px;
  left: 120px;
  width: 80%;
  height: auto;
  pointer-events: none;
  will-change: transform;
  z-index: 1;

}
}




