:root{
  --navy:#0b2340;
  --navy-2:#13355c;
  --ink:#112033;
  --muted:#6b7c90;
  --line:#dfe7ef;
  --soft:#f4f8fb;
  --white:#ffffff;
  --brand:#1d5f9b;
  --brand-2:#144b79;
  --brand-soft:#e9f2f9;
  --success:#25D366;
  --shadow:0 16px 40px rgba(17,32,51,.10);
  --shadow-2:0 22px 56px rgba(11,35,64,.16);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --container:1240px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button,input,textarea{font:inherit}
.container{width:min(100% - 24px,var(--container));margin:0 auto}
.section{padding:88px 0}
.section-sm{padding:64px 0}
.alt-bg{background:var(--soft)}

.section-tag{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-head{max-width:760px;margin:0 auto 42px;text-align:center}
.section-head h1,.section-head h2{
  margin:14px 0 12px;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.08;
  font-weight:600;
}
.section-head p{color:var(--muted)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:600;
  transition:.25s ease;
  cursor:pointer;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-primary:hover{
  transform:translateY(-2px);
  background:var(--brand-2);
}
.btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}
.btn-secondary:hover{background:rgba(255,255,255,.16)}
.btn-outline{
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}
.btn-outline:hover{
  border-color:var(--brand);
  color:var(--brand);
}

/* Header */
.site-header{
  position:fixed;
  top:0;left:0;
  width:100%;
  z-index:1000;
  background:rgba(8,22,40,.76);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-img{
  height:98px;
  width:auto;
  object-fit:contain;
}

.site-header .logo span{
  color: #ffffff;
  font-weight: 600;
  font-size:1.1rem;
  letter-spacing: 0.5px;
}
.nav-shell{display:flex;align-items:center;gap:14px}
.nav{display:flex;align-items:center;gap:20px}
.nav a{
  color:rgba(255,255,255,.88);
  font-weight:500;
  position:relative;
}
.nav a:hover,.nav a.active-page{color:#fff}
.nav a.active-page::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-10px;
  height:2px;
  border-radius:999px;
  background:#fff;
}
.lang-switch{display:flex;align-items:center;gap:6px}
.lang-btn{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  color:#fff;
  font-size:.78rem;
  font-weight:600;
}
.lang-btn.active{
  background:rgba(255,255,255,.22);
  border-color:rgba(255,255,255,.26);
}
.menu-toggle{
  display:none;
  width:42px;height:42px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  border-radius:12px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  width:18px;height:2px;
  border-radius:999px;
  background:#fff;
  display:block;
}

/* Hero */
.hero{
  min-height:100vh;
  padding-top:82px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(8,23,42,.48),rgba(8,23,42,.72)),
    url("../../gocek.png") center/cover no-repeat;
  color:#fff;
}
.hero-content{
  max-width:760px;
  padding:86px 0;
}
.eyebrow{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:500;
  color:#dfeeff;
  margin-bottom:14px;
}
.hero h1{
  font-size:clamp(2.3rem,5vw,4.1rem);
  line-height:1.02;
  font-weight:600;
}
.hero p{
  max-width:620px;
  color:rgba(255,255,255,.9);
  font-size:1rem;
  margin:16px 0 24px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px}
.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.hero-badges span{
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  font-size:.9rem;
  font-weight:500;
}

/* Intro */
.grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow);
}
.info-card p{color:var(--muted)}
.route-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.route-pills span{
  padding:9px 13px;
  border-radius:999px;
  background:var(--soft);
  font-weight:500;
}

/* Category cards */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.cat-card{
  position:relative;
  min-height:410px;
  overflow:hidden;
  border-radius:var(--radius-xl);
  background:#0f2034;
  color:#fff;
  display:flex;
  align-items:flex-end;
  box-shadow:var(--shadow-2);
}
.cat-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.cat-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,23,42,.10),rgba(8,23,42,.82));
}
.cat-card-content{
  position:relative;
  z-index:1;
  padding:26px;
}
.cat-card h3{
  margin:10px 0;
  font-size:1.5rem;
  font-weight:600;
}
.cat-card p{
  color:rgba(255,255,255,.88);
  margin-bottom:16px;
}

