
/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --navy:       #0b1f3a;
  --navy-mid:   #112d52;
  --blue:       #1a4275;
  --ocean:      #1e6091;
  --teal:       #0d8a8a;
  --gold:       #d4a017;
  --amber:      #e8950a;
  --sand:       #f5efe6;
  --cream:      #faf8f5;
  --white:      #ffffff;
  --ink:        #0b1f3a;
  --ink-mid:    #334155;
  --ink-light:  #64748b;
  --ink-muted:  #94a3b8;
  --border:     #e8eef5;
  --border-mid: #d0dcea;
  --wa:         #22c55e;
  --wa-dark:    #16a34a;

  --shadow-xs:  0 1px 3px rgba(11,31,58,.06), 0 1px 2px rgba(11,31,58,.04);
  --shadow-sm:  0 2px 8px rgba(11,31,58,.08), 0 1px 3px rgba(11,31,58,.05);
  --shadow-md:  0 8px 24px rgba(11,31,58,.10), 0 2px 8px rgba(11,31,58,.06);
  --shadow-lg:  0 20px 48px rgba(11,31,58,.14), 0 6px 16px rgba(11,31,58,.08);
  --shadow-xl:  0 32px 64px rgba(11,31,58,.18), 0 8px 24px rgba(11,31,58,.10);

  --radius-sm:  .5rem;
  --radius-md:  .875rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-full: 99rem;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
