*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

html{
  scroll-behavior:smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #222;

  background-image: url("images/latar.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  body {
    background-position: center top;
    background-size: cover;
  }
}


/* NAVBAR LUXURY */

header{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:20px 7%;

  z-index:999;

  background:
  rgba(0,0,0,0.25);

  backdrop-filter:blur(12px);
}

/* LOGO */

.logo h2{

  color:white;

  font-size:32px;

  font-weight:800;
}

.logo span{

  color:#ffb400;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:55px;
  height:55px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid rgba(255,255,255,0.3);
  box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

.logo h2{
  font-size:38px;
  font-weight:900;
  letter-spacing:1px;
}

/* MENU */

nav{

  display:flex;

  gap:35px;

  align-items:center;
}

nav a{

  position:relative;

  color:white;

  text-decoration:none;

  font-size:14px;

  font-weight:700;

  letter-spacing:1px;

  transition:0.4s;
}

/* HOVER EFFECT */

nav a:hover{

  color:#ffb400;
}

/* UNDERLINE ANIMATION */

nav a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0;

  height:2px;

  background:#ffb400;

  transition:0.4s;
}

nav a:hover::after{

  width:100%;
}

/* WHATSAPP BUTTON */

.wa-btn{

  display:inline-block;

  background:
  linear-gradient(
    135deg,
    #00c853,
    #00e676
  );

  color:white;

  padding:14px 28px;

  border-radius:50px;

  text-decoration:none;

  font-weight:700;

  transition:0.4s;

  box-shadow:
  0 0 20px rgba(0,255,120,0.35);
}

.wa-btn:hover{

  transform:translateY(-3px);

  box-shadow:
  0 0 30px rgba(0,255,120,0.6);
}

.wa-btn:active{

  transform:scale(0.95);
}

/* TABLET */

@media(max-width:992px){

  nav{

    gap:20px;
  }

  nav a{

    font-size:13px;
  }

  .wa-btn{

    padding:12px 20px;
  }
}

/* MOBILE */

@media(max-width:768px){

  header{

    flex-direction:column;

    gap:15px;

    padding:18px 5%;
  }

  nav{

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;
  }

  nav a{

    font-size:12px;
  }

  .wa-btn{

    width:100%;

    text-align:center;
  }
}

/* HERO */

.hero{
  height:100vh;
  background:url('images/klinggking.jpeg') center/cover;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
  color:white;
}

.hero-content h4{
  color:#ffb400;
  margin-bottom:15px;
}

.hero-content h1{
  font-size:95px;
  line-height:1;
  font-weight:900;
}

.hero-content h2{
  color:#ffb400;
  font-size:55px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  line-height:1.7;
  margin-bottom:35px;
}

/* HERO BUTTONS CINEMATIC */

.hero-buttons{

  display:flex;

  gap:20px;

  flex-wrap:wrap;

  margin-top:35px;
}

/* SEMUA BUTTON */

.hero-buttons a{

  position:relative;

  overflow:hidden;

  padding:18px 38px;

  border-radius:16px;

  text-decoration:none;

  font-weight:700;

  letter-spacing:1px;

  transition:0.4s;
}

/* VIEW PACKAGES */

.yellow-btn{

  background:
  linear-gradient(
    135deg,
    #ffb400,
    #ffd54f
  );

  color:black;

  box-shadow:
  0 0 25px rgba(255,180,0,0.35);
}

.yellow-btn:hover{

  transform:
  translateY(-5px)
  scale(1.03);

  box-shadow:
  0 0 40px rgba(255,180,0,0.55);
}

/* BOOK NOW */

.outline-btn{

  border:2px solid white;

  color:white;

  background:
  rgba(255,255,255,0.05);

  backdrop-filter:blur(10px);
}

.outline-btn:hover{

  background:white;

  color:black;

  transform:
  translateY(-5px)
  scale(1.03);

  box-shadow:
  0 0 35px rgba(255,255,255,0.4);
}

/* EFEK KLIK */

.hero-buttons a:active{

  transform:scale(0.94);
}

/* TABLET */

@media(max-width:992px){

  .hero-buttons a{

    padding:16px 28px;

    font-size:14px;
  }
}

/* MOBILE */

@media(max-width:768px){

  .hero-buttons{

    flex-direction:column;

    align-items:flex-start;
  }

  .hero-buttons a{

    width:100%;

    text-align:center;

    padding:16px 20px;

    font-size:14px;
  }
}

/* FEATURES */

.features{
  width:85%;
  margin:auto;
  margin-top:-60px;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:35px;
  border-radius:20px;
  position:relative;
  z-index:5;
}