/* List hero */
.list-hero{
  padding-top:148px;
  padding-bottom:72px;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(8,23,42,.58),rgba(8,23,42,.74)),
    url("../../gocek.png") center/cover no-repeat;
}
.list-hero p{
  max-width:760px;
  margin:12px auto 0;
  color:rgba(255,255,255,.9);
}

/* Fleet pages */
.fleet-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
}
.filter-card{
  position:sticky;
  top:104px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  height:fit-content;
}
.filter-card h3{
  font-size:1.08rem;
  font-weight:600;
  margin-bottom:16px;
}
.filter-item{
  padding:14px 0;
  border-top:1px solid var(--line);
}
.filter-item:first-of-type{
  border-top:none;
  padding-top:0;
}
.filter-item strong{
  display:block;
  margin-bottom:6px;
  font-weight:600;
}
.filter-item span{
  color:var(--muted);
  font-size:.95rem;
}

.boat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.boat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.28s ease;
}
.boat-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-2);
}
.boat-media{
  position:relative;
  height:300px;
  overflow:hidden;
}
.boat-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s ease;
}
.boat-card:hover .boat-media img{transform:scale(1.04)}
.boat-chip{
  position:absolute;
  top:16px;
  left:16px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--navy);
  font-size:.82rem;
  font-weight:600;
}
.boat-body{padding:22px}
.boat-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:12px;
}
.boat-top h3{
  font-size:1.34rem;
  line-height:1.18;
  font-weight:600;
}
.price{
  text-align:right;
  color:var(--brand);
  font-weight:600;
  white-space:nowrap;
}
.price small{
  display:block;
  color:var(--muted);
  font-size:.8rem;
}
.boat-body p{
  color:var(--muted);
  margin-bottom:16px;
}
.meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  margin-bottom:18px;
}
.meta-row span{
  padding:9px 12px;
  border-radius:999px;
  background:var(--soft);
  font-size:.92rem;
  font-weight:500;
}
.empty-state{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:40px;
  text-align:center;
}
.empty-state p{
  color:var(--muted);
  max-width:560px;
  margin:0 auto;
}

/* Boat detail */
.detail-hero{
  padding-top:118px;
  padding-bottom:42px;
  background:linear-gradient(180deg,#f8fbfe,#eef5fb);
}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--muted);
  font-size:.92rem;
  font-weight:500;
  margin-bottom:20px;
}
.breadcrumbs a{
  color:var(--brand);
}
.detail-top{
  display:grid;
  grid-template-columns:1.28fr .72fr;
  gap:28px;
  align-items:start;
}
.gallery-card,.summary-card,.content-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.gallery-card{padding:20px}
.slider-main{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#dbe6ef;
  aspect-ratio:16/10;
}
.slider-main img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.slide-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;height:46px;
  border:none;
  border-radius:50%;
  background:rgba(10,24,42,.68);
  color:#fff;
  font-size:1.4rem;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.slide-prev{left:16px}
.slide-next{right:16px}