header.scrolled {
  background: rgba(11,31,58,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-text { color: var(--white); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.logo-text span { color: var(--amber); }
.logo-sub { color: rgba(255,255,255,.45); font-size: .6rem; display: block; line-height: 1; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

nav a {
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  margin-left: 2rem; transition: color .2s; letter-spacing: -.01em;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--amber); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s;
}
nav a:hover { color: #fff; }
nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex; align-items: center; gap: .4rem;
  background: var(--wa); color: #fff;
  padding: .5rem 1.1rem; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700; margin-left: 1.5rem;
  transition: all .22s; letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(34,197,94,.35);
}
.nav-cta:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,.45); }

.lang-toggle {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .75rem; border-radius: var(--radius-full); font-size: .75rem; font-weight: 700;
  cursor: pointer; margin-left: 1.5rem; letter-spacing: .05em; transition: all .2s;
  font-family: inherit;
}
.lang-toggle:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; background: rgba(11,31,58,.99);
  backdrop-filter: blur(20px);
  padding: 1.5rem; flex-direction: column; gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-menu a { color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 500; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu .mob-cta { background: var(--wa); color: #fff; text-align: center; padding: .9rem; border-radius: var(--radius-md); font-weight: 700; margin-top: .5rem; border: none; font-family: inherit; font-size: .95rem; cursor: pointer; }

/* ── HERO ───────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/DJI_0013.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,.88) 0%,
    rgba(11,31,58,.55) 55%,
    rgba(11,31,58,.80) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(30,96,145,.25) 0%, transparent 70%);
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 7rem 2rem 9rem; width: 100%;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: .4rem 1rem; margin-bottom: 1.75rem;
  color: rgba(255,255,255,.85); font-size: .75rem; font-weight: 600; letter-spacing: .04em;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.85)} }

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem); font-weight: 800;
  color: #fff; line-height: 1.18; margin-bottom: 1.1rem;
  letter-spacing: -.03em;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--amber), #f5c842);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.25rem; max-width: 480px; }
.hero-btns { display: flex; gap: .875rem; flex-wrap: wrap; }

.btn-wa {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--wa); color: #fff;
  padding: .9rem 1.75rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: .95rem; transition: all .25s;
  box-shadow: 0 8px 24px rgba(34,197,94,.35);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(34,197,94,.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  padding: .9rem 1.75rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: .95rem; transition: all .25s;
  backdrop-filter: blur(8px); background: rgba(255,255,255,.05);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); background: rgba(232,149,10,.08); }

/* ── QUICK FORM ─────────────────────────────────────────── */
.quick-form {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl); padding: 2.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.qf-title { color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: .2rem; letter-spacing: -.02em; }
.qf-sub { color: rgba(255,255,255,.45); font-size: .8rem; margin-bottom: 1.75rem; }
.qf-label { color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600; display: block; margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .05em; }
.qf-field {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: .8rem 1rem;
  color: #fff; font-size: .9rem; outline: none;
  transition: border-color .2s, background .2s;
  margin-bottom: 1rem; font-family: inherit;
}
.qf-field:focus { border-color: var(--amber); background: rgba(255,255,255,.12); }
.qf-field option { color: #1a1a2e; background: #fff; }

.btn-gold {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: linear-gradient(135deg, var(--amber) 0%, #c97b0a 100%);
  color: #fff; padding: 1rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
  transition: all .25s; margin-top: .25rem;
  box-shadow: 0 8px 24px rgba(232,149,10,.4);
  letter-spacing: .01em;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(232,149,10,.5); filter: brightness(1.06); }
.qf-note { color: rgba(255,255,255,.28); font-size: .72rem; text-align: center; margin-top: .875rem; }

/* ── STATS ──────────────────────────────────────────────── */
.stats { padding: 0 2rem; background: var(--white); }
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
  padding: 3rem 0 4.5rem;
}
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: all .28s;
  position: relative; overflow: hidden;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-mid); }
.stat-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0; }
.stat-val { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: .1rem; letter-spacing: -.03em; }
.stat-label { font-weight: 700; color: var(--ink-mid); font-size: .82rem; margin-bottom: .2rem; }
.stat-sub { color: var(--ink-muted); font-size: .72rem; }

/* ── SECTION COMMON ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(26,66,117,.08); color: var(--blue);
  font-size: .72rem; font-weight: 700; padding: .35rem .9rem;
  border-radius: var(--radius-full); margin-bottom: 1rem;
  border: 1px solid rgba(26,66,117,.12);
  text-transform: uppercase; letter-spacing: .06em;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800;
  color: var(--navy); margin-bottom: .875rem; letter-spacing: -.03em;
}
.section-desc { color: var(--ink-light); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── TOURS ──────────────────────────────────────────────── */
.tours { padding: 5.5rem 2rem; background: var(--cream); }
.tours-inner { max-width: 1240px; margin: 0 auto; }
.tours-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

.tour-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .28s; display: flex; flex-direction: column;
}
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.tour-card.popular {
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 4px rgba(232,149,10,.08), var(--shadow-md);
}
.popular-banner {
  background: linear-gradient(90deg, var(--amber), #c97b0a);
  color: #fff; font-size: .68rem; font-weight: 700;
  text-align: center; padding: .45rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.tour-body { padding: 1.5rem; flex: 1; }
.tour-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.tour-badge {
  font-size: .65rem; font-weight: 700; padding: .25rem .65rem;
  border-radius: var(--radius-full); white-space: nowrap; letter-spacing: .03em;
}
.tour-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; letter-spacing: -.02em; }
.tour-dur { display: flex; align-items: center; gap: .3rem; color: var(--ocean); font-size: .75rem; font-weight: 600; margin-bottom: .75rem; }
.tour-desc { color: var(--ink-light); font-size: .82rem; line-height: 1.65; margin-bottom: 1rem; }
.tour-features { list-style: none; margin-bottom: 1.5rem; }
.tour-features li {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--ink-mid); margin-bottom: .35rem;
}
.tour-features li::before { content: "✓"; color: #16a34a; font-weight: 800; flex-shrink: 0; }
.tour-cta {
  display: block; text-align: center; padding: .75rem;
  border-radius: var(--radius-md); color: #fff;
  font-weight: 700; font-size: .82rem; transition: all .22s;
  margin: 0 1.5rem 1.5rem; letter-spacing: .02em;
}
.tour-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); filter: brightness(1.05); }

