/* ===== PAGE LAYOUT FIX ===== */
html, body{
  height:100%;
  margin:0;
}

.page-wrapper{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.page-content{
  flex:1;
}

/* ===== FLOATING WHATSAPP ===== */

.wa-float:hover{
  transform: scale(1.1);
  background:#1ebe5d;
}

/* ===== WRAPPER (yang fixed) ===== */
.wa-wrapper{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  align-items:center;
  gap:12px;
  z-index:99999;
}

/* ===== LABEL ===== */
.wa-label{
  background:#fff;
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  color:#333;
  box-shadow:0 3px 15px rgba(0,0,0,0.15);
  white-space:nowrap;
}

/* ===== BUTTON ===== */
.wa-float{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.25);
  transition:0.3s;
  animation:bounce 2s infinite;
}

.wa-float:hover{
  transform:scale(1.1);
}

/* ===== ANIMATION ===== */
@keyframes bounce{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width:600px){
  .wa-float{
    width:50px;
    height:50px;
    font-size:20px;
    bottom:15px;
    right:15px;
  }

  .wa-label{
    display:none;
  }
}

/* hero */

.hero{
  position:relative;
  width:100%;
  height:80vh;
  overflow:hidden;
}

.hero-image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

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

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:#fff;
  z-index:2;
  width:90%;
  max-width:700px;
  backdrop-filter: blur(1px);
}

.hero-content h1{
   text-shadow: 0 4px 20px rgba(251, 249, 249, 0.6);
    color: #fff;
  font-size:48px;
  font-weight: 600;
  letter-spacing: 0.5;
  margin-bottom:15px;
}

.hero-content p{
    text-shadow: 0 2px 10px rgba(249, 248, 248, 0.5);
  font-size:16px;
  margin-bottom:25px;
  color:#eee;
}

/* Gallery */

.gallery{
  padding:60px 20px;
  text-align:center;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:15px;
  max-width:1000px;
  margin:auto;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  transition:0.3s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* main */

.why{
  padding:60px 20px;
  max-width:1000px;
  margin:auto;
}

.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:25px;
}

.why-grid div{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px){
  .why-grid{
    grid-template-columns: 1fr;
  }
}

.destinations{
  padding:60px 20px;
  text-align:center;
}

.destinations ul{
  list-style:none;
  padding:0;
}

.destinations li{
  margin:10px 0;
  font-size:16px;
}

.cta{
  text-align:center;
  padding:60px 20px;
  background:#f9f9f9;
}

/* CTA */

.seo-text{
  max-width:800px;
  margin:60px auto;
  padding:0 20px;
  text-align:left;
}

.seo-text h2{
  font-size:22px;
  margin-bottom:15px;
  color: var(--navy);
}

.seo-text p{
  color:#666;
  line-height:1.7;
  margin-bottom:12px;
}

/* ===== FOOTER PREMIUM ===== */
:root{
  --navy:#071739;
  --gold:#d4a017;
}

.footer{
  background: var(--navy);
  color:#fff;
  margin-top:60px;
  padding-top:50px;
}

/* GRID LEBIH ELEGAN */
.footer-container{
  display:grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap:40px;
  max-width:1200px;
  margin:auto;
  padding:0 20px 40px;
}

/* LOGO */
.footer-logo{
  color: var(--gold);
  margin-bottom:10px;
}

/* TITLE */
.footer-col h4{
  margin-bottom:15px;
  color: var(--gold);
  font-size:15px;
}

/* TEXT */
.footer-col p{
  font-size:14px;
  color:#ccc;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}

/* LINKS */
.footer-col a{
  display:block;
  color:#bbb;
  text-decoration:none;
  margin-bottom:8px;
  font-size:14px;
  transition:0.25s;
}

/* HOVER EFFECT 🔥 */
.footer-col a:hover{
  color:#fff;
  transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:13px;
  color:#aaa;
}


@media (max-width: 768px){

  .footer-container{
    grid-template-columns: 1fr 1fr;
    gap:25px;
  }

}

@media (max-width: 500px){

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

  .footer-col p{
    justify-content:center;
  }

  .footer-social{
    justify-content:center;
  }

}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  color:#fff;
  font-size:18px;
  transition:0.3s;
}

.footer-social a:hover{
  transform:translateY(-3px);
}

.footer-social a:nth-child(1):hover{
  background:#E1306C;
}

.footer-social a:nth-child(2):hover{
  background:#000;
}

.footer-social a:nth-child(3):hover{
  background:#1877F2;
}

/* include exclude */

.tour-info{
padding:60px 20px;
background:#fafafa;
}

.tour-info-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.tour-info h2{
margin-bottom:20px;
}

.tour-info ul{
list-style:none;
padding:0;
}

.tour-info li{
margin-bottom:12px;
font-size:16px;
display:flex;
align-items:center;
gap:10px;
}

.includes i{
color:#27ae60;
}

.excludes i{
color:#e74c3c;
}

.optional{
color:#f39c12;
}

@media (max-width:768px){
.tour-info-grid{
grid-template-columns:1fr;
}
}