
:root {
  --bg: #020617;
  --bg-elevated: #02081c;
  --bg-soft: #020922;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.85);
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.75);
  --transition-fast: 160ms ease-out;
  --transition-med: 220ms ease-out;
  --nav-height: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Bubbles background */
.bubble {
  position: fixed;
  bottom: -140px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, rgba(148, 163, 184, 0.35), transparent),
              radial-gradient(circle at 80% 90%, rgba(56, 189, 248, 0.25), transparent);
  opacity: 0.25;
  filter: blur(1px);
  pointer-events: none;
  animation: bubble-rise linear infinite;
  z-index: 0;
}

@keyframes bubble-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.35; }
  80%  { opacity: 0.15; }
  100% { transform: translateY(-140vh) translateX(-30px); opacity: 0; }
}

/* Layout base */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.6));
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

main {
  position: relative;
  z-index: 1;
  padding: 32px 20px 60px;
  max-width: 1120px;
  margin: 0 auto;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(30, 64, 175, 0.8);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  padding: 18px 20px 28px;
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
}

/* NAVBAR */
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #e5e7eb, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.6),
              0 0 40px rgba(56, 189, 248, 0.6);
}

.logo-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text small {
  font-size: 11px;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--transition-fast), background var(--transition-fast),
              border-color var(--transition-fast), transform 120ms ease-out;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(51, 65, 85, 0.9);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
  }
  .nav-links {
    justify-content: flex-start;
  }
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 28px;
  align-items: stretch;
}

.hero-left {
  padding-top: 8px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 0 30px rgba(15, 23, 42, 1);
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.hero-badge-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #38bdf8, #1d4ed8);
  color: #0b1120;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(30px, 3.1vw, 36px);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(to right, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-soft);
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.hero-meta-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  margin-right: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 11px;
  color: var(--text-soft);
}

/* Buttons */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-med), color var(--transition-med),
              border-color var(--transition-med), box-shadow var(--transition-med),
              transform 120ms ease-out;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #38bdf8, #0ea5e9);
  color: #02101b;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.8),
              0 18px 45px rgba(8, 47, 73, 0.9);
}

.btn-primary:hover {
  background: radial-gradient(circle at 0 0, #0ea5e9, #38bdf8);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(51, 65, 85, 0.9);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-1px);
}

/* Hero right: boat card */
.hero-right {
  display: flex;
  align-items: stretch;
}

.hero-card {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

.hero-card-inner {
  background: radial-gradient(circle at top, #020617, #020617 50%, #000 100%);
  border-radius: 26px;
  padding: 2px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 64, 175, 0.9);
}

.hero-boat {
  background: radial-gradient(circle at top, #020617, #020617 50%, #020617 100%);
  border-radius: 24px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(30, 64, 175, 0.9);
}

.hero-boat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-boat-title strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-boat-title span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
}

.hero-boat-chip {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.9);
  color: #e0f2fe;
  border: 1px solid rgba(56, 189, 248, 0.9);
}

.hero-boat-water {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(to bottom, #0b1120, #020617);
  height: 150px;
  margin-bottom: 12px;
  border: 1px solid rgba(30, 64, 175, 0.8);
}

.boat-shape {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 42px;
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(to right, #e5e7eb, #cbd5f5);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
}

.boat-cabin {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 40px;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(to right, #f1f5f9, #cbd5e1);
}

.boat-window {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(to right, #0ea5e9, #38bdf8);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
}

.boat-waves {
  position: absolute;
  bottom: 0;
  left: -30px;
  right: -30px;
  height: 46px;
  background:
    radial-gradient(circle at 10% 40%, rgba(56,189,248,0.3) 0, transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(8,47,73,0.7) 0, transparent 55%),
    radial-gradient(circle at 40% 20%, rgba(37,99,235,0.5) 0, transparent 60%);
  opacity: 0.9;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.hero-stat-card {
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), #020617);
  padding: 9px 10px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.85);
}

.hero-stat-label {
  font-size: 10px;
  color: var(--text-soft);
  margin-bottom: 3px;
}

.hero-stat-value {
  font-size: 12px;
  font-weight: 600;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pill-soft {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.8);
  color: var(--text-soft);
}

/* Section base */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--accent);
  margin: 34px 0 6px;
}

.section-title {
  font-size: 22px;
  margin: 0 0 6px;
}

.section-desc {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-soft);
}

/* Grid & cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), #020617);
  border: 1px solid rgba(30, 64, 175, 0.9);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 15px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.9);
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 4px;
}

.card-meta {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-soft);
}

.card-meta-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 4px;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.package-card {
  position: relative;
}

.package-price {
  font-size: 13px;
  margin: 6px 0 8px;
  color: var(--text-soft);
}

.package-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-soft);
}

.package-list li {
  margin-bottom: 4px;
}

.package-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  color: #022c22;
}

/* Testimonials & FAQ */
.testi-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), #020617);
  border: 1px solid rgba(30, 64, 175, 0.9);
  padding: 13px 13px 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.testi-name {
  font-weight: 600;
  font-size: 13px;
}

.testi-meta {
  font-size: 11px;
  color: var(--text-soft);
}

.testi-stars {
  font-size: 13px;
  color: #facc15;
}

.testi-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.faq {
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, 0.9);
  background: rgba(15, 23, 42, 0.98);
  margin-bottom: 8px;
  padding: 8px 11px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 6px;
}

/* Info list */
.info-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.info-list li {
  margin-bottom: 4px;
}

/* CTA */
.cta {
  border-radius: 22px;
  padding: 16px 16px 17px;
  border: 1px solid rgba(30, 64, 175, 0.9);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), #020617);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.cta-right {
  border-radius: 17px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(30, 64, 175, 0.9);
  font-size: 13px;
}

.cta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 6px;
}

.cta-contact {
  font-size: 13px;
  color: var(--text-soft);
}

.cta-meta {
  font-size: 12px;
  color: var(--text-soft);
}

.cta a {
  color: var(--accent);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.form-card {
  border-radius: 18px;
  border: 1px solid rgba(30, 64, 175, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), #020617);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
              background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7);
  background: rgba(15, 23, 42, 1);
}

.form-group small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--text-soft);
}

/* Page hero */
.page-hero {
  margin-top: 26px;
  margin-bottom: 6px;
}

.page-hero-title {
  font-size: 24px;
  margin: 0 0 6px;
}

.page-hero-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  max-width: 40rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Links */
a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-strong);
}

/* Responsive behavior */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    margin: 10px auto 0;
  }
}

@media (max-width: 840px) {
  .grid-3,
  .packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  main {
    padding-inline: 14px;
  }
  .hero {
    margin-top: 20px;
  }
  .two-col,
  .cta,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .grid-3,
  .packages {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    max-width: 100%;
  }
}