/* ── ROUTE ──────────────────────────────────────────────── */
.route { padding: 5.5rem 2rem; background: var(--white); }
.route-inner { max-width: 720px; margin: 0 auto; }
.route-steps { position: relative; }
.route-step { display: flex; gap: 1.5rem; margin-bottom: 1.75rem; align-items: flex-start; }
.route-step:last-child { margin-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 2.75rem; }
.step-dot {
  width: 2.75rem; height: 2.75rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .02em;
  border: 3px solid var(--white); box-shadow: 0 4px 16px rgba(11,31,58,.25);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-line {
  width: 2px; flex: 1; min-height: 1.25rem;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--amber) 100%);
  opacity: .35; border-radius: 2px;
}
.route-step:last-child .step-line { display: none; }
.step-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  transition: all .22s; flex: 1; margin-bottom: .5rem;
}
.step-card:hover { background: var(--white); box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.step-meta { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.step-time {
  background: rgba(26,66,117,.08); color: var(--blue);
  font-size: .7rem; font-weight: 700; padding: .2rem .65rem; border-radius: var(--radius-full);
  border: 1px solid rgba(26,66,117,.1);
}
.step-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; letter-spacing: -.01em; }
.step-desc { color: var(--ink-light); font-size: .83rem; line-height: 1.65; }
.route-note { text-align: center; color: var(--ink-muted); font-size: .82rem; margin-top: 2.5rem; }
.route-note a { color: var(--blue); font-weight: 600; }

/* ── BOAT DETAILS ───────────────────────────────────────── */
.boat {
  padding: 5.5rem 2rem;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.boat::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(30,96,145,.4) 0%, transparent 65%);
}
.boat-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; position: relative; z-index: 1; }
.boat-img-wrap { position: relative; }
.boat-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.boat-badge-1 {
  position: absolute; bottom: -1.1rem; right: -1.1rem;
  background: linear-gradient(135deg, var(--amber), #c97b0a);
  color: #fff; border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  text-align: center; box-shadow: 0 12px 32px rgba(232,149,10,.45);
}
.boat-badge-1 .b1-num { font-size: 2rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.boat-badge-1 .b1-txt { font-size: .65rem; font-weight: 600; opacity: .9; margin-top: 2px; }
.boat-badge-2 {
  position: absolute; top: -1.1rem; left: -1.1rem;
  background: var(--white); border-radius: var(--radius-lg);
  padding: .875rem 1.1rem; box-shadow: var(--shadow-lg);
}
.boat-badge-2 .b2-score { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.boat-badge-2 .b2-stars { color: var(--amber); font-size: .9rem; letter-spacing: 1px; }
.boat-badge-2 .b2-txt { color: var(--ink-muted); font-size: .62rem; margin-top: 2px; }
.boat-right .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.12); }
.boat-right .section-title { color: var(--white); }
.boat-right .section-title .accent {
  background: linear-gradient(135deg, var(--amber), #f5c842);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.boat-sub { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.boat-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: 2rem; }
.detail-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1rem 1.1rem; transition: all .22s;
}
.detail-item:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.detail-label { color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.detail-val { color: var(--white); font-weight: 700; font-size: .83rem; }

/* ── PRICING ────────────────────────────────────────────── */
.pricing { padding: 5.5rem 2rem; background: var(--cream); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: all .28s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.price-card.featured {
  transform: scale(1.04);
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 5px rgba(232,149,10,.08), var(--shadow-lg);
}
.price-header { padding: 2rem 1.75rem; color: #fff; position: relative; overflow: hidden; }
.price-header::after {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.price-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .2rem; letter-spacing: -.02em; position: relative; z-index: 1; }
.price-amount { font-size: 1.65rem; font-weight: 800; margin-top: .75rem; letter-spacing: -.03em; position: relative; z-index: 1; }
.price-note { opacity: .65; font-size: .75rem; position: relative; z-index: 1; margin-top: .2rem; }
.price-body { padding: 1.5rem 1.75rem; flex: 1; }
.feat-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-muted); margin-bottom: .75rem; }
.feat-list { list-style: none; margin-bottom: 1rem; }
.feat-list li { display: flex; align-items: center; gap: .4rem; font-size: .83rem; color: var(--ink-mid); margin-bottom: .4rem; }
.feat-list li.yes::before { content: "✓"; color: #16a34a; font-weight: 800; flex-shrink: 0; }
.feat-list li.no { color: var(--ink-muted); }
.feat-list li.no::before { content: "✗"; color: var(--border-mid); font-weight: 700; flex-shrink: 0; }
.price-cta {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  color: #fff; padding: .9rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: .88rem;
  margin: 0 1.75rem 1.75rem; transition: all .22s; letter-spacing: .02em;
}
.price-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); filter: brightness(1.06); }
.pricing-note { text-align: center; color: var(--ink-muted); font-size: .82rem; margin-top: 2rem; }

/* ── GALLERY ────────────────────────────────────────────── */
.gallery { padding: 5.5rem 2rem; background: var(--white); }
.gallery-inner { max-width: 1240px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .875rem; }
.gal-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); cursor: pointer;
  box-shadow: var(--shadow-sm); transition: all .28s;
}
.gal-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gal-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .55s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,.75) 0%, rgba(11,31,58,.1) 55%, transparent 100%);
  opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 1.1rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .01em; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(5,10,20,.95); z-index: 1000;
  align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(6px);
}
.lightbox.active { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; border-radius: var(--radius-lg); object-fit: contain; box-shadow: var(--shadow-xl); }
.lb-close {
  position: absolute; top: 1rem; right: 1rem;
  color: rgba(255,255,255,.6); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-full);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lb-close:hover { color: #fff; background: rgba(255,255,255,.15); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.65); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-full);
  cursor: pointer; font-size: 1.25rem; line-height: 1;
  width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lb-prev:hover, .lb-next:hover { color: #fff; background: rgba(255,255,255,.15); }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
.lb-caption { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.45); font-size: .8rem; white-space: nowrap; letter-spacing: .02em; }

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews { padding: 5.5rem 2rem; background: var(--cream); }
.reviews-inner { max-width: 1240px; margin: 0 auto; }
.reviews-score { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: .5rem; }
.score-num { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -.04em; }
.stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 3px; }
.reviews-grid { columns: 3; column-gap: 1.1rem; }
.review-card {
  break-inside: avoid; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.35rem; margin-bottom: 1.1rem;
  box-shadow: var(--shadow-xs); transition: all .22s;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); transform: translateY(-2px); }