.feature{
  display:flex;
  align-items:center;
  gap:20px;
  color:white;
}

.feature i{
  font-size:35px;
  color:#ffb400;
}

/* PACKAGES */

.packages{
  padding:100px 8%;
}

.section-title h4{
  color:#ffb400;
  margin-bottom:10px;
}

.section-title h2{
  font-size:50px;
  margin-bottom:50px;
}

/* GRID */

.package-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */

.card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.4s ease;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */

.card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s ease;
}

.card:hover img{
  transform:scale(1.08);
}

/* CONTENT */

.card-content{
  padding:25px;
}

.card-content h3{
  margin-bottom:10px;
  font-size:24px;
}

.card-content p{
  color:#666;
  line-height:1.7;
}

.card-content h4{
  margin:20px 0;
  color:#ff9900;
  font-size:28px;
}

.card-content span{
  color:#777;
  font-size:18px;
}

/* BOOK BUTTON */

.book-btn{
  display:block;
  width:100%;
  text-align:center;
  padding:15px;
  border-radius:12px;
  background:linear-gradient(135deg,#25D366,#1ebe5d);
  color:white;
  text-decoration:none;
  font-weight:700;
  letter-spacing:1px;
  transition:0.35s ease;
  position:relative;
  overflow:hidden;
}

/* EFEK SINEMATIK */

.book-btn::before{
  content:'';
  position:absolute;
  top:0;
  left:-120%;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.25);
  transform:skewX(-25deg);
  transition:0.6s;
}

.book-btn:hover::before{
  left:120%;
}

.book-btn:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 10px 25px rgba(37,211,102,0.4);
}

.book-btn:active{
  transform:scale(0.95);
}

/* RESPONSIVE TABLET */

@media(max-width:992px){

  .package-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* RESPONSIVE MOBILE */

@media(max-width:768px){

  .package-grid{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:38px;
  }

  .card img{
    height:220px;
  }

}

/* WHY US */

.why-us{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  padding:0 8% 100px;
  align-items:center;
}

.left h4{
  color:#ffb400;
  margin-bottom:15px;
}

.left h2{
  font-size:55px;
  margin-bottom:20px;
}

.left p{
  color:#666;
  margin-bottom:20px;
}

.left ul li{
  margin-bottom:15px;
}

.right img{
  width:100%;
  border-radius:20px;
}

/* STATS */

.stats{
  width:85%;
  margin:auto;
  background:#071d36;
  color:white;
  padding:40px;
  border-radius:25px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  margin-bottom:100px;
}

.stat h2{
  font-size:45px;
  margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .package-grid{
    grid-template-columns:1fr 1fr;
  }

  .features{
    grid-template-columns:1fr 1fr;
  }

  .why-us{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  nav{
    display:none;
  }

  .hero-content h1{
    font-size:60px;
  }

  .hero-content h2{
    font-size:35px;
  }

  .package-grid{
    grid-template-columns:1fr;
  }

  .features{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

}

/* DESTINATIONS */

.destinations{
  padding:120px 8%;
}

.destination-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:30px;
}

.destination-card{

  position:relative;

  overflow:hidden;

  border-radius:25px;

  height:320px;

  cursor:pointer;
}

.destination-card img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s;
}

.destination-card:hover img{

  transform:scale(1.08);
}

.destination-content{

  position:absolute;

  bottom:0;
  left:0;

  width:100%;

  padding:35px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.9)
  );
}

.destination-content h3{

  font-size:32px;

  margin-bottom:10px;
}

.destination-content p{

  color:#ddd;

  line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

  .destination-grid{

    grid-template-columns:1fr;
  }

  .destination-card{

    height:280px;
  }

}

/* GALLERY */

.gallery{

  padding:120px 8%;
}

.gallery-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:25px;
}

.gallery-item{

  overflow:hidden;

  border-radius:25px;

  position:relative;

  cursor:pointer;
}

.gallery-item img{

  width:100%;
  height:320px;

  object-fit:cover;

  transition:0.5s;
}

.gallery-item:hover img{

  transform:scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

  .gallery-grid{

    grid-template-columns:1fr;
  }

  .gallery-item img{

    height:260px;
  }

}

/* REVIEWS */

.reviews{

  padding:120px 8%;
}

.review-grid{

  display:flex;

  justify-content:center;
}

.review-card{

  width:400px;

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  border-radius:25px;

  padding:40px 30px;

  text-align:center;

  transition:0.4s;
}

.review-card:hover{

  transform:translateY(-10px);
}

