
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #07111f;
      color: #fff;
      overflow-x: hidden;
    }

    /* Ambient Background Glow */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at top right, rgba(45,212,191,.10), transparent 25%),
        radial-gradient(circle at bottom left, rgba(168,85,247,.10), transparent 25%);
    }

    /* Glassmorphism Utilities */
    .glass {
      background: rgba(7, 17, 31, 0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: all 0.3s ease;
    }

    .glass.scrolled {
      background: rgba(7, 17, 31, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .hero-bg {
      background:
        radial-gradient(circle at top right, rgba(45,212,191,.14), transparent 25%),
        radial-gradient(circle at bottom left, rgba(249,115,22,.14), transparent 25%),
        linear-gradient(to bottom, #07111f, #0F172A);
    }

    /* Primary Button Styles */
    .btn-primary {
      background: linear-gradient(90deg, #11b6aa, #39d9c8);
      transition: all 0.4s ease;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(45,212,191,.45);
    }

    /* Card Styles */
    .card-dark {
      background: #1b2740;
      border: 1px solid rgba(255,255,255,.06);
      transition: all 0.4s ease;
    }

    .card-dark:hover {
      transform: translateY(-10px);
      border-color: #2DD4BF;
      box-shadow: 0 10px 35px rgba(45,212,191,.30);
    }

    /* Hero Image Slider */
    .hero-slider {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      height: 560px;
      border: 1px solid rgba(255,255,255,.08);
      touch-action: pan-y; /* Optimize for touch swipe */
    }

    .hero-track {
      display: flex;
      height: 100%;
      transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }

    .hero-track img {
      width: 100%;
      flex-shrink: 0;
      object-fit: cover;
      pointer-events: none; /* Prevent drag issues on desktop */
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.75), transparent 50%);
      pointer-events: none;
    }

    .dots {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.3);
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .dot.active {
      width: 24px;
      background: #2DD4BF;
      box-shadow: 0 0 15px #2DD4BF;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(7,17,31,.98);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 18px;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .mobile-link {
      width: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.06);
      font-size: 18px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .mobile-link:hover {
      background: #2DD4BF;
      color: #000;
      transform: scale(1.04);
    }

    /* Map Decorator */
    .map-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
    }

    .map-wrapper::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, #2DD4BF, #0ea5e9, #a855f7);
      z-index: -1;
      filter: blur(25px);
      opacity: .55;
    }

    .review-card {
      background: linear-gradient(145deg, #1E293B, #111827);
      border: 1px solid rgba(255,255,255,.06);
      transition: transform 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-5px);
    }

    /* WhatsApp Pulse Animation */
    .wa-float {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
      70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }

    /* Responsive Adjustments */
    @media(max-width: 1024px) {
      .hero-slider { height: 430px; }
    }

    @media(max-width: 768px) {
      .hero-slider { height: 320px; }
      .hero-title { font-size: 42px; line-height: 1.2; }
    }

    @media(max-width: 500px) {
      .hero-title { font-size: 34px; }
      .hero-slider { height: 250px; border-radius: 22px; }
    }

    /* ===========================
   FIX MOBILE OVERFLOW
=========================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
    position: relative;
}

/* Semua section tidak boleh melebihi layar */
section,
header,
footer,
main,
.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Semua gambar responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   HERO SLIDER
=========================== */

.hero-slider{
    position: relative;
    width:100%;
    overflow:hidden;
    border-radius:32px;
}

.hero-track{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .8s ease;
    will-change:transform;
}

.hero-track img{
    flex:0 0 100%;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-slider{
    height:560px;
}

.hero-track img{
    height:560px;
}

@media(max-width:1024px){
    .hero-slider,
    .hero-track img{
        height:430px;
    }
}

@media(max-width:768px){
    .hero-slider,
    .hero-track img{
        height:320px;
    }
}

@media(max-width:500px){
    .hero-slider,
    .hero-track img{
        height:250px;
    }
}

/*=========================
PROMO SLIDER
=========================*/

.promo-slider{

    overflow:hidden;

    width:100%;

}

.promo-track{

    display:flex;

    transition:transform .7s ease;

}

/* kiri */

.promo-content{

    flex:1;

}

.promo-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(251,146,60,.15);

    color:#fdba74;

    padding:12px 22px;

    border-radius:999px;

    margin-bottom:25px;

}

.promo-title{

    font-size:45px;

    font-weight:900;

    line-height:1.1;

    margin-bottom:20px;

}

.promo-desc{

    color:#cbd5e1;

    font-size:20px;

    line-height:1.8;

    max-width:700px;

}

/* kanan */

.promo-slide{
    flex:0 0 100%;
    display:grid;
    grid-template-columns:50% 50%;
    align-items:center;
    gap:40px;
    padding:35px 45px;
}

.promo-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.promo-image img{
    width:90%;
    height:auto;
    object-fit:contain;
    border-radius:20px;
    display:block;
}

.promo-badge{

    position:absolute;

    top:6px;

    left:35px;

    background:#ef4444;

    color:#fff;

    padding:12px 22px;

    border-radius:999px;

    font-weight:bold;

    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

/* dots */

.promo-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:35px;

}

.promo-dot{

    width:12px;

    height:12px;

    background:#64748b;

    border-radius:999px;

    cursor:pointer;

    transition:.35s;

}

.promo-dot.active{

    width:32px;

    background:#2DD4BF;

}

/*=========================
RESPONSIVE
=========================*/

/*=========================
TABLET
=========================*/
@media (max-width:992px){

    .promo-slide{
        display:flex;
        flex-direction:column;
        text-align:center;
        padding:35px;
        gap:30px;
    }

    .promo-content{
        width:100%;
        order:1;
    }

    .promo-image{
        width:100%;
        max-width:420px;
        margin:0 auto;
        order:2;
    }

    .promo-title{
        font-size:40px;
    }

    .promo-desc{
        font-size:17px;
        max-width:100%;
    }

    .promo-content .flex{
        justify-content:center;
    }

}


/*=========================
MOBILE
=========================*/
@media (max-width:576px){

    .promo-slide{
        padding:25px;
        gap:25px;
    }

    .promo-title{
        font-size:32px;
        line-height:1.15;
    }

    .promo-desc{
        font-size:15px;
    }

    .promo-content .flex{
        flex-direction:column;
        width:100%;
        gap:15px;
    }

    .promo-content .flex a{
        width:100%;
        justify-content:center;
    }

    .promo-image{
        order:99;
        width:100%;
        max-width:100%;
        margin:20px 0 0;
    }

    .promo-image img{
        width:100%;
        height:auto;
        display:block;
        border-radius:20px;
        object-fit:cover;
    }
    /* Tombol Booking */
.promo-content .btn-primary{
    width:220px;          /* atur panjang tombol */
    height:50px;          /* atur tinggi tombol */
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;   /* icon di samping text */

    gap:8px;              /* jarak icon dan text */

    padding:0;
    font-size:15px;
    font-weight:700;
}

  /* Icon WA */
  .promo-content .btn-primary i{
      font-size:18px;
      margin:0;
  }

  /* Tombol Lihat Armada */
  .promo-content .flex a:last-child{
      width:220px;
      height:50px;

      display:flex;
      align-items:center;
      justify-content:center;

      margin:0 auto;
      padding:0;

      font-size:15px;
  }

}

/* Semua grid/flex tidak boleh overflow */
.grid,
.flex {
    min-width: 0;
}

/* Mobile */
@media (max-width:768px){

    html,
    body{
        overflow-x:hidden !important;
    }

    *{
        max-width:100%;
    }

}