.reviewer { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.reviewer-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--ocean));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .65rem; flex-shrink: 0; letter-spacing: .04em;
}
.reviewer-name { font-weight: 700; color: var(--navy); font-size: .875rem; letter-spacing: -.01em; }
.reviewer-date { color: var(--ink-muted); font-size: .7rem; }
.review-stars { color: var(--amber); font-size: .72rem; letter-spacing: 1px; margin-bottom: .5rem; }
.review-text { color: var(--ink-light); font-size: .82rem; line-height: 1.65; margin-bottom: .75rem; }
.review-tour {
  display: inline-block; background: rgba(26,66,117,.07);
  color: var(--blue); font-size: .68rem; font-weight: 600;
  padding: .2rem .65rem; border-radius: var(--radius-full);
  border: 1px solid rgba(26,66,117,.1);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq { padding: 5.5rem 2rem; background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-bottom: 3rem; }
.faq-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: .625rem; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem; text-align: left; background: none; border: none; cursor: pointer;
  font-size: .9rem; font-weight: 700; color: var(--navy); font-family: inherit;
  transition: background .2s; letter-spacing: -.01em;
}
.faq-q:hover { background: var(--border); }
.faq-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .25s; font-size: 1rem; line-height: 1; color: var(--ink-muted);
}
.faq-item.open .faq-icon { background: var(--amber); border-color: var(--amber); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.35rem 1.1rem; color: var(--ink-light); font-size: .875rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-cta-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.75rem; text-align: center;
}
.faq-cta-box p { color: var(--ink-mid); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.25rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--navy); color: #fff; }
.footer-cta-band {
  background: linear-gradient(135deg, var(--amber) 0%, #b86e08 100%);
  padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.footer-cta-band::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 60%; height: 200%; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.footer-cta-band h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 800;
  color: #fff; margin-bottom: .75rem; letter-spacing: -.03em; position: relative;
}
.footer-cta-band p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 1.75rem; position: relative; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); color: var(--amber);
  padding: .95rem 2rem; border-radius: var(--radius-lg);
  font-weight: 800; font-size: .95rem; transition: all .25s;
  box-shadow: 0 8px 28px rgba(0,0,0,.2); position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.footer-body { padding: 4.5rem 2rem; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3.5rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo-text { font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.footer-logo-text span { color: var(--amber); }
.footer-about { color: rgba(255,255,255,.45); font-size: .84rem; line-height: 1.75; margin-bottom: 1.35rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--wa); color: #fff; padding: .5rem 1rem;
  border-radius: var(--radius-sm); font-size: .8rem; font-weight: 700;
  transition: all .2s; box-shadow: 0 4px 14px rgba(34,197,94,.3);
}
.footer-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.footer-col h3 { font-weight: 800; font-size: .95rem; margin-bottom: 1.35rem; color: rgba(255,255,255,.9); letter-spacing: -.01em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .84rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .9rem; font-size: .84rem; color: rgba(255,255,255,.55); }
.contact-item .ci-icon { color: var(--amber); margin-top: .1rem; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,.55); transition: color .2s; }
.contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.35rem 2rem; max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.28); font-size: .75rem; letter-spacing: .01em; }