.review-card img{

  width:400px;
  height:400px;

  object-fit:cover;

  border-radius:50%;

  border:2px solid #d4af37;

  margin-bottom:18px;
}

.review-card h3{

  margin-bottom:10px;

  color:#d4af37;
}

.stars{

  margin-bottom:18px;

  font-size:20px;
}

.review-card p{

  color:#d6d6d6;

  line-height:1.8;
}

/* MOBILE */

@media(max-width:768px){

  .review-card{

    width:100%;
  }

}

/* CONTACT */

.contact{

  padding:120px 8%;
}

.contact-container{

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:30px;
}

.social-card{

  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  border-radius:25px;

  padding:40px 25px;

  text-align:center;

  text-decoration:none;

  color:white;

  transition:0.4s;
}

.social-card:hover{

  transform:translateY(-10px);

  box-shadow:
  0 20px 40px rgba(0,0,0,0.3);
}

.social-card img{

  width:70px;

  margin-bottom:20px;
}

.social-card h3{

  margin-bottom:12px;

  color:#d4af37;
}

.social-card p{

  color:#d6d6d6;

  line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

  .contact-container{

    grid-template-columns:1fr;
  }

}

 /* ========================================
   GLOBAL RESPONSIVE
======================================== */

html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  display:block;
}

body{
  overflow-x:hidden;
}

/* ========================================
   DESKTOP BESAR
======================================== */

@media(max-width:1200px){

  .hero-content h1{
    font-size:75px;
  }

  .hero-content h2{
    font-size:45px;
  }

  .package-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

/* ========================================
   TABLET
======================================== */

@media(max-width:991px){

  header{
    padding:15px 5%;
    flex-direction:column;
    gap:15px;
    backdrop-filter:blur(10px);
  }

  .logo{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .logo img{
    width:60px;
  }

  .logo h2{
    font-size:26px;
    text-align:center;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  nav a{
    font-size:13px;
  }

  .hero{
    height:auto;
    padding:170px 5% 100px;
    background-position:center;
  }

  .hero-content{
    max-width:100%;
    text-align:center;
  }

  .hero-content h1{
    font-size:60px;
    line-height:1.1;
  }

  .hero-content h2{
    font-size:38px;
  }

  .hero-content p{
    font-size:17px;
  }

  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .package-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .destination-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .section-title h2{
    font-size:40px;
  }

}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

  header{
    padding:12px 5%;
  }

  .logo img{
    width:50px;
  }

  .logo h2{
    font-size:20px;
    line-height:1.2;
  }

  nav{
    gap:10px;
  }

  nav a{
    font-size:11px;
  }

  .wa-btn{
    padding:10px 18px;
    font-size:12px;
  }

  .hero{
    padding:150px 5% 80px;
    text-align:center;
  }

  .hero-content h4{
    font-size:14px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content h2{
    font-size:28px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.7;
  }

  .hero-buttons{
    flex-direction:column;
    width:100%;
    gap:15px;
  }

  .yellow-btn,
  .outline-btn{
    width:100%;
    text-align:center;
    padding:14px;
    font-size:16px;
  }

  .features{
    grid-template-columns:1fr;
  }

  .package-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .destination-grid{
    grid-template-columns:1fr;
  }

  .card{
    border-radius:20px;
  }

  .card img{
    height:230px;
    object-fit:cover;
  }

  .card-content{
    padding:20px;
  }

  .card-content h4{
    font-size:24px;
  }

  .section-title{
    text-align:center;
  }

  .section-title h2{
    font-size:32px;
  }

  .reviews{
    padding:80px 5%;
  }

  .contact{
    padding:80px 5%;
  }

}

/* ========================================
   HP KECIL
======================================== */

@media(max-width:480px){

  .hero-content h1{
    font-size:34px;
  }

  .hero-content h2{
    font-size:24px;
  }

  .hero-content p{
    font-size:14px;
  }

  nav a{
    font-size:10px;
  }

  .logo h2{
    font-size:18px;
  }

}

.include-list p{
  position:relative;
  padding-left:22px;
}

.include-list p::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ffb400;
  font-weight:bold;
}

/* PRICE NOTE */

.price-note{
  margin-top:8px;
  font-size:13px;
  color:#777;
  font-style:italic;
  line-height:1.4;
}

    .hero-title-script{
    font-family:'Cinzel', serif;
    font-size:80px;
    font-weight:700;
    color:#fff;
    letter-spacing:2px;
    text-shadow:0 4px 15px rgba(0,0,0,.4);
}
@media (max-width:768px){
    .hero-title-script{
        font-size: 60px !important;
        line-height: 1.1;
    }
}