:root{
  --deep:#001a2c;
  --navy:#002a40;
  --mid:#005f8a;
  --light:#0096c7;
  --aqua:#48cae4;
  --sand:#f9c74f;
  --coral:#f77f00;
  --white:#f0f8ff;
  --muted:rgba(255,255,255,.65);
  --border:rgba(255,255,255,.13);
  --wa:#25d366;
}

*{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  font-family:Arial,sans-serif;
  background:var(--deep);
  color:var(--white);
  overflow-x:hidden;
}

a{text-decoration:none}

.top-bar{
  background:linear-gradient(90deg,#128c7e,var(--wa));
  color:#fff;
  text-align:center;
  padding:10px 20px;
  font-size:.85rem;
  font-weight:700;
}

.season{
  background:linear-gradient(90deg,var(--coral),var(--sand));
  color:var(--deep);
  text-align:center;
  padding:9px 20px;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.nav{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(0,26,44,.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
}

.nav-brand{
  font-size:1.2rem;
  font-weight:900;
  color:var(--aqua);
}

.nav-brand span{color:var(--sand)}

.nav-links{
  display:flex;
  gap:22px;
}

.nav-links a{
  color:rgba(255,255,255,.7);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.nav-links a:hover{color:var(--aqua)}

.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-wa{
  background:var(--wa);
  color:#fff;
  padding:9px 16px;
  border-radius:30px;
  font-size:.75rem;
  font-weight:900;
}

.lang-row{
  display:flex;
  gap:5px;
}

.lb{
  background:transparent;
  border:1px solid var(--border);
  color:rgba(255,255,255,.65);
  padding:5px 9px;
  border-radius:20px;
  font-size:.65rem;
  font-weight:800;
  cursor:pointer;
}

.lb.on{
  background:var(--aqua);
  border-color:var(--aqua);
  color:var(--deep);
}

[data-lang]{display:none}
[data-lang].on{display:block}
[data-li]{display:none}
[data-li].on{display:inline}

.hero{
  min-height:86vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 24px;
  background:
    linear-gradient(rgba(0,26,44,.45),rgba(0,26,44,.92)),
    radial-gradient(circle at top,var(--mid),var(--deep));
}

.hero h1{
  font-size:clamp(2.5rem,7vw,5.8rem);
  line-height:.95;
  margin-bottom:22px;
}

.hero h1 em{
  color:var(--sand);
  font-style:italic;
}

.hero p{
  max-width:760px;
  margin:0 auto 30px;
  color:rgba(255,255,255,.78);
  font-size:1.1rem;
  line-height:1.8;
}

.btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:999px;
  font-weight:900;
  border:0;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(90deg,var(--sand),var(--coral));
  color:var(--deep);
}

.btn-outline{
  border:1px solid var(--border);
  color:#fff;
}

.sec{
  padding:90px 28px;
}

.container{
  width:min(1180px,100%);
  margin:auto;
}

.eyebrow{
  color:var(--sand);
  font-size:.8rem;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.stitle{
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.05;
  margin-bottom:18px;
}

.stitle em{
  color:var(--aqua);
  font-style:italic;
}

.sdesc{
  color:rgba(255,255,255,.68);
  line-height:1.8;
  max-width:760px;
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin-top:40px;
}

.pc{
  background:rgba(255,255,255,.07);
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.2);
}

.pc img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.pc-body{
  padding:24px;
}

.pc h3{
  font-size:1.35rem;
  margin-bottom:10px;
}

.pc p{
  color:rgba(255,255,255,.65);
  line-height:1.7;
  margin-bottom:18px;
}

.price-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.price{
  background:rgba(72,202,228,.14);
  border:1px solid rgba(72,202,228,.25);
  padding:10px 13px;
  border-radius:14px;
  font-size:.85rem;
  font-weight:900;
}

.detail-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.detail-img{
  width:100%;
  max-height:480px;
  object-fit:cover;
  border-radius:30px;
  border:1px solid var(--border);
}

.info-card{
  background:rgba(255,255,255,.07);
  border:1px solid var(--border);
  border-radius:28px;
  padding:26px;
  position:sticky;
  top:90px;
}

.info-card h3{
  margin-bottom:18px;
}

.info-line{
  display:flex;
  justify-content:space-between;
  gap:15px;
  border-bottom:1px solid var(--border);
  padding:13px 0;
  color:rgba(255,255,255,.76);
}

.footer{
  padding:42px 24px;
  border-top:1px solid var(--border);
  text-align:center;
  color:rgba(255,255,255,.6);
}

.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  background:var(--wa);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  z-index:999;
  box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.btn-login{
  background:#ffffff;
  color:#001a2c;
  padding:10px 18px;
  border-radius:30px;
  font-weight:900;
  font-size:.75rem;
  text-decoration:none;
  white-space:nowrap;
  transition:.25s;
}

.btn-login:hover{
  background:#48cae4;
  color:#001a2c;
  transform:translateY(-1px);
}

@media(max-width:850px){
  .nav{
    flex-wrap:wrap;
    padding:16px;
    gap:14px;
  }

  .nav-links{
    width:100%;
    overflow-x:auto;
    gap:16px;
  }

  .detail-wrap{
    grid-template-columns:1fr;
  }

  .info-card{
    position:relative;
    top:auto;
  }
}

.logo-brand{
    display:flex;
    align-items:center;
}

.logo-brand img{
    height:58px;
    width:auto;
    display:block;
}

@media(max-width:768px){
    .logo-brand img{
        height:46px;
    }
}

/* GALLERY FIX */
.gallery-section{
    padding:70px 7%;
    background:linear-gradient(180deg,#001a2c,#00243b);
}

.gallery-head{
    text-align:center;
    margin-bottom:28px;
}

.gallery-head h2{
    font-size:42px;
    margin-bottom:10px;
}

.gallery-head p{
    color:#bfe9f5;
    max-width:720px;
    margin:0 auto;
    line-height:1.7;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin:25px 0 35px;
}

.gallery-filter button{
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:11px 22px;
    border-radius:999px;
    font-weight:800;
    cursor:pointer;
}

.gallery-filter button.active,
.gallery-filter button:hover{
    background:var(--sand);
    color:var(--deep);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

.gallery-item{
    position:relative;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.gallery-media{
    height:210px;
    overflow:hidden;
    background:#000;
}

.gallery-media img,
.gallery-media video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-info{
    padding:16px;
}

.gallery-info h3{
    font-size:18px;
    margin:0 0 8px;
}

.gallery-info p{
    color:#b7dbea;
    line-height:1.6;
    font-size:14px;
}

.gallery-featured{
    position:absolute;
    top:12px;
    right:12px;
    background:var(--sand);
    color:var(--deep);
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.video-play{
    position:absolute;
    left:12px;
    bottom:12px;
    background:rgba(0,0,0,.65);
    color:#fff;
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
}

@media(max-width:768px){
    .gallery-section{
        padding:55px 6%;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-media{
        height:220px;
    }
}

/* ===========================
   GALLERY V4 PREMIUM
=========================== */

.gallery-media{
    height:190px;
}

.gallery-media video{
    pointer-events:none;
}

.premium-video-thumb{
    position:relative;
    width:100%;
    height:100%;
    cursor:pointer;
    overflow:hidden;
}

.premium-video-thumb video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:brightness(.78);
}

.premium-play{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    color:#fff;
    background:rgba(0,0,0,.18);
    transition:.25s;
}

.premium-video-thumb:hover .premium-play{
    background:rgba(0,0,0,.35);
    transform:scale(1.05);
}

.video-play{
    display:none!important;
}

.gallery-info{
    padding:14px 16px;
}

.gallery-info h3{
    font-size:18px;
    margin-bottom:6px;
}

.gallery-info p{
    font-size:14px;
    line-height:1.5;
}

.gallery-item{
    min-height:auto;
}

/* Video Popup */
.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
}

.video-modal.open{
    display:flex;
}

.video-modal-inner{
    width:min(980px,100%);
    position:relative;
}

.video-modal video{
    width:100%;
    max-height:82vh;
    border-radius:18px;
    background:#000;
}

.video-modal-close{
    position:absolute;
    top:-46px;
    right:0;
    background:#fff;
    color:#111;
    border:0;
    width:38px;
    height:38px;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
    font-weight:900;
}

/* =====================================================
   FAQ ENTERPRISE V2
===================================================== */

.faq-section{
    background:linear-gradient(180deg,#00243b,#001a2c);
    padding:80px 7%;
}

.faq-search{
    max-width:650px;
    margin:35px auto 50px;
}

.faq-search input{
    width:100%;
    padding:16px 22px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:15px;
    outline:none;
}

.faq-search input::placeholder{
    color:#cbd5e1;
}

.faq-category-block{
    margin-bottom:45px;
}

.faq-category-title{
    color:var(--sand);
    font-size:26px;
    margin-bottom:18px;
    font-weight:800;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    border-radius:20px;
    overflow:hidden;
    backdrop-filter:blur(12px);
    transition:.3s;
}

.faq-item:hover{
    border-color:var(--aqua);
    transform:translateY(-2px);
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
    padding:22px 26px;
    text-align:left;
    font-size:17px;
    font-weight:700;
}

.faq-question:hover{
    color:var(--sand);
}

.faq-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
    flex-shrink:0;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
    background:var(--sand);
    color:#001a2c;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 26px 24px;
    color:#dbeafe;
    line-height:1.8;
    font-size:15px;
}

.faq-item.active .faq-answer{
    max-height:600px;
}

@media(max-width:768px){

    .faq-section{
        padding:60px 6%;
    }

    .faq-question{
        padding:18px;
        font-size:16px;
    }

    .faq-answer p{
        padding:0 18px 20px;
    }

}

/* ======================================================
   PART 26
   HOMEPAGE BOOKING WIDGET
====================================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:140px 20px 120px;
}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    z-index:-2;

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(rgba(0,25,42,.35),
        rgba(0,25,42,.78));

    z-index:-1;

}

.hero-inner{

    width:100%;
    max-width:1200px;

}

.booking-tabs{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

}

.booking-tab{

    background:#fff;

    color:#00243b;

    border-radius:18px;

    padding:18px 26px;

    min-width:150px;

    cursor:pointer;

    transition:.25s;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}

.booking-tab:hover{

    transform:translateY(-4px);

}

.booking-tab.active{

    background:linear-gradient(90deg,#0096c7,#48cae4);

    color:#fff;

}

.booking-tab i{

    font-size:30px;

    display:block;

    margin-bottom:10px;

}

.booking-widget{

    width:100%;

    max-width:900px;

    margin:30px auto 0;

    background:#fff;

    border-radius:22px;

    padding:30px;

    color:#111827;

    box-shadow:0 30px 70px rgba(0,0,0,.25);

}

.booking-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.booking-group{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.booking-group label{

    font-size:13px;

    font-weight:800;

    color:#334155;

}

.booking-group select,
.booking-group input{

    height:48px;

    border:1px solid #dbe3ec;

    border-radius:12px;

    padding:0 14px;

    font-size:14px;

}

.booking-pax{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.booking-search{

    margin-top:25px;

}

.booking-search button{

    width:100%;

    height:54px;

    border:none;

    border-radius:14px;

    background:linear-gradient(90deg,#0096c7,#48cae4);

    color:#fff;

    font-size:17px;

    font-weight:900;

    cursor:pointer;

}

.booking-search button:hover{

    opacity:.9;

}

@media(max-width:900px){

    .booking-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .booking-tab{

        flex:1 1 calc(50% - 12px);

        min-width:unset;

    }

    .booking-pax{

        grid-template-columns:1fr;

    }

    .booking-widget{

        padding:22px;

    }

}

/* ==========================================================
   PREMIUM FRONTEND NAVIGATION V2
========================================================== */

.premium-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    min-height: 98px;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
    gap: 18px;
    background:
        linear-gradient(
            135deg,
            #001d30 0%,
            #00283f 55%,
            #001d30 100%
        );
    border-top: 4px solid #ff9800;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 12px 35px rgba(0,24,40,.22);
}

.premium-nav .logo-brand {
    width: 116px;
    min-width: 116px;
    padding: 12px 20px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.12);
}

.premium-nav .logo-brand img {
    width: 82px;
    max-height: 76px;
    object-fit: contain;
}

.premium-nav-links {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.premium-nav-links .nav-menu-item {
    position: relative;
    min-width: 90px;
    padding: 14px 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255,255,255,.86);
    text-decoration: none;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.premium-nav-links .nav-menu-item:first-child {
    border-left: 1px solid rgba(255,255,255,.1);
}

.premium-nav-links .nav-menu-item:hover {
    color: #ffffff;
    background: rgba(255,255,255,.06);
}

.premium-nav-links .nav-menu-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,#00b4d8,#3b82f6);
    transform: translateX(-50%);
    transition: width .25s ease;
}

.premium-nav-links .nav-menu-item:hover::after,
.premium-nav-links .nav-menu-item.active::after {
    width: 54%;
}

.premium-nav-links .nav-menu-item.active {
    color: #ffffff;
    background: rgba(0,150,199,.08);
}

.nav-menu-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.nav-menu-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-menu-item.active .nav-menu-icon,
.nav-menu-item:hover .nav-menu-icon {
    color: #38bdf8;
}

.nav-menu-text {
    display: block;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.premium-nav-right {
    min-width: max-content;
    padding-left: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-whatsapp {
    min-height: 50px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #22c55e,
            #10b981
        );
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(34,197,94,.24);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.premium-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(34,197,94,.32);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
}

.whatsapp-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-lang-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.premium-lang-row .lb {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition:
        color .2s ease,
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.premium-lang-row .lb:hover {
    color: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-1px);
}

.premium-lang-row .lb.on {
    color: #00243b;
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            #48cae4,
            #38bdf8
        );
    box-shadow: 0 7px 18px rgba(56,189,248,.22);
}

.premium-dashboard-btn {
    min-height: 52px;
    min-width: 150px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    background: #ffffff;
    color: #102033;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.premium-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.dashboard-icon {
    color: #6d28d9;
    font-size: 17px;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #ffffff;
    transition: .25s ease;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1380px) {

    .premium-nav {
        padding: 0 18px;
        gap: 10px;
    }

    .premium-nav .logo-brand {
        width: 95px;
        min-width: 95px;
    }

    .premium-nav .logo-brand img {
        width: 68px;
    }

    .premium-nav-links .nav-menu-item {
        min-width: 74px;
        padding-left: 11px;
        padding-right: 11px;
    }

    .nav-menu-text {
        font-size: 9.5px;
    }

    .premium-whatsapp {
        padding: 0 14px;
    }

    .premium-dashboard-btn {
        min-width: 120px;
        padding: 0 14px;
    }

    .premium-lang-row .lb {
        width: 37px;
        height: 37px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 1100px) {

    .premium-nav {
        min-height: 78px;
        padding: 0 18px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .premium-nav .logo-brand {
        width: auto;
        min-width: auto;
        height: 74px;
        padding: 8px 14px 8px 0;
        border-right: 0;
    }

    .premium-nav .logo-brand img {
        width: 64px;
        max-height: 60px;
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .premium-nav-links {
        order: 4;
        width: 100%;
        flex: 0 0 100%;
        display: none;
        padding: 12px 0 18px;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }

    .premium-nav-links.open {
        display: grid;
    }

    .premium-nav-links .nav-menu-item {
        min-width: 0;
        min-height: 74px;
        padding: 12px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 14px;
        background: rgba(255,255,255,.04);
        text-align: left;
    }

    .premium-nav-links .nav-menu-item:first-child {
        border-left: 1px solid rgba(255,255,255,.1);
    }

    .premium-nav-links .nav-menu-item::after {
        display: none;
    }

    .nav-menu-icon {
        flex: 0 0 25px;
    }

    .nav-menu-text {
        white-space: normal;
        font-size: 11px;
    }

    .premium-nav-right {
        margin-left: auto;
        padding-left: 0;
    }

    .premium-lang-row .lb:not(.on) {
        display: none;
    }

    .premium-dashboard-btn {
        display: none;
    }
}

@media (max-width: 650px) {

    .premium-nav {
        padding: 0 12px;
        gap: 8px;
    }

    .premium-whatsapp {
        min-height: 44px;
        padding: 0 13px;
        font-size: 12px;
        border-radius: 14px;
    }

    .premium-lang-row .lb {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle {
        width: 43px;
        height: 43px;
    }

    .premium-nav-links {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   MOBILE RESPONSIVE EMERGENCY FIX
   LETAK PALING BAWAH frontend.css
========================================================== */

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
}

/* Elakkan elemen lama memaksa lebar desktop */
body *,
body *::before,
body *::after {
    box-sizing: border-box;
}

/* ==========================================================
   TABLET & MOBILE NAVIGATION
========================================================== */

@media screen and (max-width: 1100px) {

    .premium-nav {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 74px !important;

        padding: 0 14px !important;
        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;

        gap: 8px !important;
    }

    .premium-nav .logo-brand {
        width: auto !important;
        min-width: 0 !important;
        height: 70px !important;

        padding: 7px 4px !important;
        margin: 0 !important;

        border: 0 !important;
        flex: 0 0 auto !important;
    }

    .premium-nav .logo-brand img {
        width: 58px !important;
        max-width: 58px !important;
        height: auto !important;
        max-height: 58px !important;

        object-fit: contain !important;
    }

    /* Sembunyikan menu desktop */
    .premium-nav-links {
        display: none !important;

        order: 10 !important;
        flex: 0 0 100% !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        padding: 12px 0 18px !important;
        margin: 0 !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    /* Papar apabila hamburger ditekan */
    .premium-nav-links.open {
        display: grid !important;
    }

    .premium-nav-links .nav-menu-item {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 62px !important;

        padding: 10px 12px !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;

        gap: 10px !important;

        border: 1px solid rgba(255,255,255,.12) !important;
        border-radius: 12px !important;

        background: rgba(255,255,255,.05) !important;
        text-align: left !important;
    }

    .premium-nav-links .nav-menu-item::after {
        display: none !important;
    }

    .nav-menu-icon {
        width: 24px !important;
        height: 24px !important;
        flex: 0 0 24px !important;
    }

    .nav-menu-icon svg {
        width: 23px !important;
        height: 23px !important;
    }

    .nav-menu-text {
        font-size: 10px !important;
        line-height: 1.3 !important;
        white-space: normal !important;
    }

    /* Bahagian kanan navbar */
    .premium-nav-right {
        width: auto !important;
        min-width: 0 !important;

        margin-left: auto !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 7px !important;
    }

    .premium-whatsapp {
        width: auto !important;
        min-width: 0 !important;
        min-height: 42px !important;

        padding: 0 12px !important;

        border-radius: 12px !important;

        font-size: 11px !important;
        line-height: 1 !important;
    }

    .whatsapp-icon,
    .whatsapp-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Paparkan hanya bahasa aktif pada telefon */
    .premium-lang-row {
        gap: 0 !important;
    }

    .premium-lang-row .lb {
        display: none !important;
    }

    .premium-lang-row .lb.on {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;

        padding: 0 !important;
        font-size: 11px !important;
    }

    /* Sembunyikan dashboard di navbar telefon */
    .premium-dashboard-btn {
        display: none !important;
    }

    /* Hamburger */
    .mobile-menu-toggle {
        display: block !important;

        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;

        padding: 9px !important;
        margin: 0 !important;

        flex: 0 0 42px !important;
    }

    .mobile-menu-toggle span {
        width: 100% !important;
        height: 2px !important;
        margin: 5px 0 !important;
    }
}

/* ==========================================================
   MOBILE HERO + BOOKING WIDGET
========================================================== */

@media screen and (max-width: 768px) {

    .season {
        width: 100% !important;
        max-width: 100% !important;

        padding: 7px 10px !important;

        font-size: 8px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .hero {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: auto !important;

        padding: 70px 14px 60px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-inner {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }

    .hero .eyebrow {
        font-size: 9px !important;
        letter-spacing: 1.4px !important;
    }

    .hero h1 {
        margin: 10px 0 14px !important;

        font-size: clamp(36px, 10vw, 52px) !important;
        line-height: 1.02 !important;

        word-break: normal !important;
    }

    .hero p {
        width: 100% !important;
        max-width: 430px !important;

        margin: 0 auto 22px !important;

        padding: 0 8px !important;

        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    /* Tabs Boat / Snorkeling / Airport */
    .booking-tabs {
        width: 100% !important;
        max-width: 100% !important;

        margin: 22px auto 0 !important;

        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

        gap: 7px !important;
    }

    .booking-tab {
        width: 100% !important;
        min-width: 0 !important;

        padding: 11px 5px !important;

        border-radius: 12px !important;

        font-size: 10px !important;
        line-height: 1.25 !important;
    }

    .booking-tab i {
        display: block !important;

        margin-bottom: 5px !important;

        font-size: 21px !important;
        line-height: 1 !important;
    }

    .booking-tab strong {
        display: block !important;
        font-size: 9px !important;
        white-space: normal !important;
    }

    /* Kad booking */
    .booking-widget {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 14px auto 0 !important;
        padding: 18px 14px !important;

        border-radius: 18px !important;
    }

    .booking-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 12px !important;
    }

    .booking-pax {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

        gap: 8px !important;
    }

    .booking-group {
        width: 100% !important;
        min-width: 0 !important;
    }

    .booking-group label {
        margin-bottom: 6px !important;

        font-size: 11px !important;
        text-align: left !important;
    }

    .booking-group input,
    .booking-group select {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 44px !important;

        padding: 0 10px !important;

        border-radius: 10px !important;

        font-size: 12px !important;
    }

    .booking-search {
        width: 100% !important;
        margin-top: 16px !important;
    }

    .booking-search button {
        width: 100% !important;
        height: 48px !important;

        border-radius: 12px !important;

        font-size: 14px !important;
    }
}

/* ==========================================================
   EXTRA SMALL MOBILE
========================================================== */

@media screen and (max-width: 480px) {

    .premium-nav {
        padding: 0 8px !important;
        gap: 5px !important;
    }

    .premium-nav .logo-brand img {
        width: 48px !important;
        max-width: 48px !important;
    }

    .premium-whatsapp {
        padding: 0 9px !important;
        font-size: 10px !important;
    }

    .premium-whatsapp span:last-child {
        display: none !important;
    }

    .premium-lang-row .lb.on {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .mobile-menu-toggle {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;

        padding: 7px !important;
    }

    .premium-nav-links {
        grid-template-columns: 1fr !important;
    }

    .hero {
        padding: 55px 10px 45px !important;
    }

    .hero h1 {
        font-size: 36px !important;
    }

    .hero p {
        font-size: 12px !important;
    }

    .booking-widget {
        padding: 15px 11px !important;
    }

    .booking-tabs {
        gap: 5px !important;
    }

    .booking-tab {
        padding: 9px 3px !important;
    }

    .booking-pax {
        gap: 5px !important;
    }

    .booking-group input,
    .booking-group select {
        padding: 0 6px !important;
        font-size: 11px !important;
    }
}