/* ── FLOATING WA ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 3.5rem; height: 3.5rem; background: var(--wa); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(34,197,94,.5); transition: all .25s;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.1); box-shadow: 0 10px 32px rgba(34,197,94,.6); }
.wa-float svg { width: 1.75rem; height: 1.75rem; }
.wa-svg { fill: currentColor; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1024px){
  .hero-content{ grid-template-columns:1fr }
  .quick-form{ max-width:500px }
  .tours-grid{ grid-template-columns:repeat(2,1fr) }
  .boat-inner{ grid-template-columns:1fr }
  .pricing-grid{ grid-template-columns:1fr; max-width:480px; margin:0 auto }
  .price-card.featured{ transform:none }
  .reviews-grid{ columns:2 }
  .footer-body{ grid-template-columns:1fr 1fr }
  .stats-inner{ grid-template-columns:repeat(2,1fr) }
}
@media(max-width:768px){
  nav,.nav-cta{ display:none }
  .hamburger{ display:block }
  .gallery-grid{ grid-template-columns:repeat(2,1fr) }
  .tours-grid{ grid-template-columns:1fr }
  .boat-details-grid{ grid-template-columns:1fr 1fr }
  .footer-body{ grid-template-columns:1fr }
  .footer-bottom{ flex-direction:column; text-align:center }
  .reviews-grid{ columns:1 }
  .hero-btns{ flex-direction:column }
  .btn-wa,.btn-outline{ width:100%; justify-content:center }
  .hero-content{ padding:6rem 1.5rem 8rem }
  .tours,.route,.boat,.pricing,.gallery,.reviews,.faq{ padding:4rem 1.5rem }
  .stats-inner{ padding:2.5rem 0 4rem }
}
@media(max-width:480px){
  .gallery-grid{ grid-template-columns:1fr }
  .stats-inner{ grid-template-columns:1fr 1fr }
  .boat-badge-1,.boat-badge-2{ display:none }
  .pricing-grid{ max-width:100% }
}
