/* ── Variables ── */
:root {
  --navy: #0a1628;
  --navy-mid: #122240;
  --navy-light: #1a3055;
  --turquoise: #2ec4b6;
  --turquoise-light: #5dd9ce;
  --gold: #d4a853;
  --old-gold: #c9a227;
  --old-gold-light: #e2c06a;
  --old-gold-dark: #8f6b1a;
  --orange: #e87722;
  --orange-light: #f59a4a;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --text-muted: #8fa3bf;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease;
}

.header.is-scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 96px;
  height: 96px;
  background: transparent;
  border-radius: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  flex-shrink: 0;
  border: none;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.15rem;
}

.logo-text strong,
.logo-text small {
  background: linear-gradient(
    180deg,
    var(--old-gold-light) 0%,
    var(--old-gold) 42%,
    var(--old-gold-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.logo-text strong {
  font-family: 'Cinzel Decorative', 'Playfair Display', Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text small {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-indent: 0.32em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo-text small::before,
.logo-text small::after {
  content: '';
  width: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--old-gold), transparent);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 104px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.55) 18%,
    rgba(10, 22, 40, 0.35) 40%,
    rgba(10, 22, 40, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 6rem;
  max-width: 680px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--turquoise-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-script {
  display: block;
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.hero-main {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 7.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
}

.hero-sub {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 119, 34, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  border-color: var(--turquoise);
  background: rgba(46, 196, 182, 0.15);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--turquoise);
}

.section-header--light .section-label { color: var(--gold); }

/* ── About ── */
.about {
  background: var(--navy);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(46, 196, 182, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1.25rem;
}

.about-lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-content strong {
  color: var(--turquoise-light);
  font-weight: 600;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-top: 1.75rem;
  list-style: none;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-highlights i {
  color: var(--old-gold);
  font-size: 0.9rem;
  width: 1.1rem;
  text-align: center;
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.about-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--old-gold-light);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual img {
    min-height: 280px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* ── Tours ── */
.tours {
  background: var(--off-white);
  color: var(--navy);
}

.tours .section-header p { color: #5a7090; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.tour-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.tour-card--featured {
  border: 2px solid var(--orange);
}

.tour-card--honeymoon {
  border-color: var(--old-gold);
}

.tour-card--honeymoon .tour-icon {
  background: linear-gradient(135deg, var(--old-gold-light), var(--old-gold-dark));
}

.tour-card--honeymoon .duration {
  color: var(--old-gold-dark);
  background: rgba(201, 162, 39, 0.15);
}

.tour-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tour-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  background: var(--turquoise);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
}

.tour-image {
  height: 200px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.06);
}

.tour-body {
  padding: 1.5rem;
}

.tour-meta {
  margin-bottom: 0.75rem;
}

.duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--turquoise);
  background: rgba(46, 196, 182, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.tour-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.tour-body p {
  font-size: 0.92rem;
  color: #5a7090;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.tour-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  transition: color var(--transition), transform var(--transition);
}

.tour-book:hover {
  color: var(--orange-light);
  transform: translateX(4px);
}

.tour-book::after {
  content: '\2192';
}

/* ── Features ── */
.why-us {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(46, 196, 182, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(46, 196, 182, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--gold), #b8923f);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--navy);
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Contact ── */
.contact {
  padding: 4rem 0 6rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
}

.contact-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.booking-form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 22, 40, 0.45);
  color: var(--white);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
}

.booking-form textarea {
  resize: vertical;
  min-height: 88px;
}

.booking-form button[type="submit"] {
  border: none;
  cursor: pointer;
  width: fit-content;
  margin-top: 0.25rem;
}

.nav-links a.is-active {
  color: var(--white);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #25d366;
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 2.5rem;
}

.whatsapp-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.whatsapp-btn small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.whatsapp-btn strong {
  font-size: 1.35rem;
  font-weight: 700;
}

.compass {
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-boat {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0.5rem;
}

.footer-location {
  font-size: 0.82rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(143, 163, 191, 0.6);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logo--footer .logo-icon {
  width: 80px;
  height: 80px;
}

.logo--footer .logo-text strong {
  font-size: 1.05rem;
}

.logo--footer .logo-text small {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
}

.logo--footer .logo-text small::before,
.logo--footer .logo-text small::after {
  width: 0.85rem;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    display: inline-block;
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-content { padding: 3rem 0 5rem; }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }

  .contact-content p { margin-inline: auto; }

  .whatsapp-btn { margin-inline: auto; }

  .form-row { grid-template-columns: 1fr; }

  .booking-form button[type="submit"] { width: 100%; justify-content: center; }

  .compass { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-location { justify-content: center; }

  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .tours-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }

  .btn { justify-content: center; width: 100%; }
}

/* Scroll reveal — only hides content after JS loads */
html.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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