.slider-strip{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-top:14px;
  scrollbar-width:none;
}
.slider-strip::-webkit-scrollbar{display:none}
.thumb{
  flex:0 0 100px;
  height:74px;
  border:none;
  border-radius:14px;
  overflow:hidden;
  background:#edf2f7;
  cursor:pointer;
  border:2px solid transparent;
}
.thumb.active{border-color:var(--brand)}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.summary-card{
  position:sticky;
  top:104px;
  padding:28px;
}
.summary-card h1{
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.05;
  margin:14px 0 12px;
  font-weight:600;
}
.summary-card .lead{
  color:var(--muted);
  margin-bottom:14px;
}
.summary-price{
  font-size:1.45rem;
  color:var(--brand);
  font-weight:600;
  margin-bottom:20px;
}
.summary-actions{
  display:grid;
  gap:12px;
  margin-bottom:20px;
}
.quick-specs{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.quick-spec{
  padding:14px;
  border-radius:18px;
  background:var(--soft);
}
.quick-spec strong{
  display:block;
  color:var(--muted);
  font-size:.86rem;
  margin-bottom:4px;
}
.quick-spec span{font-weight:600}

.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:28px;
}
.content-card{padding:24px}
.content-card h3{
  margin-bottom:16px;
  font-size:1.12rem;
  font-weight:600;
}
.feature-list{display:grid;gap:12px}
.feature-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 0;
  border-top:1px solid var(--line);
}
.feature-item:first-child{
  border-top:none;
  padding-top:0;
}
.feature-icon{
  width:34px;height:34px;
  flex:0 0 34px;
  border-radius:12px;
  background:var(--brand-soft);
  color:var(--brand);
  display:grid;
  place-items:center;
  font-weight:600;
}
.feature-item strong{font-weight:600}
.feature-item p{color:var(--muted)}
.spec-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.spec-box{
  padding:16px;
  border-radius:18px;
  background:var(--soft);
}
.spec-box strong{
  display:block;
  color:var(--muted);
  font-size:.86rem;
  margin-bottom:4px;
}
.spec-box span{font-weight:600}

/* Itinerary image cards */
.route-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.route-card{
  position:relative;
  min-height:360px;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#10243a;
  cursor:pointer;
}
.route-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.route-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,23,42,.08),rgba(8,23,42,.78));
}
.route-card-inner{
  position:relative;
  z-index:1;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  color:#fff;
}
.route-card h3{
  font-size:1.35rem;
  font-weight:600;
}
.route-card p{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(10px);
  transition:.28s ease;
  color:rgba(255,255,255,.9);
  margin-top:10px;
}
.route-card:hover p,
.route-card.active p{
  max-height:220px;
  opacity:1;
  transform:translateY(0);
}

/* Contact */
.contact-panel{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:28px;
}
.contact-card h3{
  margin-bottom:16px;
  font-size:1.12rem;
  font-weight:600;
}
.contact-list{
  display:grid;
  gap:16px;
}
.contact-list li{color:var(--muted)}
.contact-list strong{
  display:block;
  color:var(--ink);
  font-weight:600;
}
.contact-list a{
  color:var(--brand);
  font-weight:600;
}
.contact-form{
  display:grid;
  gap:14px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#f9fbfd;
  color:var(--ink);
  outline:none;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--brand);
}
.map-frame{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
}
.map-frame iframe{
  width:100%;
  height:260px;
  border:0;
}

/* Footer */
.site-footer{
  background:#0a1e34;
  color:rgba(255,255,255,.82);
  padding:24px 0;
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.footer-wrap a{color:#fff}

/* WhatsApp */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  width:56px;height:56px;
  border-radius:50%;
  background:var(--success);
  display:grid;
  place-items:center;
  box-shadow:0 18px 36px rgba(0,0,0,.18);
}
.whatsapp-float svg{
  width:27px;height:27px;
  fill:#fff;
}

@media (max-width:1180px){
  .grid-2,.fleet-layout,.detail-top,.contact-panel{grid-template-columns:1fr}
  .filter-card,.summary-card{position:static}
  .cat-grid,.boat-grid,.route-grid,.content-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:900px){
  .menu-toggle{display:flex}
  .nav{
    display:none;
    position:absolute;
    top:82px;left:0;right:0;
    background:rgba(8,22,40,.97);
    padding:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
  .nav.active{display:flex}
  .nav a.active-page::after{display:none}
  .boat-grid,.cat-grid,.route-grid,.content-grid{grid-template-columns:1fr}
}

@media (max-width:640px){
  .hero{min-height:92vh}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .boat-top,.footer-wrap{flex-direction:column;align-items:flex-start}
  .quick-specs,.spec-grid{grid-template-columns:1fr}
  .thumb{flex-basis:84px;height:64px}
}